blob: c9e6a08b77596a09d3b98d10c9ded6f734873871 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils toolchain-funcs
MY_P=${PN}_${PV}
DESCRIPTION="Exaile is a media player aiming to be similar to KDE's AmaroK, but for GTK"
HOMEPAGE="http://www.exaile.org/"
SRC_URI="http://www.exaile.org/files/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="fam mp3 flac aac trayicon ipod"
DEPEND=">=dev-lang/python-2.4
>=dev-python/pygtk-2.0"
RDEPEND="${DEPEND}
>=dev-python/pysqlite-2
>=media-libs/gstreamer-0.10
>=media-libs/gst-plugins-good-0.10
>=dev-python/gst-python-0.10
>=media-libs/mutagen-1.6
>=media-plugins/gst-plugins-gconf-0.10
sys-apps/dbus
fam? ( app-admin/gamin )
mp3? ( >=media-plugins/gst-plugins-mad-0.10 )
flac? ( >=media-plugins/gst-plugins-flac-0.10 )
aac? ( >=media-plugins/gst-plugins-faac-0.10 )
trayicon? ( dev-python/gnome-python-extras )
ipod? ( >=media-libs/libgpod-0.3.2-r1
>=media-plugins/gst-plugins-faac-0.10 )"
S=${WORKDIR}/${MY_P}
pkg_setup() {
if ! built_with_use sys-apps/dbus python; then
eerror "dbus has to be built with python support"
die "dbus python use-flag not set"
fi
if use ipod && ! built_with_use media-libs/libgpod python ; then
eerror "libgpod has to be built with python support"
die "libgpod python use-flag not set"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
# We want Gentoo's mutagen package
sed -i \
-e '/mutagen/d' \
Makefile || die "sed failed"
}
src_compile() {
emake CC=$(tc-getCC) || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|