diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2011-01-19 16:40:49 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2011-01-19 16:40:49 +0000 |
commit | ed3202566b893813f1914d3da11d609d80e5e893 (patch) | |
tree | ed0ff8fac9bcbb5f5388ae31ee45ed5f4955a1d4 /net-libs/gsoap/gsoap-2.8.1.ebuild | |
parent | 1.0.28 version bump (diff) | |
download | gentoo-2-ed3202566b893813f1914d3da11d609d80e5e893.tar.gz gentoo-2-ed3202566b893813f1914d3da11d609d80e5e893.tar.bz2 gentoo-2-ed3202566b893813f1914d3da11d609d80e5e893.zip |
Version bump - Removed old
(Portage version: 2.2.0_alpha17/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/gsoap/gsoap-2.8.1.ebuild')
-rw-r--r-- | net-libs/gsoap/gsoap-2.8.1.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/net-libs/gsoap/gsoap-2.8.1.ebuild b/net-libs/gsoap/gsoap-2.8.1.ebuild new file mode 100644 index 000000000000..e21aff80c9ee --- /dev/null +++ b/net-libs/gsoap/gsoap-2.8.1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gsoap/gsoap-2.8.1.ebuild,v 1.1 2011/01/19 16:40:49 polynomial-c Exp $ + +EAPI=2 + +inherit autotools eutils + +MY_P="${PN}-2.8" + +DESCRIPTION="A cross-platform open source C and C++ SDK to ease the development of SOAP/XML Web services" +HOMEPAGE="http://gsoap2.sourceforge.net" +SRC_URI="mirror://sourceforge/gsoap2/gsoap_${PV}.zip" + +LICENSE="GPL-2 gSOAP" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc debug examples +ssl" + +DEPEND="app-arch/unzip + sys-devel/flex + sys-devel/bison + sys-libs/zlib + ssl? ( dev-libs/openssl )" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + # Fix Pre-ISO headers + epatch "${FILESDIR}/${PN}-2.7.10-fedora-install_soapcpp2_wsdl2h_aux.patch" + + # causes compilation of app-emulation/virtualbox-ose[vboxwebsrv] to + # break (bug #320901): + #epatch "${FILESDIR}/${PN}-2.7.15-use_libtool.patch" + + eautoreconf +} + +src_configure() { + econf \ + $(use_enable ssl openssl) \ + $(use_enable examples samples) \ + $(use_enable debug) +} + +src_compile() { + emake -j1 || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "Install failed" + + # yes, we also install the license-file since + # it contains info about how to apply the licenses + dodoc *.txt + + dohtml changelog.html + + rm -rf "${D}"/usr/lib*/*.la + + if use examples; then + rm -rf gsoap/samples/Makefile* gsoap/samples/*/Makefile* gsoap/samples/*/*.o + insinto /usr/share/doc/${PF}/examples + doins -r gsoap/samples/* + fi + + if use doc; then + dohtml -r gsoap/doc/* + fi +} |