diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-05-24 00:17:05 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-05-24 00:17:05 +0000 |
commit | 0f5a274e9df3414cd211654acc927845c4552a66 (patch) | |
tree | 492fd5bcc09e8de7e8552086edb79fed309772c2 /net-libs/miniupnpc | |
parent | old (diff) | |
download | gentoo-2-0f5a274e9df3414cd211654acc927845c4552a66.tar.gz gentoo-2-0f5a274e9df3414cd211654acc927845c4552a66.tar.bz2 gentoo-2-0f5a274e9df3414cd211654acc927845c4552a66.zip |
old
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/miniupnpc')
-rw-r--r-- | net-libs/miniupnpc/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/miniupnpc/miniupnpc-1.5.ebuild | 63 |
2 files changed, 4 insertions, 64 deletions
diff --git a/net-libs/miniupnpc/ChangeLog b/net-libs/miniupnpc/ChangeLog index 1b91eb6f357b..9edbb72474a3 100644 --- a/net-libs/miniupnpc/ChangeLog +++ b/net-libs/miniupnpc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/miniupnpc # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/miniupnpc/ChangeLog,v 1.20 2012/05/15 12:28:34 naota Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/miniupnpc/ChangeLog,v 1.21 2012/05/24 00:17:05 ssuominen Exp $ + + 24 May 2012; Samuli Suominen <ssuominen@gentoo.org> -miniupnpc-1.5.ebuild: + old 15 May 2012; Naohiro Aota <naota@gentoo.org> miniupnpc-1.6-r1.ebuild: Keyword ~x86-fbsd. Depend on lsb-release, only on Linux. diff --git a/net-libs/miniupnpc/miniupnpc-1.5.ebuild b/net-libs/miniupnpc/miniupnpc-1.5.ebuild deleted file mode 100644 index 928e96de5809..000000000000 --- a/net-libs/miniupnpc/miniupnpc-1.5.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/miniupnpc/miniupnpc-1.5.ebuild,v 1.4 2011/08/03 09:46:14 blueness Exp $ - -EAPI=3 -SUPPORT_PYTHON_ABIS=1 -PYTHON_DEPEND="python? 2" -RESTRICT_PYTHON_ABIS="3.*" - -inherit distutils eutils 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 ~ppc x86" -IUSE="python static-libs" - -DEPEND="sys-apps/lsb-release" -RDEPEND="" - -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 - - use python && distutils_src_prepare -} - -src_compile() { - emake CC=$(tc-getCC) || die - - use python && distutils_src_compile -} - -src_install() { - emake \ - PREFIX="${D}" \ - INSTALLDIRLIB="${D}usr/$(get_libdir)" \ - install || die - - dodoc README Changelog.txt || die - doman man3/* || die - - use python && distutils_src_install -} - -pkg_postinst() { - use python && distutils_pkg_postinst -} - -pkg_postrm() { - use python && distutils_pkg_postrm -} |