diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-01-10 13:57:11 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-01-10 13:57:11 +0000 |
commit | d6144d06f8c02e714b51ed1b829c7ce1dfc21fc1 (patch) | |
tree | e3aada96488c3a0b496b6d0294efcf1e6c021297 /net-libs | |
parent | Depend on rack-1.0.x series, doesn't work with 1.1.0. (diff) | |
download | gentoo-2-d6144d06f8c02e714b51ed1b829c7ce1dfc21fc1.tar.gz gentoo-2-d6144d06f8c02e714b51ed1b829c7ce1dfc21fc1.tar.bz2 gentoo-2-d6144d06f8c02e714b51ed1b829c7ce1dfc21fc1.zip |
Version bump.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/gupnp-igd/ChangeLog | 10 | ||||
-rw-r--r-- | net-libs/gupnp-igd/gupnp-igd-0.1.6.ebuild | 34 |
2 files changed, 42 insertions, 2 deletions
diff --git a/net-libs/gupnp-igd/ChangeLog b/net-libs/gupnp-igd/ChangeLog index b04cb8459eb2..84855c794540 100644 --- a/net-libs/gupnp-igd/ChangeLog +++ b/net-libs/gupnp-igd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/gupnp-igd -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp-igd/ChangeLog,v 1.10 2009/10/24 18:11:34 nixnut Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp-igd/ChangeLog,v 1.11 2010/01/10 13:57:11 ssuominen Exp $ + +*gupnp-igd-0.1.6 (10 Jan 2010) + + 10 Jan 2010; Samuli Suominen <ssuominen@gentoo.org> + +gupnp-igd-0.1.6.ebuild: + Version bump. 24 Oct 2009; nixnut <nixnut@gentoo.org> gupnp-igd-0.1.3.ebuild: ppc stable #289298 diff --git a/net-libs/gupnp-igd/gupnp-igd-0.1.6.ebuild b/net-libs/gupnp-igd/gupnp-igd-0.1.6.ebuild new file mode 100644 index 000000000000..97a76ecf6008 --- /dev/null +++ b/net-libs/gupnp-igd/gupnp-igd-0.1.6.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp-igd/gupnp-igd-0.1.6.ebuild,v 1.1 2010/01/10 13:57:11 ssuominen Exp $ + +EAPI=2 + +DESCRIPTION="This is a library to handle UPnP IGD port mapping for GUPnP." +HOMEPAGE="http://gupnp.org" +SRC_URI="http://gupnp.org/sources/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~x86" +IUSE="python" + +RDEPEND=">=net-libs/gupnp-0.13.2 + >=dev-libs/glib-2.16:2 + python? ( >=dev-python/pygobject-2.16 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + sys-devel/gettext" + +src_configure() { + econf \ + --disable-dependency-tracking \ + --disable-gtk-doc \ + $(use_enable python) \ + --with-html-dir=/usr/share/doc/${PF}/html +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS NEWS README TODO +} |