Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gsoap/
Date: Thu, 29 Nov 2018 11:50:32
Message-Id: 1543492219.529508961aaf933f99c4bb03096d8d2f5445fc16.polynomial-c@gentoo
1 commit: 529508961aaf933f99c4bb03096d8d2f5445fc16
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 29 10:00:40 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 29 11:50:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52950896
7
8 net-libs/gsoap: Bump to version 2.8.72
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 net-libs/gsoap/Manifest | 1 +
14 net-libs/gsoap/gsoap-2.8.72.ebuild | 89 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 90 insertions(+)
16
17 diff --git a/net-libs/gsoap/Manifest b/net-libs/gsoap/Manifest
18 index 707bd74e109..e242500d90d 100644
19 --- a/net-libs/gsoap/Manifest
20 +++ b/net-libs/gsoap/Manifest
21 @@ -1,2 +1,3 @@
22 DIST gsoap_2.8.70.zip 32695627 BLAKE2B 6d803441804badf06b29cee8ca898dc864b9a0388f6f3fa58b84c1b237d77e22ab70e0cc5439915c715bdba7831b14f86d8003e1338b6184ddbfe845bb76ff75 SHA512 f7e9f85580c19bb390f1310bb47b690a5788b54c1e12c6fc0d9166039a84ae24ec5d3268cb67cd72b20e2eaa78689e175b975f07da44fd20e172a77ef37f4ae7
23 DIST gsoap_2.8.71.zip 32395469 BLAKE2B 47038e70e297408f5599319b229d2bd15136d43646fe082480ae6cc29316a7f45c056e6c5859e9bfafcb24f5b10455d2209a3505c801d02299493c3b5435d06f SHA512 3e4494681b2669ea7eebaee19aa23fd31a339966f7af106258eb1bd676aff42f1069d55e6c80ae09fd60b2d48e456b0cb788d5d54829301ee62a2ef64742ddea
24 +DIST gsoap_2.8.72.zip 32230922 BLAKE2B dc49a17272467a6fa5e6e71b3e5d6f7a9653e9e267df231524f1bf41e8ee27068344da31c1b4d572c50564f13e70a1794dcf42babf3e8bd24c8101a6ce693a6f SHA512 5f5299d4c2b43c2bb0b262b5c423f78f97ada9ae472e0bb4793144c2242e09291ba2a04f24726c585e48872c17f49311dd91643e156aa4854cbf7dc893c4043c
25
26 diff --git a/net-libs/gsoap/gsoap-2.8.72.ebuild b/net-libs/gsoap/gsoap-2.8.72.ebuild
27 new file mode 100644
28 index 00000000000..4f3a9989377
29 --- /dev/null
30 +++ b/net-libs/gsoap/gsoap-2.8.72.ebuild
31 @@ -0,0 +1,89 @@
32 +# Copyright 1999-2018 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit autotools
38 +
39 +MY_P="${PN}-2.8"
40 +
41 +DESCRIPTION="A cross-platform open source C and C++ SDK for SOAP/XML Web services"
42 +HOMEPAGE="http://gsoap2.sourceforge.net"
43 +SRC_URI="mirror://sourceforge/gsoap2/gsoap_${PV}.zip"
44 +
45 +LICENSE="GPL-2 gSOAP"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="doc debug examples ipv6 libressl gnutls +ssl"
49 +
50 +RDEPEND="
51 + sys-libs/zlib
52 + gnutls? ( net-libs/gnutls )
53 + ssl? (
54 + !libressl? ( dev-libs/openssl:0= )
55 + libressl? ( dev-libs/libressl )
56 + )
57 +"
58 +DEPEND="${RDEPEND}
59 + app-arch/unzip
60 + sys-devel/flex
61 + sys-devel/bison
62 +"
63 +
64 +PATCHES=(
65 + # Fix Pre-ISO headers
66 + "${FILESDIR}/${PN}-2.7.10-fedora-install_soapcpp2_wsdl2h_aux.patch"
67 +
68 + # enable shared libs https://bugs.gentoo.org/583398
69 + "${FILESDIR}/${PN}-2.8.70-shared_libs.patch"
70 +
71 + # Fix --enable-xlocale configure switch
72 + #"${FILESDIR}/${PN}-2.8.70-xlocale_h.patch"
73 +
74 + # Fix parallel make
75 + "${FILESDIR}/${PN}-2.8.70-parallel.patch"
76 +)
77 +
78 +S="${WORKDIR}/${MY_P}"
79 +
80 +src_prepare() {
81 + default
82 + eautoreconf
83 +}
84 +
85 +src_configure() {
86 + local myeconfargs=(
87 + # Don't include xlocale.h as it got removed in >=glibc-2.26
88 + --disable-xlocale
89 + $(use_enable debug)
90 + $(use_enable examples samples)
91 + $(usex gnutls --enable-gnutls '')
92 + $(usex ipv6 --enable-ipv6 '')
93 + $(usex ssl '' --disable-ssl)
94 + )
95 + econf "${myeconfargs[@]}"
96 +}
97 +
98 +src_install() {
99 + emake DESTDIR="${D}" install
100 +
101 + # yes, we also install the license-file since
102 + # it contains info about how to apply the licenses
103 + dodoc *.txt
104 +
105 + docinto html
106 + dodoc changelog.md
107 +
108 + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
109 +
110 + if use examples; then
111 + rm -r gsoap/samples/Makefile* gsoap/samples/*/Makefile* gsoap/samples/*/*.o || die
112 + insinto /usr/share/doc/${PF}/examples
113 + doins -r gsoap/samples/*
114 + fi
115 +
116 + if use doc; then
117 + docinto html
118 + dodoc -r gsoap/doc/*
119 + fi
120 +}