blob: 3083d885aaa13fe08c8dc2b0fcecc406b577b25a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/banshee/banshee-1.5.0.ebuild,v 1.2 2009/06/07 08:55:11 ssuominen Exp $
EAPI=2
inherit eutils mono gnome2-utils fdo-mime versionator
GVER=0.10.7
DESCRIPTION="Import, organize, play, and share your music using a simple and powerful interface."
HOMEPAGE="http://banshee-project.org"
BANSHEE_V2=$(get_version_component_range 2)
[[ $((${BANSHEE_V2} % 2)) -eq 0 ]] && RELTYPE=stable || RELTYPE=unstable
SRC_URI="http://download.banshee-project.org/${PN}/${RELTYPE}/${PV}/${PN}-1-${PV}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="+aac boo daap doc +encode +flac ipod karma +mad mtp podcast test +vorbis"
RDEPEND=">=dev-lang/mono-2
gnome-base/gnome-settings-daemon
x11-themes/gnome-icon-theme
sys-apps/dbus
>=dev-dotnet/gtk-sharp-2.12
>=dev-dotnet/gconf-sharp-2.24.0
>=dev-dotnet/gnome-sharp-2.24.0
>=dev-dotnet/notify-sharp-0.4.0_pre20080912-r1
>=media-libs/gstreamer-0.10.21-r3
>=media-libs/gst-plugins-bad-${GVER}
>=media-libs/gst-plugins-good-${GVER}
>=media-libs/gst-plugins-ugly-${GVER}
>=media-plugins/gst-plugins-alsa-${GVER}
>=media-plugins/gst-plugins-gnomevfs-${GVER}
>=media-plugins/gst-plugins-gconf-${GVER}
|| (
>=media-plugins/gst-plugins-cdparanoia-${GVER}
>=media-plugins/gst-plugins-cdio-${GVER}
)
media-libs/musicbrainz:1
>=dev-dotnet/dbus-glib-sharp-0.4.1
>=dev-dotnet/dbus-sharp-0.6.1a
>=dev-dotnet/mono-addins-0.4[gtk]
>=dev-dotnet/taglib-sharp-2.0.3.2
>=dev-db/sqlite-3.4
karma? ( >=media-libs/libkarma-0.1.0-r1 )
aac? ( >=media-plugins/gst-plugins-faad-${GVER} )
boo? (
>=dev-lang/boo-0.8.1
)
daap? (
>=dev-dotnet/mono-zeroconf-0.8.0-r1
)
doc? (
virtual/monodoc
)
encode? (
>=media-plugins/gst-plugins-lame-${GVER}
>=media-plugins/gst-plugins-taglib-${GVER}
)
flac? (
>=media-plugins/gst-plugins-flac-${GVER}
)
ipod? (
>=dev-dotnet/ipod-sharp-0.8.1
)
mad? (
>=media-plugins/gst-plugins-mad-${GVER}
)
mtp? (
media-libs/libmtp
)
vorbis? (
>=media-plugins/gst-plugins-ogg-${GVER}
>=media-plugins/gst-plugins-vorbis-${GVER}
)"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
DOCS="AUTHORS ChangeLog HACKING NEWS README"
S=${WORKDIR}/${PN}-1-${PV}
src_configure() {
local myconf="--disable-dependency-tracking --disable-static
--enable-gnome --enable-schemas-install
--with-gconf-schema-file-dir=/etc/gconf/schemas
--with-vendor-build-id=Gentoo/${PN}/${PVR}
--disable-torrent
--disable-shave"
econf \
$(use_enable doc docs) \
$(use_enable boo) \
$(use_enable mtp) \
$(use_enable daap) \
$(use_enable ipod) \
$(use_enable podcast) \
$(use_enable karma) \
${myconf}
}
src_compile() {
emake MCS=/usr/bin/gmcs
}
src_install() {
emake DESTDIR="${D}" install || die "emake install efailed"
find "${D}" -name '*.la' -delete
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}
|