Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libdmapsharing: libdmapsharing-2.9.29.ebuild ChangeLog
Date: Fri, 26 Sep 2014 18:00:12
Message-Id: 20140926180009.4DA4E657B@oystercatcher.gentoo.org
1 eva 14/09/26 18:00:09
2
3 Modified: ChangeLog
4 Added: libdmapsharing-2.9.29.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.23 net-libs/libdmapsharing/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdmapsharing/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdmapsharing/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdmapsharing/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libdmapsharing/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 27 Apr 2014 08:22:59 -0000 1.22
24 +++ ChangeLog 26 Sep 2014 18:00:09 -0000 1.23
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-libs/libdmapsharing
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libdmapsharing/ChangeLog,v 1.22 2014/04/27 08:22:59 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libdmapsharing/ChangeLog,v 1.23 2014/09/26 18:00:09 eva Exp $
30 +
31 +*libdmapsharing-2.9.29 (26 Sep 2014)
32 +
33 + 26 Sep 2014; Gilles Dartiguelongue <eva@g.o>
34 + +libdmapsharing-2.9.29.ebuild:
35 + Version bump.
36
37 27 Apr 2014; Pacho Ramos <pacho@g.o> -libdmapsharing-2.9.15.ebuild,
38 -libdmapsharing-2.9.17.ebuild:
39
40
41
42 1.1 net-libs/libdmapsharing/libdmapsharing-2.9.29.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdmapsharing/libdmapsharing-2.9.29.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdmapsharing/libdmapsharing-2.9.29.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libdmapsharing-2.9.29.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/libdmapsharing/libdmapsharing-2.9.29.ebuild,v 1.1 2014/09/26 18:00:09 eva Exp $
52
53 EAPI=5
54
55 inherit eutils
56
57 DESCRIPTION="A library that implements the DMAP family of protocols"
58 HOMEPAGE="http://www.flyn.org/projects/libdmapsharing"
59 SRC_URI="http://www.flyn.org/projects/${PN}/${P}.tar.gz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="3.0/2"
63 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
64 IUSE="+introspection test"
65
66 # Vala/libgee/gtk+:2 is only used when maintainer-mode is enabled
67 # Doesn't seem to be used for anything...
68 # TODO: implement tests (requires dev-libs/check)
69 RDEPEND="
70 >=dev-libs/glib-2.36:2
71 x11-libs/gdk-pixbuf:2
72
73 >=net-dns/avahi-0.6
74 >=net-libs/libsoup-2.32:2.4
75 media-libs/gstreamer:1.0
76 media-libs/gst-plugins-base:1.0
77
78 sys-libs/zlib
79
80 introspection? ( >=dev-libs/gobject-introspection-1.30 )
81 "
82 DEPEND="${RDEPEND}
83 dev-util/gtk-doc-am
84 virtual/pkgconfig
85 test? ( dev-libs/check )
86 "
87
88 src_prepare() {
89 # Remove useless CFLAGS alteration in configure
90 sed -e 's/CFLAGS -O2/CFLAGS/' \
91 -i configure.ac configure || die
92 }
93
94 src_configure() {
95 econf \
96 --disable-gtk-doc \
97 --disable-maintainer-mode \
98 --with-mdns=avahi \
99 $(use_enable introspection) \
100 $(use_enable test tests)
101 }
102
103 src_install() {
104 default
105 prune_libtool_files
106 }