Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libdmapsharing/
Date: Sun, 27 Aug 2017 10:03:05
Message-Id: 1503828175.684b71d6ff28e69e2a876f280a613f15451846f9.eva@gentoo
1 commit: 684b71d6ff28e69e2a876f280a613f15451846f9
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 27 09:49:11 2017 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 27 10:02:55 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=684b71d6
7
8 net-libs/libdmapsharing: version bump 2.9.37 → 2.9.39
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 net-libs/libdmapsharing/Manifest | 1 +
13 .../libdmapsharing/libdmapsharing-2.9.39.ebuild | 47 ++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/net-libs/libdmapsharing/Manifest b/net-libs/libdmapsharing/Manifest
17 index 65e9d2199c6..5ba3bbb0b75 100644
18 --- a/net-libs/libdmapsharing/Manifest
19 +++ b/net-libs/libdmapsharing/Manifest
20 @@ -1 +1,2 @@
21 DIST libdmapsharing-2.9.37.tar.gz 760469 SHA256 9b6847b4021596913c927cca51600727cd44582b4417a3b1ec6967d0ab42ec79 SHA512 db64c7e9ca6d8e06fdbec44853d8667a5d698244bc0881beae6aee447d464882accd885685636b3cd84735fe16eaa3b7bf692f2ac217525a9b86f5a12c810e8f WHIRLPOOL b8055b26a08417eb88950d35ab3c8c1bdbd26e86c0908edd65a4190e59f34a572731afd14b3283ed04311245e2c4731cbeeb4b6afd7d74ae6a50958ce2fecdbe
22 +DIST libdmapsharing-2.9.39.tar.gz 757492 SHA256 a90dc0681ae81700e46efc539f70edb6edd936b782a9a695434bea660a43a5ef SHA512 7003b947e1982735b647c1fa8e7e80e05322acf4ed4b5c1c28708da00a0bfe3eecac01bc2ddf59966e7db045f14fc78e749a2859d7e909bcea41164939f15b4a WHIRLPOOL 1d033a2ccc1d02ef1f4e916251c06b39a7ce52dc9c9b577a4a793518b41f4bef015ac654a8b3517a9539f0d6be671b245e7113b733ee4de5b1b630af837f8403
23
24 diff --git a/net-libs/libdmapsharing/libdmapsharing-2.9.39.ebuild b/net-libs/libdmapsharing/libdmapsharing-2.9.39.ebuild
25 new file mode 100644
26 index 00000000000..1f4570f4141
27 --- /dev/null
28 +++ b/net-libs/libdmapsharing/libdmapsharing-2.9.39.ebuild
29 @@ -0,0 +1,47 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +inherit gnome2
35 +
36 +DESCRIPTION="A library that implements the DMAP family of protocols"
37 +HOMEPAGE="http://www.flyn.org/projects/libdmapsharing"
38 +SRC_URI="http://www.flyn.org/projects/${PN}/${P}.tar.gz"
39 +
40 +LICENSE="LGPL-2.1"
41 +SLOT="3.0/2"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
43 +IUSE="+introspection test"
44 +
45 +# Vala/libgee/gtk+:2 is only used when maintainer-mode is enabled
46 +# Doesn't seem to be used for anything...
47 +RDEPEND="
48 + >=dev-libs/glib-2.36:2
49 + x11-libs/gdk-pixbuf:2
50 + >=net-dns/avahi-0.6[dbus]
51 + >=net-libs/libsoup-2.48.0:2.4
52 + media-libs/gstreamer:1.0
53 + media-libs/gst-plugins-base:1.0
54 + sys-libs/zlib
55 + introspection? ( >=dev-libs/gobject-introspection-1.30:= )
56 +"
57 +DEPEND="${RDEPEND}
58 + dev-util/gtk-doc-am
59 + virtual/pkgconfig
60 + test? ( >=dev-libs/check-0.9.4 )
61 +"
62 +
63 +src_prepare() {
64 + # Remove useless CFLAGS alteration in configure
65 + sed -e 's/CFLAGS -O2/CFLAGS/' \
66 + -i configure.ac configure || die
67 + gnome2_src_prepare
68 +}
69 +
70 +src_configure() {
71 + gnome2_src_configure \
72 + --with-mdns=avahi \
73 + $(use_enable introspection) \
74 + $(use_enable test tests) \
75 + $(use_enable test check)
76 +}