diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-05-28 19:00:25 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-05-28 19:00:25 +0000 |
commit | 36db337ebb523429001df1f812e80c51e27be515 (patch) | |
tree | 654e30fc77df2578e157da8c758826f9f1475b59 /net-libs/gssdp | |
parent | revbump, migrate -> distutils-r1, tes fail cited wrt Bug #470976 (diff) | |
download | gentoo-2-36db337ebb523429001df1f812e80c51e27be515.tar.gz gentoo-2-36db337ebb523429001df1f812e80c51e27be515.tar.bz2 gentoo-2-36db337ebb523429001df1f812e80c51e27be515.zip |
Version bump
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-libs/gssdp')
-rw-r--r-- | net-libs/gssdp/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/gssdp/gssdp-0.14.3.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/net-libs/gssdp/ChangeLog b/net-libs/gssdp/ChangeLog index 48461a88538e..3829d9fc8e86 100644 --- a/net-libs/gssdp/ChangeLog +++ b/net-libs/gssdp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/gssdp # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/gssdp/ChangeLog,v 1.56 2013/03/30 23:25:32 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/gssdp/ChangeLog,v 1.57 2013/05/28 19:00:25 pacho Exp $ + +*gssdp-0.14.3 (28 May 2013) + + 28 May 2013; Pacho Ramos <pacho@gentoo.org> +gssdp-0.14.3.ebuild: + Version bump 30 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> gssdp-0.14.2.ebuild: Add subslot. diff --git a/net-libs/gssdp/gssdp-0.14.3.ebuild b/net-libs/gssdp/gssdp-0.14.3.ebuild new file mode 100644 index 000000000000..943229a992b4 --- /dev/null +++ b/net-libs/gssdp/gssdp-0.14.3.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gssdp/gssdp-0.14.3.ebuild,v 1.1 2013/05/28 19:00:25 pacho Exp $ + +EAPI="5" +VALA_MIN_API_VERSION="0.14" +VALA_USE_DEPEND="vapigen" + +inherit eutils gnome.org vala + +DESCRIPTION="A GObject-based API for handling resource discovery and announcement over SSDP." +HOMEPAGE="http://gupnp.org/" + +LICENSE="LGPL-2" +SLOT="0/3" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="+introspection +gtk" + +RDEPEND=" + >=dev-libs/glib-2.32:2 + >=net-libs/libsoup-2.26.1:2.4[introspection?] + gtk? ( >=x11-libs/gtk+-3.0:3 ) + introspection? ( + >=dev-libs/gobject-introspection-0.6.7 + $(vala_depend) + ) + !<net-libs/gupnp-vala-0.10.3 +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.10 + sys-devel/gettext + virtual/pkgconfig +" + +src_prepare() { + # Disable functional test as it requires port that might be used by rygel to + # be free of use + sed 's/\(check_PROGRAMS.*\)test-functional$(EXEEXT)/\1/' \ + -i "${S}"/tests/gtest/Makefile.in || die + use introspection && vala_src_prepare +} + +src_configure() { + econf \ + $(use_enable introspection) \ + $(use_with gtk) \ + --disable-static \ + --disable-gtk-doc +} + +src_install() { + default + prune_libtool_files +} |