diff options
author | 2010-08-01 08:54:36 +0000 | |
---|---|---|
committer | 2010-08-01 08:54:36 +0000 | |
commit | abccf9f37c09ded02bcefcf73d7c18427f70f3d7 (patch) | |
tree | 803a5e866ab271fd326f66ef93097eb2b1b35c29 /net-libs/gupnp-igd/gupnp-igd-0.1.7.ebuild | |
parent | Stable latest. Remove the one with tons of runtime issues. (diff) | |
download | gentoo-2-abccf9f37c09ded02bcefcf73d7c18427f70f3d7.tar.gz gentoo-2-abccf9f37c09ded02bcefcf73d7c18427f70f3d7.tar.bz2 gentoo-2-abccf9f37c09ded02bcefcf73d7c18427f70f3d7.zip |
Version bump with simple bug fixes and also letting tests to work.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/gupnp-igd/gupnp-igd-0.1.7.ebuild')
-rw-r--r-- | net-libs/gupnp-igd/gupnp-igd-0.1.7.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net-libs/gupnp-igd/gupnp-igd-0.1.7.ebuild b/net-libs/gupnp-igd/gupnp-igd-0.1.7.ebuild new file mode 100644 index 000000000000..d2af61eaaad2 --- /dev/null +++ b/net-libs/gupnp-igd/gupnp-igd-0.1.7.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.7.ebuild,v 1.1 2010/08/01 08:54:36 pacho Exp $ + +EAPI=2 + +DESCRIPTION="This is a library to handle UPnP IGD port mapping for GUPnP." +HOMEPAGE="http://gupnp.org" +SRC_URI="http://www.gupnp.org/sites/all/files/sources/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~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 +} |