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/libdmapsharing/
Date: Mon, 05 Dec 2016 13:53:05
Message-Id: 1480945937.b79bad9be39562f18f079405226bd6073b561050.pacho@gentoo
1 commit: b79bad9be39562f18f079405226bd6073b561050
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 5 12:33:03 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 5 13:52:17 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b79bad9b
7
8 net-libs/libdmapsharing: Version bump
9
10 Package-Manager: portage-2.3.2
11
12 net-libs/libdmapsharing/Manifest | 1 +
13 .../libdmapsharing/libdmapsharing-2.9.37.ebuild | 48 ++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/net-libs/libdmapsharing/Manifest b/net-libs/libdmapsharing/Manifest
17 index ef19254..adf8ecc 100644
18 --- a/net-libs/libdmapsharing/Manifest
19 +++ b/net-libs/libdmapsharing/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libdmapsharing-2.9.35.tar.gz 759676 SHA256 619f72ad8c33e9c1e323afabe793008227099e488c71e8f9ecb404eeb32b49e7 SHA512 5755fe4f8d69ea8d58261e0068dc8dce9828c8134f53103f3afbba6d99cfe1e9f4a72f8004b96e6ac8d2bab6fb3c2cb458d9c3b333af78ee5eeb0883b5f763e8 WHIRLPOOL c1cded2d25de1f88f0ce944ef91946bcf423991e96bee1567a1d4ee46051e88771d09960ce23ea864ca73920e52fc64867ee0913f7a81e3ef3536e5d8b831bc4
22 DIST libdmapsharing-2.9.36.tar.gz 759882 SHA256 844769a42a7e6083ce6eb2aa72d25fb3588eb6dabb284820e9031231a0f0c46a SHA512 cc93ac74fae115a29f634db44a367202b7e7f34d2e26b6c3e9a0774e53c963e614d5499757de1a02e20ad94e747feb71ae5fdd008fa335b79d82f8a06cb417d3 WHIRLPOOL d91de0e8a827ec499a3f4a84477b8e960ad28f988ad46b68ac849dc8c3917717689d7e8d38309a6120463687fc7e3ce3d2d3f1845862614ed930b15d6db0a17c
23 +DIST libdmapsharing-2.9.37.tar.gz 760469 SHA256 9b6847b4021596913c927cca51600727cd44582b4417a3b1ec6967d0ab42ec79 SHA512 db64c7e9ca6d8e06fdbec44853d8667a5d698244bc0881beae6aee447d464882accd885685636b3cd84735fe16eaa3b7bf692f2ac217525a9b86f5a12c810e8f WHIRLPOOL b8055b26a08417eb88950d35ab3c8c1bdbd26e86c0908edd65a4190e59f34a572731afd14b3283ed04311245e2c4731cbeeb4b6afd7d74ae6a50958ce2fecdbe
24
25 diff --git a/net-libs/libdmapsharing/libdmapsharing-2.9.37.ebuild b/net-libs/libdmapsharing/libdmapsharing-2.9.37.ebuild
26 new file mode 100644
27 index 00000000..89c363b
28 --- /dev/null
29 +++ b/net-libs/libdmapsharing/libdmapsharing-2.9.37.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +inherit gnome2
37 +
38 +DESCRIPTION="A library that implements the DMAP family of protocols"
39 +HOMEPAGE="http://www.flyn.org/projects/libdmapsharing"
40 +SRC_URI="http://www.flyn.org/projects/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="LGPL-2.1"
43 +SLOT="3.0/2"
44 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
45 +IUSE="+introspection test"
46 +
47 +# Vala/libgee/gtk+:2 is only used when maintainer-mode is enabled
48 +# Doesn't seem to be used for anything...
49 +RDEPEND="
50 + >=dev-libs/glib-2.36:2
51 + x11-libs/gdk-pixbuf:2
52 + >=net-dns/avahi-0.6[dbus]
53 + >=net-libs/libsoup-2.48.0:2.4
54 + media-libs/gstreamer:1.0
55 + media-libs/gst-plugins-base:1.0
56 + sys-libs/zlib
57 + introspection? ( >=dev-libs/gobject-introspection-1.30:= )
58 +"
59 +DEPEND="${RDEPEND}
60 + dev-util/gtk-doc-am
61 + virtual/pkgconfig
62 + test? ( >=dev-libs/check-0.9.4 )
63 +"
64 +
65 +src_prepare() {
66 + # Remove useless CFLAGS alteration in configure
67 + sed -e 's/CFLAGS -O2/CFLAGS/' \
68 + -i configure.ac configure || die
69 + gnome2_src_prepare
70 +}
71 +
72 +src_configure() {
73 + gnome2_src_configure \
74 + --with-mdns=avahi \
75 + $(use_enable introspection) \
76 + $(use_enable test tests) \
77 + $(use_enable test check)
78 +}