Gentoo Archives: gentoo-commits

From: "Arun Raghavan (ford_prefect)" <ford_prefect@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/banshee-community-extensions: metadata.xml ChangeLog banshee-community-extensions-1.5.4.ebuild
Date: Fri, 26 Feb 2010 06:29:58
Message-Id: E1Nkthx-0005x7-Pu@stork.gentoo.org
1 ford_prefect 10/02/26 06:29:53
2
3 Added: metadata.xml ChangeLog
4 banshee-community-extensions-1.5.4.ebuild
5 Log:
6 Initial commit. This brings in several community extensions for Banshee and supercedes media-plugins/banshee-lyrics and media-plugins/banshee-mirage for the 1.5.x series.
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-plugins/banshee-community-extensions/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/banshee-community-extensions/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/banshee-community-extensions/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>dotnet</herd>
21 <herd>gstreamer</herd>
22 <use>
23 <flag name="lirc">Enable the remote control plugin (uses
24 <pkg>app-misc/lirc</pkg>)</flag>
25 <flag name="lyrics">Enable support for automatically fetching
26 lyrics</flag>
27 <flag name="mirage">Enable the Mirage plugin which automatically, and
28 intelligently generates playlists for you</flag>
29 </use>
30 </pkgmetadata>
31
32
33
34 1.1 media-plugins/banshee-community-extensions/ChangeLog
35
36 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/banshee-community-extensions/ChangeLog?rev=1.1&view=markup
37 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/banshee-community-extensions/ChangeLog?rev=1.1&content-type=text/plain
38
39 Index: ChangeLog
40 ===================================================================
41 # ChangeLog for media-plugins/banshee-community-extensions
42 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
43 # $Header: /var/cvsroot/gentoo-x86/media-plugins/banshee-community-extensions/ChangeLog,v 1.1 2010/02/26 06:29:52 ford_prefect Exp $
44
45 *banshee-community-extensions-1.5.4 (26 Feb 2010)
46
47 26 Feb 2010; Arun Raghavan <ford_prefect@g.o>
48 +banshee-community-extensions-1.5.4.ebuild, +metadata.xml:
49 Initial commit. This brings in several community extensions for Banshee
50 and supercedes media-plugins/banshee-lyrics and
51 media-plugins/banshee-mirage for the 1.5.x series.
52
53
54
55
56 1.1 media-plugins/banshee-community-extensions/banshee-community-extensions-1.5.4.ebuild
57
58 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/banshee-community-extensions/banshee-community-extensions-1.5.4.ebuild?rev=1.1&view=markup
59 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/banshee-community-extensions/banshee-community-extensions-1.5.4.ebuild?rev=1.1&content-type=text/plain
60
61 Index: banshee-community-extensions-1.5.4.ebuild
62 ===================================================================
63 # Copyright 1999-2010 Gentoo Foundation
64 # Distributed under the terms of the GNU General Public License v2
65 # $Header: /var/cvsroot/gentoo-x86/media-plugins/banshee-community-extensions/banshee-community-extensions-1.5.4.ebuild,v 1.1 2010/02/26 06:29:52 ford_prefect Exp $
66
67 EAPI=3
68
69 inherit base mono
70
71 DESCRIPTION="Community-developed plugins for the Banshee media player"
72 HOMEPAGE="http://banshee-project.org/"
73 SRC_URI="http://download.banshee-project.org/${PN}/${PV}/${P}.tar.bz2"
74
75 LICENSE="MIT"
76 SLOT="0"
77 KEYWORDS="~amd64 ~x86"
78 IUSE="lirc lyrics mirage"
79
80 DEPEND=">=dev-lang/mono-2.0
81 >=media-sound/banshee-1.5.3
82 >=gnome-base/gconf-2.0
83 lyrics? (
84 dev-dotnet/gconf-sharp:2
85 >=dev-dotnet/webkit-sharp-0.2
86 )
87 mirage? (
88 dev-libs/glib:2
89 dev-db/sqlite:3
90 sci-libs/fftw:3.0
91 media-libs/libsamplerate
92 >=media-libs/gstreamer-0.10.15
93 >=media-libs/gst-plugins-base-0.10.15
94 )"
95 RDEPEND="${DEPEND}
96 !media-plugins/banshee-lyrics
97 !media-plugins/banshee-mirage"
98
99 src_configure() {
100 # Disable ClutterFlow as we don't have clutter in tree yet
101 local myconf="--enable-gnome --disable-static --enable-release
102 --with-gconf-schema-file-dir=/etc/gconf/schemas
103 --with-vendor-build-id=Gentoo/${PN}/${PVR}
104 --disable-clutterflow --enable-liveradio"
105
106 econf \
107 $(use_enable lirc) \
108 $(use_enable lyrics) \
109 $(use_enable mirage) \
110 ${myconf}
111 }
112
113 src_install() {
114 base_src_install
115 }