Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gupnp-av/
Date: Sat, 20 Feb 2016 13:55:42
Message-Id: 1455976372.417802e2e6c7a92c71fbc1cfb73f362fb27444ad.pacho@gentoo
1 commit: 417802e2e6c7a92c71fbc1cfb73f362fb27444ad
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 20 13:18:40 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 20 13:52:52 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=417802e2
7
8 net-libs/gupnp-av: Version bump
9
10 Package-Manager: portage-2.2.27
11
12 net-libs/gupnp-av/Manifest | 1 +
13 net-libs/gupnp-av/gupnp-av-0.12.8.ebuild | 43 ++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/net-libs/gupnp-av/Manifest b/net-libs/gupnp-av/Manifest
17 index 99df2a1..9de6a2f 100644
18 --- a/net-libs/gupnp-av/Manifest
19 +++ b/net-libs/gupnp-av/Manifest
20 @@ -1 +1,2 @@
21 DIST gupnp-av-0.12.7.tar.xz 349292 SHA256 35e775bc4f7801d65dcb710905a6b8420ce751a239b5651e6d830615dc906ea8 SHA512 21af09a74409c696124b7d92746ba72a46f804df65ca968034cbfe10f0c73b18446b7cceceb8e62e4d1689f699ef9a785c465cb8caf9294ec8e9bc38e86d16c2 WHIRLPOOL 4c102cb8ebab50e377159b12e0d633718fa60365f2099a8e7c0680367c41e3d7dbace96abb4790600ad2d5d1c67123883ad50e2dd978f9a0e3be16b08af56f60
22 +DIST gupnp-av-0.12.8.tar.xz 357248 SHA256 759bc7d46aff894c282d17f508d9b5be82de96aa74b10cb6b0fc6c5e07cc273c SHA512 d56b9316758c0e4f4fbe3c5f4ca25b60c6f5a4fbbdd6037695598f1643fa112b334a7eca72df531c37e3c994e018c3fc018694f29f5c4240cff3a3e63075bcb7 WHIRLPOOL 67e20c07126b28f53ce69c3ba9a71a8a17a9943b262c25ab65a3f9a6438a2e7c5a7435d5b72c7156e2f1f93f59ce0b86dde8604e52d80ee8482f643c57417a0e
23
24 diff --git a/net-libs/gupnp-av/gupnp-av-0.12.8.ebuild b/net-libs/gupnp-av/gupnp-av-0.12.8.ebuild
25 new file mode 100644
26 index 0000000..fa953a4
27 --- /dev/null
28 +++ b/net-libs/gupnp-av/gupnp-av-0.12.8.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2015 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI="5"
35 +GCONF_DEBUG="no"
36 +VALA_USE_DEPEND="vapigen"
37 +
38 +inherit eutils gnome2 vala
39 +
40 +DESCRIPTION="Utility library aiming to ease the handling UPnP A/V profiles"
41 +HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP"
42 +
43 +LICENSE="LGPL-2"
44 +SLOT="0/2" # subslot: soname version
45 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
46 +IUSE="+introspection"
47 +
48 +RDEPEND="
49 + >=dev-libs/glib-2.16:2
50 + >=net-libs/gssdp-0.9.2[introspection?]
51 + >=net-libs/libsoup-2.28.2:2.4[introspection?]
52 + dev-libs/libxml2
53 + >=net-libs/gupnp-0.19[introspection?]
54 + introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
55 + !net-libs/gupnp-vala
56 +"
57 +DEPEND="${RDEPEND}
58 + >=dev-util/gtk-doc-am-1.10
59 + virtual/pkgconfig
60 + introspection? ( $(vala_depend) )
61 +"
62 +
63 +src_prepare() {
64 + use introspection && vala_src_prepare
65 + gnome2_src_prepare
66 +}
67 +
68 +src_configure() {
69 + gnome2_src_configure \
70 + $(use_enable introspection) \
71 + --disable-static
72 +}