diff options
Diffstat (limited to 'net-libs/miniupnpc/miniupnpc-1.6-r1.ebuild')
-rw-r--r-- | net-libs/miniupnpc/miniupnpc-1.6-r1.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/net-libs/miniupnpc/miniupnpc-1.6-r1.ebuild b/net-libs/miniupnpc/miniupnpc-1.6-r1.ebuild new file mode 100644 index 00000000000..672fb105b39 --- /dev/null +++ b/net-libs/miniupnpc/miniupnpc-1.6-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +inherit base 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" +KEYWORDS="amd64 ~arm ppc ppc64 sparc x86 ~x86-fbsd" +IUSE="static-libs" + +RESTRICT="test" + +DEPEND="kernel_linux? ( sys-apps/lsb-release )" +RDEPEND="" + +src_prepare() { + base_src_prepare + + sed \ + -e 's/^CFLAGS ?= -O -Wall /CFLAGS += /' \ + -i Makefile || die + + if use !static-libs; then + sed \ + -e '/FILESTOINSTALL =/s/ $(LIBRARY)//' \ + -e '/$(INSTALL) -m 644 $(LIBRARY) $(INSTALLDIRLIB)/d' \ + -i Makefile || die + fi +} + +# Upstream cmake causes more trouble than it fixes, +# so we'll just stay with the Makefile for now. + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + emake \ + PREFIX="${D}" \ + INSTALLDIRLIB="${D}usr/$(get_libdir)" \ + install + + dodoc README Changelog.txt + doman man3/* +} + +pkg_postinst() { + elog "Please note that the python counterpart has been moved to" + elog " dev-python/miniupnpc" +} |