Gentoo Archives: gentoo-commits

From: "Nirbheek Chauhan (nirbheek)" <nirbheek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/grilo-plugins: grilo-plugins-0.1.17.ebuild ChangeLog grilo-plugins-0.1.15.ebuild
Date: Sat, 01 Oct 2011 16:33:47
Message-Id: 20111001163337.B45D82004B@flycatcher.gentoo.org
1 nirbheek 11/10/01 16:33:37
2
3 Modified: ChangeLog
4 Added: grilo-plugins-0.1.17.ebuild
5 Removed: grilo-plugins-0.1.15.ebuild
6 Log:
7 Bump to 0.1.17, remove old, from gnome overlay
8
9 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.4 media-plugins/grilo-plugins/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/grilo-plugins/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/grilo-plugins/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/grilo-plugins/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-plugins/grilo-plugins/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 14 Aug 2011 10:52:41 -0000 1.3
25 +++ ChangeLog 1 Oct 2011 16:33:37 -0000 1.4
26 @@ -1,6 +1,13 @@
27 # ChangeLog for media-plugins/grilo-plugins
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/grilo-plugins/ChangeLog,v 1.3 2011/08/14 10:52:41 nirbheek Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/grilo-plugins/ChangeLog,v 1.4 2011/10/01 16:33:37 nirbheek Exp $
31 +
32 +*grilo-plugins-0.1.17 (01 Oct 2011)
33 +
34 + 01 Oct 2011; Nirbheek Chauhan <nirbheek@g.o>
35 + -grilo-plugins-0.1.15.ebuild, +grilo-plugins-0.1.17.ebuild,
36 + +files/grilo-plugins-0.1.17-apple-trailers-fix.patch:
37 + Bump to 0.1.17, remove old, from gnome overlay
38
39 *grilo-plugins-0.1.16 (14 Aug 2011)
40
41
42
43
44 1.1 media-plugins/grilo-plugins/grilo-plugins-0.1.17.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/grilo-plugins/grilo-plugins-0.1.17.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/grilo-plugins/grilo-plugins-0.1.17.ebuild?rev=1.1&content-type=text/plain
48
49 Index: grilo-plugins-0.1.17.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-plugins/grilo-plugins/grilo-plugins-0.1.17.ebuild,v 1.1 2011/10/01 16:33:37 nirbheek Exp $
54
55 EAPI="4"
56 GNOME2_LA_PUNT="yes"
57
58 inherit autotools eutils gnome2
59
60 DESCRIPTION="A framework for easy media discovery and browsing"
61 HOMEPAGE="https://live.gnome.org/Grilo"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="+youtube +vimeo upnp"
67
68 RDEPEND="
69 >=dev-libs/glib-2.26:2
70 =media-libs/grilo-${PV}[network]
71
72 || ( dev-libs/gmime:2.6 dev-libs/gmime:2.4 )
73 dev-libs/libxml2:2
74 dev-db/sqlite:3
75
76 youtube? ( >=dev-libs/libgdata-0.7
77 >=media-libs/quvi-0.2.15 )
78 upnp? ( >=net-libs/gupnp-0.13
79 >=net-libs/gupnp-av-0.5 )
80 vimeo? ( net-libs/libsoup:2.4
81 dev-libs/libgcrypt )"
82 DEPEND="${RDEPEND}
83 >=dev-util/pkgconfig-0.9"
84
85 # `make check` doesn't do anything, and ${S}/test/test fails without all plugins
86 RESTRICT="test"
87
88 pkg_setup() {
89 DOCS="AUTHORS NEWS README"
90 # --enable-debug only changes CFLAGS, useless for us
91 G2CONF="${G2CONF}
92 --disable-maintainer-mode
93 --disable-static
94 --disable-debug
95 --disable-uninstalled"
96
97 # Plugins
98 # TODO: Enable tracker support (requires tracker-0.10.5+)
99 # TODO: Enable Blip.TV support (requires librest)
100 G2CONF="${G2CONF}
101 --enable-apple-trailers
102 --enable-bookmarks
103 --enable-filesystem
104 --enable-flickr
105 --enable-gravatar
106 --enable-jamendo
107 --enable-lastfm-albumart
108 --enable-localmetadata
109 --enable-metadata-store
110 --enable-podcasts
111 --disable-bliptv
112 --disable-shoutcast
113 --disable-tracker
114 $(use_enable upnp)
115 $(use_enable youtube)
116 $(use_enable vimeo)"
117 }
118
119 src_prepare() {
120 sed -i -e 's/^\(SUBDIRS .*\)test/\1/g' Makefile.*
121
122 epatch "${FILESDIR}/${P}-apple-trailers-fix.patch"
123
124 eautoreconf
125
126 gnome2_src_prepare
127 }