Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/gsoap: gsoap-2.8.10.ebuild ChangeLog gsoap-2.8.8.ebuild gsoap-2.8.1.ebuild gsoap-2.8.0.ebuild
Date: Thu, 23 Aug 2012 04:06:25
Message-Id: 20120823040613.2C569203FA@flycatcher.gentoo.org
1 patrick 12/08/23 04:06:13
2
3 Modified: ChangeLog
4 Added: gsoap-2.8.10.ebuild
5 Removed: gsoap-2.8.8.ebuild gsoap-2.8.1.ebuild
6 gsoap-2.8.0.ebuild
7 Log:
8 Bump
9
10 (Portage version: 2.2.0_alpha122/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.19 net-libs/gsoap/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gsoap/ChangeLog?rev=1.19&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gsoap/ChangeLog?rev=1.19&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gsoap/ChangeLog?r1=1.18&r2=1.19
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-libs/gsoap/ChangeLog,v
22 retrieving revision 1.18
23 retrieving revision 1.19
24 diff -u -r1.18 -r1.19
25 --- ChangeLog 17 Jul 2012 07:23:06 -0000 1.18
26 +++ ChangeLog 23 Aug 2012 04:06:12 -0000 1.19
27 @@ -1,6 +1,12 @@
28 # ChangeLog for net-libs/gsoap
29 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-libs/gsoap/ChangeLog,v 1.18 2012/07/17 07:23:06 patrick Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gsoap/ChangeLog,v 1.19 2012/08/23 04:06:12 patrick Exp $
32 +
33 +*gsoap-2.8.10 (23 Aug 2012)
34 +
35 + 23 Aug 2012; Patrick Lauer <patrick@g.o> +gsoap-2.8.10.ebuild,
36 + -gsoap-2.8.0.ebuild, -gsoap-2.8.1.ebuild, -gsoap-2.8.8.ebuild:
37 + Bump
38
39 *gsoap-2.8.9 (17 Jul 2012)
40
41
42
43
44 1.1 net-libs/gsoap/gsoap-2.8.10.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gsoap/gsoap-2.8.10.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gsoap/gsoap-2.8.10.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gsoap-2.8.10.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-libs/gsoap/gsoap-2.8.10.ebuild,v 1.1 2012/08/23 04:06:12 patrick Exp $
54
55 EAPI=4
56
57 inherit autotools eutils
58
59 MY_P="${PN}-2.8"
60
61 DESCRIPTION="A cross-platform open source C and C++ SDK to ease the development of SOAP/XML Web services"
62 HOMEPAGE="http://gsoap2.sourceforge.net"
63 SRC_URI="mirror://sourceforge/gsoap2/gsoap_${PV}.zip"
64
65 LICENSE="GPL-2 gSOAP"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="doc debug examples ipv6 gnutls +ssl"
69
70 DEPEND="app-arch/unzip
71 sys-devel/flex
72 sys-devel/bison
73 sys-libs/zlib
74 gnutls? ( net-libs/gnutls )
75 ssl? ( dev-libs/openssl )"
76 RDEPEND=""
77
78 S="${WORKDIR}/${MY_P}"
79
80 src_prepare() {
81 # Fix Pre-ISO headers
82 epatch "${FILESDIR}/${PN}-2.7.10-fedora-install_soapcpp2_wsdl2h_aux.patch"
83
84 eautoreconf
85 }
86
87 src_configure() {
88 local myconf=
89 use ssl || myconf+="--disable-ssl "
90 use gnutls && myconf+="--enable-gnutls "
91 use ipv6 && myconf+="--enable-ipv6 "
92 econf \
93 ${myconf} \
94 $(use_enable debug) \
95 $(use_enable examples samples)
96 }
97
98 src_compile() {
99 emake -j1
100 }
101
102 src_install() {
103 emake DESTDIR="${D}" install
104
105 # yes, we also install the license-file since
106 # it contains info about how to apply the licenses
107 dodoc *.txt
108
109 dohtml changelog.html
110
111 find "${D}"/usr/ -name "*.la" -exec rm {} \;
112
113 if use examples; then
114 rm -rf gsoap/samples/Makefile* gsoap/samples/*/Makefile* gsoap/samples/*/*.o
115 insinto /usr/share/doc/${PF}/examples
116 doins -r gsoap/samples/*
117 fi
118
119 if use doc; then
120 dohtml -r gsoap/doc/*
121 fi
122 }