diff options
author | 2015-06-10 13:27:58 +0000 | |
---|---|---|
committer | 2015-06-10 13:27:58 +0000 | |
commit | d56162df8febc45b8ece76b03649115b1d137304 (patch) | |
tree | d1f7083719d172144075212731a9394f35c1fe29 /net-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-d56162df8febc45b8ece76b03649115b1d137304.tar.gz gentoo-2-d56162df8febc45b8ece76b03649115b1d137304.tar.bz2 gentoo-2-d56162df8febc45b8ece76b03649115b1d137304.zip |
Version bump.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libnatpmp/ChangeLog | 10 | ||||
-rw-r--r-- | net-libs/libnatpmp/libnatpmp-20150609.ebuild | 30 |
2 files changed, 38 insertions, 2 deletions
diff --git a/net-libs/libnatpmp/ChangeLog b/net-libs/libnatpmp/ChangeLog index cdc508159ae0..dbd797d6b12c 100644 --- a/net-libs/libnatpmp/ChangeLog +++ b/net-libs/libnatpmp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/libnatpmp -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnatpmp/ChangeLog,v 1.30 2014/04/05 13:14:05 ssuominen Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnatpmp/ChangeLog,v 1.31 2015/06/10 13:27:58 blueness Exp $ + +*libnatpmp-20150609 (10 Jun 2015) + + 10 Jun 2015; Anthony G. Basile <blueness@gentoo.org> + +libnatpmp-20150609.ebuild: + Version bump. 05 Apr 2014; Samuli Suominen <ssuominen@gentoo.org> -libnatpmp-20140401.ebuild: diff --git a/net-libs/libnatpmp/libnatpmp-20150609.ebuild b/net-libs/libnatpmp/libnatpmp-20150609.ebuild new file mode 100644 index 000000000000..c8d17477c635 --- /dev/null +++ b/net-libs/libnatpmp/libnatpmp-20150609.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnatpmp/libnatpmp-20150609.ebuild,v 1.1 2015/06/10 13:27:58 blueness Exp $ + +EAPI="5" +inherit eutils toolchain-funcs multilib + +DESCRIPTION="An alternative protocol to UPnP IGD specification" +HOMEPAGE="http://miniupnp.free.fr/libnatpmp.html" +SRC_URI="http://miniupnp.free.fr/files/download.php?file=${P}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="static-libs" + +src_prepare() { + epatch "${FILESDIR}"/respect-FLAGS-20140401.patch + epatch "${FILESDIR}"/respect-libdir-20120821.patch + use static-libs || epatch "${FILESDIR}"/remove-static-lib-20130911.patch + tc-export CC +} + +src_install() { + # Override HEADERS for missing declspec.h wrt #506832 + emake HEADERS='declspec.h natpmp.h' PREFIX="${D}" GENTOO_LIBDIR="$(get_libdir)" install + + dodoc Changelog.txt README + doman natpmpc.1 +} |