From patchwork Tue Feb 26 10:16:23 2013 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: 223171 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 CF3B02C02F1 for ; Tue, 26 Feb 2013 21:16:31 +1100 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id CC48C3FEB7 for ; Tue, 26 Feb 2013 11:16:27 +0100 (CET) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail01.prevas.se (mail01.prevas.se [62.95.78.3]) by hugin.dotsrc.org (Postfix) with ESMTPS id 54F283F854 for ; Tue, 26 Feb 2013 11:16:26 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=2749; q=dns/txt; s=ironport1; t=1361873786; x=1393409786; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=g/Jv+XONBJGcxrmtv5U/xGU83Shq+tYSlHgeL7/m4jQ=; b=hDD7rSWoF76C1e/+B86o6uBy2f97O8DoeGj4EcEJndeUOrXVYADBMF7c Krc5n7sEveNIiFLDfOL1DGzgtHILDNpuxljl4eEXkHikSpfQ9jT2sEzdm dKiEJQCyAW0LtvwNmQ3bn1TgyTqsYDLRQUUG6jdvNCrVvBY6HmxeZwJ/4 0=; X-IronPort-AV: E=Sophos;i="4.84,739,1355094000"; d="scan'208";a="2822066" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport1.prevas.se with ESMTP/TLS/AES128-SHA; 26 Feb 2013 11:16:26 +0100 Received: from localhost (172.16.10.102) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server id 14.2.342.3; Tue, 26 Feb 2013 11:16:26 +0100 Received: by localhost (Postfix, from userid 30007) id 0022E68D44E; Tue, 26 Feb 2013 10:16:25 +0000 (UTC) From: To: Subject: [PATCH 2/3] gsoap: Added recipe for gsoap and gsoap-utils (needed for gsoap) Date: Tue, 26 Feb 2013 10:16:23 +0000 Message-ID: <87d8841f2d1b26c835246f1da8c16354423c5119.1361873632.git.christian.braunersorensen@prevas.dk> X-Mailer: git-send-email 1.8.0.3 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 --- recipes/gsoap/gsoap-utils_2.8.14.oe | 12 ++++++++++++ recipes/gsoap/gsoap-utils_2.8.14.oe.sig | 1 + recipes/gsoap/gsoap.inc | 16 ++++++++++++++++ recipes/gsoap/gsoap_2.8.14.oe | 12 ++++++++++++ recipes/gsoap/gsoap_2.8.14.oe.sig | 1 + 5 files changed, 42 insertions(+) create mode 100644 recipes/gsoap/gsoap-utils_2.8.14.oe create mode 100644 recipes/gsoap/gsoap-utils_2.8.14.oe.sig create mode 100644 recipes/gsoap/gsoap.inc create mode 100644 recipes/gsoap/gsoap_2.8.14.oe create mode 100644 recipes/gsoap/gsoap_2.8.14.oe.sig diff --git a/recipes/gsoap/gsoap-utils_2.8.14.oe b/recipes/gsoap/gsoap-utils_2.8.14.oe new file mode 100644 index 0000000..5ee0218 --- /dev/null +++ b/recipes/gsoap/gsoap-utils_2.8.14.oe @@ -0,0 +1,12 @@ +require gsoap.inc + +RECIPE_TYPES = "native" + +DEPENDS = "" + +EXTRA_OEMAKE = "" + +do_install () { + install -d ${D}${bindir}/ + install -m 0755 ${S}/gsoap/src/soapcpp2 ${D}${bindir}/ +} diff --git a/recipes/gsoap/gsoap-utils_2.8.14.oe.sig b/recipes/gsoap/gsoap-utils_2.8.14.oe.sig new file mode 100644 index 0000000..2e114d8 --- /dev/null +++ b/recipes/gsoap/gsoap-utils_2.8.14.oe.sig @@ -0,0 +1 @@ +4bb2f8c0bbb3be0267aaf51a7dc76817b18c5e0a gsoap_2.8.14.zip diff --git a/recipes/gsoap/gsoap.inc b/recipes/gsoap/gsoap.inc new file mode 100644 index 0000000..63851b2 --- /dev/null +++ b/recipes/gsoap/gsoap.inc @@ -0,0 +1,16 @@ +DESCRIPTION = "The gSOAP toolkit provides a unique SOAP-to-C/C++ language binding \ +for the development of SOAP Web Services and clients." +SECTION = "devel" +LICENSE = "GPL" + +require conf/fetch/sourceforge.conf +SRC_URI = "${SOURCEFORGE_MIRROR}/gsoap2/gSOAP/gsoap_${PV}.zip" + +inherit autotools-autoreconf + +S = "${SRCDIR}/gsoap-2.8" + +# :( +PARALLEL_MAKE = "" + +EXTRA_OEMAKE = "SOAP=${STAGE_DIR}/native/bin/soapcpp2" diff --git a/recipes/gsoap/gsoap_2.8.14.oe b/recipes/gsoap/gsoap_2.8.14.oe new file mode 100644 index 0000000..cb39396 --- /dev/null +++ b/recipes/gsoap/gsoap_2.8.14.oe @@ -0,0 +1,12 @@ +require gsoap.inc + +DEPENDS = "native:gsoap-utils" +DEPENDS += "libstdc++ libssl libcrypto libz libdl" + +inherit auto-package-utils + +AUTO_PACKAGE_UTILS = "soapcpp2 wsdl2h" + +RDEPENDS_${PN}-wsdl2h += "libcrypto libssl libz libdl libstdc++ libm libgcc libc" + +FILES_${PN} += "${datadir}" diff --git a/recipes/gsoap/gsoap_2.8.14.oe.sig b/recipes/gsoap/gsoap_2.8.14.oe.sig new file mode 100644 index 0000000..2e114d8 --- /dev/null +++ b/recipes/gsoap/gsoap_2.8.14.oe.sig @@ -0,0 +1 @@ +4bb2f8c0bbb3be0267aaf51a7dc76817b18c5e0a gsoap_2.8.14.zip