diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-12-13 08:43:34 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-12-13 08:56:45 +0100 |
commit | 23e06320bf451aaae83cf921a5ade33a3128e3f1 (patch) | |
tree | 35e0ceaecc53b2fccc5ffeaaae923660ff144126 /net-libs/miniupnpc/miniupnpc-2.0.20171212.ebuild | |
parent | 676bb7e0ca84e781ce6a60603c700a561822c7a6 (diff) | |
download | gentoo-23e06320bf451aaae83cf921a5ade33a3128e3f1.tar.gz gentoo-23e06320bf451aaae83cf921a5ade33a3128e3f1.tar.xz |
net-libs/miniupnpc: Bump to 2.0.20171212
Diffstat (limited to 'net-libs/miniupnpc/miniupnpc-2.0.20171212.ebuild')
-rw-r--r-- | net-libs/miniupnpc/miniupnpc-2.0.20171212.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/net-libs/miniupnpc/miniupnpc-2.0.20171212.ebuild b/net-libs/miniupnpc/miniupnpc-2.0.20171212.ebuild new file mode 100644 index 00000000000..918bc210cea --- /dev/null +++ b/net-libs/miniupnpc/miniupnpc-2.0.20171212.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="UPnP client library and a simple UPnP client" +HOMEPAGE="http://miniupnp.free.fr/" +SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/16" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="ipv6 kernel_linux static-libs" + +RDEPEND="" +DEPEND="kernel_linux? ( sys-apps/lsb-release sys-apps/which )" + +src_prepare() { + eapply_user + + # These bins are not installed, upnpc-static requires building static lib + sed -i -e '/EXECUTABLES =/s/ upnpc-static listdevices//' Makefile || die + + if ! use static-libs; then + sed -i \ + -e '/FILESTOINSTALL =/s/ $(LIBRARY)//' \ + -e '/$(INSTALL) -m 644 $(LIBRARY) $(DESTDIR)$(INSTALLDIRLIB)/d' \ + Makefile || die + fi +} + +# Upstream cmake causes more trouble than it fixes, +# so we'll just stay with the Makefile for now. + +src_compile() { + tc-export CC AR + emake upnpc-shared $(usex static-libs upnpc-static '') +} + +src_test() { + emake -j1 HAVE_IPV6=$(usex ipv6) check +} + +src_install() { + emake \ + DESTDIR="${D}" \ + PREFIX="${EPREFIX}/usr" \ + INSTALLDIRLIB="${EPREFIX}/usr/$(get_libdir)" \ + install + + dodoc README Changelog.txt +} |