Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gsoap/
Date: Mon, 14 Jun 2021 23:50:38
Message-Id: 1623714472.891944052703fe6dc33fd8bc2633ae621e9d94e3.whissi@gentoo
1 commit: 891944052703fe6dc33fd8bc2633ae621e9d94e3
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 14 23:47:52 2021 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 14 23:47:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89194405
7
8 net-libs/gsoap: bump to v2.8.114
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 net-libs/gsoap/Manifest | 1 +
14 net-libs/gsoap/gsoap-2.8.114.ebuild | 80 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 81 insertions(+)
16
17 diff --git a/net-libs/gsoap/Manifest b/net-libs/gsoap/Manifest
18 index 997c2ced01d..270ac1314f7 100644
19 --- a/net-libs/gsoap/Manifest
20 +++ b/net-libs/gsoap/Manifest
21 @@ -1 +1,2 @@
22 DIST gsoap_2.8.106.zip 32740371 BLAKE2B b4904290ec5d8ebfc326bfd8d2c99e68c88cc9a07440d97ed8a442331c9f74549f75118f3e237f0796eba060b988d521c3af2bb9485d06e8277c5f18ade8cd82 SHA512 c461870fc563f848bfbdbc492cc5a26fece0d0c9a56092cb06ca3139e88c340969f23865e72187e1141a8f707f14ab6806e6a0b739b3c531161deefd6fbe510a
23 +DIST gsoap_2.8.114.zip 34599617 BLAKE2B fe68b057fa288b033f068be33e3f8871af8daf812d77a2fc87399f6750a4a8e23cb323dade3385c9b2147b2cde46980e9c52d393eff6eb16fa52cdbcc7a62537 SHA512 205d38a36c56780fd34bad8ea56525a04d4dc5b58af55676783c78d6eecf47dd0e9c86b0106f68127cfb2f45cb94f6ac9ebe353d1c6687e9faa13badb4a9690a
24
25 diff --git a/net-libs/gsoap/gsoap-2.8.114.ebuild b/net-libs/gsoap/gsoap-2.8.114.ebuild
26 new file mode 100644
27 index 00000000000..6beb07adfc2
28 --- /dev/null
29 +++ b/net-libs/gsoap/gsoap-2.8.114.ebuild
30 @@ -0,0 +1,80 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit autotools
37 +
38 +MY_P="${PN}-2.8"
39 +
40 +DESCRIPTION="A cross-platform open source C and C++ SDK for SOAP/XML Web services"
41 +HOMEPAGE="http://gsoap2.sourceforge.net"
42 +SRC_URI="mirror://sourceforge/gsoap2/gsoap_${PV}.zip"
43 +
44 +LICENSE="|| ( gSOAP GPL-2+-with-openssl-exception ) GPL-2+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="doc debug examples ipv6 gnutls +ssl"
48 +
49 +RDEPEND="
50 + sys-libs/zlib
51 + gnutls? ( net-libs/gnutls )
52 + ssl? (
53 + dev-libs/openssl:0=
54 + )
55 +"
56 +DEPEND="${RDEPEND}
57 + app-arch/unzip
58 + sys-devel/flex
59 + sys-devel/bison
60 +"
61 +
62 +PATCHES=(
63 + # Fix Pre-ISO headers
64 + "${FILESDIR}/${PN}-2.7.10-fedora-install_soapcpp2_wsdl2h_aux.patch"
65 +
66 + # enable shared libs https://bugs.gentoo.org/583398
67 + "${FILESDIR}/${PN}-2.8.91-shared_libs.patch"
68 +)
69 +
70 +S="${WORKDIR}/${MY_P}"
71 +
72 +src_prepare() {
73 + default
74 + eautoreconf
75 +}
76 +
77 +src_configure() {
78 + local myeconfargs=(
79 + # Don't include xlocale.h as it got removed in >=glibc-2.26
80 + --disable-xlocale
81 + $(use_enable debug)
82 + $(use_enable gnutls)
83 + $(usex ipv6 --enable-ipv6 '')
84 + $(usex ssl '' --disable-ssl)
85 + )
86 + econf "${myeconfargs[@]}"
87 +}
88 +
89 +src_install() {
90 + emake DESTDIR="${D}" install
91 +
92 + # yes, we also install the license-file since
93 + # it contains info about how to apply the licenses
94 + dodoc *.txt
95 +
96 + docinto html
97 + dodoc changelog.md
98 +
99 + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
100 +
101 + if use examples; then
102 + insinto /usr/share/${PN}/examples
103 + doins -r gsoap/samples/*
104 + fi
105 +
106 + if use doc; then
107 + docinto html
108 + dodoc -r gsoap/doc/*
109 + fi
110 +}