Gentoo Archives: gentoo-commits

From: "Nirbheek Chauhan (nirbheek)" <nirbheek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libdmapsharing: libdmapsharing-2.9.12.ebuild ChangeLog
Date: Fri, 02 Sep 2011 07:04:05
Message-Id: 20110902070355.092AE2004C@flycatcher.gentoo.org
1 nirbheek 11/09/02 07:03:55
2
3 Modified: ChangeLog
4 Added: libdmapsharing-2.9.12.ebuild
5 Log:
6 Add new slot, for GNOME 3 from the gnome overlay
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 net-libs/libdmapsharing/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdmapsharing/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdmapsharing/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdmapsharing/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libdmapsharing/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 8 Apr 2011 21:51:49 -0000 1.2
24 +++ ChangeLog 2 Sep 2011 07:03:54 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-libs/libdmapsharing
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libdmapsharing/ChangeLog,v 1.2 2011/04/08 21:51:49 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libdmapsharing/ChangeLog,v 1.3 2011/09/02 07:03:54 nirbheek Exp $
30 +
31 +*libdmapsharing-2.9.12 (02 Sep 2011)
32 +
33 + 02 Sep 2011; Nirbheek Chauhan <nirbheek@g.o>
34 + +libdmapsharing-2.9.12.ebuild:
35 + Add new slot, for GNOME 3 from the gnome overlay
36
37 08 Apr 2011; Gilles Dartiguelongue <eva@g.o>
38 libdmapsharing-2.1.13.ebuild, +files/libdmapsharing-2.1.13-build-order.patch,
39
40
41
42 1.1 net-libs/libdmapsharing/libdmapsharing-2.9.12.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdmapsharing/libdmapsharing-2.9.12.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libdmapsharing/libdmapsharing-2.9.12.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libdmapsharing-2.9.12.ebuild
48 ===================================================================
49 # Copyright 1999-2011 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.12.ebuild,v 1.1 2011/09/02 07:03:54 nirbheek Exp $
52
53 EAPI="4"
54
55 DESCRIPTION="A library that implements the DMAP family of protocols"
56 HOMEPAGE="http://www.flyn.org/projects/libdmapsharing"
57 SRC_URI="http://www.flyn.org/projects/${PN}/${P}.tar.gz"
58
59 LICENSE="LGPL-2.1"
60 SLOT="3.0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="doc"
63
64 # Vala/libgee/gtk+:2 is only used when maintainer-mode is enabled
65 # Doesn't seem to be used for anything...
66 # TODO: implement tests (requires dev-libs/check)
67 RDEPEND="
68 dev-libs/glib:2
69 x11-libs/gdk-pixbuf:2
70
71 >=net-dns/avahi-0.6
72 >=net-libs/libsoup-2.32:2.4
73 >=media-libs/gstreamer-0.10:0.10
74 >=media-libs/gst-plugins-base-0.10.24:0.10
75
76 sys-libs/zlib
77 "
78 DEPEND="${RDEPEND}
79 dev-util/pkgconfig
80 doc? ( >=dev-util/gtk-doc-1 )
81 "
82
83 src_prepare() {
84 default
85
86 # Fix documentation sloting
87 sed "s/^\(DOC_MODULE\).*/\1 = ${PN}-${SLOT}/" \
88 -i doc/Makefile.am doc/Makefile.in || die "sed failed"
89 }
90
91 src_configure() {
92 econf --disable-maintainer-mode \
93 --with-mdns=avahi \
94 $(use_enable doc gtk-doc)
95 }
96
97 src_install() {
98 default
99 find "${ED}" -name "*.la" -delete || die "la file removal failed"
100 }