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: Sun, 29 May 2016 12:42:56
Message-Id: 1464525701.3ec66f9cb2d49abd39ad77656d55950cdff3dd68.pacho@gentoo
1 commit: 3ec66f9cb2d49abd39ad77656d55950cdff3dd68
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 29 12:22:36 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun May 29 12:41:41 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ec66f9c
7
8 net-libs/libdmapsharing: Version bump
9
10 Package-Manager: portage-2.3.0_rc1
11
12 net-libs/libdmapsharing/Manifest | 1 +
13 .../libdmapsharing/libdmapsharing-2.9.35.ebuild | 48 ++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/net-libs/libdmapsharing/Manifest b/net-libs/libdmapsharing/Manifest
17 index 2537c82..7ed4505 100644
18 --- a/net-libs/libdmapsharing/Manifest
19 +++ b/net-libs/libdmapsharing/Manifest
20 @@ -1 +1,2 @@
21 DIST libdmapsharing-2.9.32.tar.gz 742229 SHA256 74b9ca2a3f04708ef5e6a87922cb42bad677b6f27fd0bc8ad53067ef6bbf0518 SHA512 fd152749055dd02fefa672f7da3efc85bffa7ddb10880886dff829fc8abfaecc79131366fdf31f5657c1b5e622c04f3dbfc750998ea56ffaf9af800210b17084 WHIRLPOOL f8fb493eb9181a18ef1d2dacd44920f8312db344df7aa1f842764ef95591d03fd511fab4e3c1c2e4966caa8738db9227031a458a892cec16c2158381701b8484
22 +DIST libdmapsharing-2.9.35.tar.gz 759676 SHA256 619f72ad8c33e9c1e323afabe793008227099e488c71e8f9ecb404eeb32b49e7 SHA512 5755fe4f8d69ea8d58261e0068dc8dce9828c8134f53103f3afbba6d99cfe1e9f4a72f8004b96e6ac8d2bab6fb3c2cb458d9c3b333af78ee5eeb0883b5f763e8 WHIRLPOOL c1cded2d25de1f88f0ce944ef91946bcf423991e96bee1567a1d4ee46051e88771d09960ce23ea864ca73920e52fc64867ee0913f7a81e3ef3536e5d8b831bc4
23
24 diff --git a/net-libs/libdmapsharing/libdmapsharing-2.9.35.ebuild b/net-libs/libdmapsharing/libdmapsharing-2.9.35.ebuild
25 new file mode 100644
26 index 0000000..324d722
27 --- /dev/null
28 +++ b/net-libs/libdmapsharing/libdmapsharing-2.9.35.ebuild
29 @@ -0,0 +1,48 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +inherit gnome2
36 +
37 +DESCRIPTION="A library that implements the DMAP family of protocols"
38 +HOMEPAGE="http://www.flyn.org/projects/libdmapsharing"
39 +SRC_URI="http://www.flyn.org/projects/${PN}/${P}.tar.gz"
40 +
41 +LICENSE="LGPL-2.1"
42 +SLOT="3.0/2"
43 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
44 +IUSE="+introspection test"
45 +
46 +# Vala/libgee/gtk+:2 is only used when maintainer-mode is enabled
47 +# Doesn't seem to be used for anything...
48 +# TODO: implement tests (requires dev-libs/check)
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 )
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 +}