From patchwork Tue Jan 14 12:34:52 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: christian.braunersorensen@prevas.dk X-Patchwork-Id: 310720 X-Patchwork-Delegate: esben@haabendal.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [IPv6:2001:878:346::102]) by ozlabs.org (Postfix) with ESMTP id C68CB2C00B0 for ; Tue, 14 Jan 2014 23:37:25 +1100 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id 2BA854535E for ; Tue, 14 Jan 2014 13:37:24 +0100 (CET) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail02.prevas.se (mail02.prevas.se [62.95.78.10]) by hugin.dotsrc.org (Postfix) with ESMTPS id 69F2844826 for ; Tue, 14 Jan 2014 13:35:09 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=2342; q=dns/txt; s=ironport2; t=1389702909; x=1421238909; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=7nUqf361SaH6zGX3jQVE2QQAvF4Hk8xqetam1VTUrnE=; b=IQMYm+BDixJJ6L8wZruFoqvQ+fB8DXDq6iTfqVN8K/vRDmhEn0MF60yC ko5CgTR/sNVZ8QAXcdSs0BhHZayOE2DfVtgVeKdePLbT0j2nQ3/j56z0s TKerD80QonZ1Ip0eMmnw+3fMQhkH4Ki1zpONOEsSO5PqSZHiSJ8cyhgzN Y=; X-IronPort-AV: E=Sophos;i="4.95,658,1384297200"; d="scan'208";a="196407" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport2.prevas.se with ESMTP/TLS/AES128-SHA; 14 Jan 2014 13:35:05 +0100 Received: from localhost (172.16.10.102) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server id 14.2.347.0; Tue, 14 Jan 2014 13:35:04 +0100 Received: by localhost (Postfix, from userid 30007) id 7749D681645; Tue, 14 Jan 2014 12:35:04 +0000 (UTC) From: To: Subject: [PATCH 125/131] strongswan: add new recipe for strongswan. Version 5.1.1 Date: Tue, 14 Jan 2014 12:34:52 +0000 Message-ID: <08022d5c9733d9f8fcf0f4743d5b6127e23a830a.1389702652.git.christian.braunersorensen@prevas.dk> X-Mailer: git-send-email 1.8.4 In-Reply-To: References: MIME-Version: 1.0 X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org From: Christian Sørensen Signed-off-by: Christian Sørensen --- recipes/strongswan/strongswan.inc | 26 ++++++++++++++++++++++++++ recipes/strongswan/strongswan_5.1.1.oe | 1 + recipes/strongswan/strongswan_5.1.1.oe.sig | 1 + 3 files changed, 28 insertions(+) create mode 100644 recipes/strongswan/strongswan.inc create mode 100644 recipes/strongswan/strongswan_5.1.1.oe create mode 100644 recipes/strongswan/strongswan_5.1.1.oe.sig diff --git a/recipes/strongswan/strongswan.inc b/recipes/strongswan/strongswan.inc new file mode 100644 index 0000000..cd5018a --- /dev/null +++ b/recipes/strongswan/strongswan.inc @@ -0,0 +1,26 @@ +DESCRIPTION = "strongSwan is an OpenSource IPsec implementation for the \ +Linux operating system." +HOMEPAGE = "http://www.strongswan.org" +LICENSE = "GPLv2" +DEPENDS = "libgmp-dev libcrypto libssl openssl-dev libdl libm libpthread \ + librt libgmp" + +SRC_URI = "http://download.strongswan.org/strongswan-${PV}.tar.bz2" + +EXTRA_OECONF = "--disable-curl --disable-soup --disable-ldap \ + --enable-gmp --disable-mysql --disable-sqlite \ + --enable-openssl" + +inherit autotools auto-package-libs + +FILES_${PN}-dev += "${libdir}/ipsec/*.a \ + ${libdir}/ipsec/*.la \ + ${libdir}/ipsec/plugins/*.a \ + ${libdir}/ipsec/plugins/*.la" +FILES_${PN}-dbg += "${libdir}/ipsec/.debug ${libdir}/ipsec/plugins/.debug \ + ${libexecdir}/ipsec/.debug" +FILES_${PN} += "${libdir}/ipsec" +DEPENDS_${PN} += "libc" +DEPENDS_${PN}[qa] += "allow-missing-lib-depends" +RDEPENDS_${PN} = "libgmp libcrypto libssl libdl libm libpthread librt" +RDEPENDS_${PN}[qa] += "allow-missing-lib-rdepends" diff --git a/recipes/strongswan/strongswan_5.1.1.oe b/recipes/strongswan/strongswan_5.1.1.oe new file mode 100644 index 0000000..71353eb --- /dev/null +++ b/recipes/strongswan/strongswan_5.1.1.oe @@ -0,0 +1 @@ +require strongswan.inc diff --git a/recipes/strongswan/strongswan_5.1.1.oe.sig b/recipes/strongswan/strongswan_5.1.1.oe.sig new file mode 100644 index 0000000..5d19f6d --- /dev/null +++ b/recipes/strongswan/strongswan_5.1.1.oe.sig @@ -0,0 +1 @@ +eba9c90e3e910edd18ef4f1e380e59751965258b strongswan-5.1.1.tar.bz2