summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Raghavan <ford_prefect@gentoo.org>2011-01-10 12:19:40 +0000
committerArun Raghavan <ford_prefect@gentoo.org>2011-01-10 12:19:40 +0000
commit9958b4a90d3f459fc57854318e9283bed013e1fc (patch)
tree77a42f1956b35b957402dad458bcad32dfff63f4 /net-libs
parentBump to 0.14.1 - latest stable, bunch of bug fixes. (diff)
downloadgentoo-2-9958b4a90d3f459fc57854318e9283bed013e1fc.tar.gz
gentoo-2-9958b4a90d3f459fc57854318e9283bed013e1fc.tar.bz2
gentoo-2-9958b4a90d3f459fc57854318e9283bed013e1fc.zip
Bump to 0.6.3. Number of bug fixes, add missing gobject-introspection dep.
(Portage version: 2.2.0_alpha14/cvs/Linux x86_64)
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/gupnp-av/ChangeLog9
-rw-r--r--net-libs/gupnp-av/gupnp-av-0.6.3.ebuild34
2 files changed, 41 insertions, 2 deletions
diff --git a/net-libs/gupnp-av/ChangeLog b/net-libs/gupnp-av/ChangeLog
index 663b8198c660..aba2175a832f 100644
--- a/net-libs/gupnp-av/ChangeLog
+++ b/net-libs/gupnp-av/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/gupnp-av
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp-av/ChangeLog,v 1.9 2010/10/01 16:13:30 ford_prefect Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp-av/ChangeLog,v 1.10 2011/01/10 12:19:40 ford_prefect Exp $
+
+*gupnp-av-0.6.3 (10 Jan 2011)
+
+ 10 Jan 2011; Arun Raghavan <ford_prefect@gentoo.org> +gupnp-av-0.6.3.ebuild:
+ Bump to 0.6.3. Number of bug fixes, add missing gobject-introspection dep.
*gupnp-av-0.6.1 (01 Oct 2010)
diff --git a/net-libs/gupnp-av/gupnp-av-0.6.3.ebuild b/net-libs/gupnp-av/gupnp-av-0.6.3.ebuild
new file mode 100644
index 000000000000..732808bf1c7c
--- /dev/null
+++ b/net-libs/gupnp-av/gupnp-av-0.6.3.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp-av/gupnp-av-0.6.3.ebuild,v 1.1 2011/01/10 12:19:40 ford_prefect Exp $
+
+EAPI=2
+
+DESCRIPTION="a small utility library that aims to ease the handling UPnP A/V profiles."
+HOMEPAGE="http://gupnp.org/"
+SRC_URI="http://gupnp.org/sites/all/files/sources/${P}.tar.gz"
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="+introspection"
+
+RDEPEND=">=dev-libs/glib-2.16:2
+ >=net-libs/gupnp-0.13[introspection?]
+ introspection? ( >=dev-libs/gobject-introspection-0.9.5 )"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
+
+src_configure() {
+ econf \
+ $(use_enable introspection) \
+ --disable-dependency-tracking \
+ --disable-gtk-doc \
+ --disable-gtk-doc-html \
+ --disable-gtk-doc-pdf
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ dodoc AUTHORS ChangeLog NEWS README
+}