Gentoo Archives: gentoo-commits

From: Dennis Lamm <expeditioneer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gssdp/
Date: Wed, 08 Mar 2017 19:23:45
Message-Id: 1489001016.9c4f60ca18d922a07f8fc87fb47b4ba66d848f59.expeditioneer@gentoo
1 commit: 9c4f60ca18d922a07f8fc87fb47b4ba66d848f59
2 Author: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 8 19:21:33 2017 +0000
4 Commit: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 8 19:23:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c4f60ca
7
8 net-libs/gssdp version bump to 1.0.1
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 net-libs/gssdp/Manifest | 1 +
13 net-libs/gssdp/gssdp-1.0.1.ebuild | 57 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 58 insertions(+)
15
16 diff --git a/net-libs/gssdp/Manifest b/net-libs/gssdp/Manifest
17 index dc1ba36d881..2560cc8dacb 100644
18 --- a/net-libs/gssdp/Manifest
19 +++ b/net-libs/gssdp/Manifest
20 @@ -1 +1,2 @@
21 DIST gssdp-0.14.16.tar.xz 301000 SHA256 54520bfb230b9c8c938eba88d87df44e04749682c95fb8aa381d13441345c5b2 SHA512 1ff3a8bcb8af537bdb26d56edd3452fba9a781264bd29debd08ad901f47b060f3a80006b63c52fe93d487200bad8d5d0745937de868ad78167464dc0cf2fa3de WHIRLPOOL 3fdf6d1c1aca1b7c3295cb390656ba8fcacb9ec1655aaccaa07c246605d994ca932cd3391ea08979ade1d9bf2ffea3eb8c37930fb162e763673dd0f1904d10e0
22 +DIST gssdp-1.0.1.tar.xz 312336 SHA256 601d67f40bc28c067742b7c46f3018da96b364fd3e83f30ddac6e190e323d2e1 SHA512 e823cb62d440f1ddab3ec5012718a9808ac736077b09c2a7cbce38a876de613c4960c986b7486fa0eed79651ace9865ca5418c195a8682ba621378465ec60247 WHIRLPOOL 32a602881a9634f580f110869305eb75a462fb3cfe5ac8e5f1c416e61a3e3def5afd5a7ca5e148c958f2a88f7b3651a39af4173dd8d24ac412e7792e3c01ee24
23
24 diff --git a/net-libs/gssdp/gssdp-1.0.1.ebuild b/net-libs/gssdp/gssdp-1.0.1.ebuild
25 new file mode 100644
26 index 00000000000..e72a8080cc1
27 --- /dev/null
28 +++ b/net-libs/gssdp/gssdp-1.0.1.ebuild
29 @@ -0,0 +1,57 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="6"
34 +VALA_USE_DEPEND="vapigen"
35 +
36 +inherit gnome2 multilib-minimal vala
37 +
38 +DESCRIPTION="A GObject-based API for handling resource discovery and announcement over SSDP"
39 +HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP"
40 +
41 +LICENSE="LGPL-2"
42 +SLOT="0/3"
43 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
44 +IUSE="+introspection gtk"
45 +
46 +RDEPEND="
47 + >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
48 + >=net-libs/libsoup-2.44.2:2.4[${MULTILIB_USEDEP},introspection?]
49 + gtk? ( >=x11-libs/gtk+-3.0:3 )
50 + introspection? (
51 + $(vala_depend)
52 + >=dev-libs/gobject-introspection-1.36:= )
53 + !<net-libs/gupnp-vala-0.10.3
54 +"
55 +DEPEND="${RDEPEND}
56 + >=dev-util/gtk-doc-am-1.14
57 + sys-devel/gettext
58 + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
59 +"
60 +
61 +src_prepare() {
62 + # Disable functional test as it requires port that might be used by rygel to
63 + # be free of use
64 + sed 's/\(check_PROGRAMS.*\)test-functional$(EXEEXT)/\1/' \
65 + -i "${S}"/tests/Makefile.in || die
66 +
67 + use introspection && vala_src_prepare
68 + gnome2_src_prepare
69 +}
70 +
71 +multilib_src_configure() {
72 + ECONF_SOURCE=${S} \
73 + gnome2_src_configure \
74 + $(multilib_native_use_enable introspection) \
75 + $(multilib_native_use_with gtk) \
76 + --disable-static
77 +
78 + if multilib_is_native_abi; then
79 + # fix gtk-doc
80 + ln -s "${S}"/doc/html doc/html || die
81 + fi
82 +}
83 +
84 +multilib_src_install() {
85 + gnome2_src_install
86 +}