blob: 6af31d7de5cee00471a5e0444d61a1cd57088fc4 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/exaile/exaile-0.3.0.ebuild,v 1.1 2009/08/27 19:32:13 ssuominen Exp $
EAPI=2
inherit eutils fdo-mime multilib python
DESCRIPTION="a media player aiming to be similar to AmaroK, but for GTK+"
HOMEPAGE="http://www.exaile.org"
SRC_URI="http://www.launchpad.net/${PN}/${PV}/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-2 GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="cddb doc hal libnotify +libsexy nls"
RDEPEND="dev-python/dbus-python
>=media-libs/mutagen-1.10
>=dev-python/pygtk-2.12
>=dev-lang/python-2.5[sqlite]
dev-python/gst-python:0.10
media-libs/gst-plugins-good:0.10
media-plugins/gst-plugins-meta:0.10
libnotify? ( dev-python/notify-python )
libsexy? ( dev-python/sexy-python )
hal? ( sys-apps/hal )
cddb? ( dev-python/cddb-py )"
DEPEND="doc? ( dev-python/sphinx )
nls? ( dev-util/intltool
sys-devel/gettext )"
src_prepare() {
epatch "${FILESDIR}"/${P}-Makefile.patch \
"${FILESDIR}"/${P}-Makefile-2.patch
}
src_compile() {
if use nls; then
emake locale || die "emake translations failed"
fi
if use doc; then
cd doc
emake html || die "emake html failed"
fi
}
src_install() {
local _no_locale
use nls || _no_locale=_no_locale
emake PREFIX="/usr" LIBINSTALLDIR="/$(get_libdir)" DESTDIR="${D}" \
install${_no_locale} || die "emake install failed"
dodoc README || die "dodoc failed"
if use doc; then
dohtml -r doc/_build/html/* || die "dohtml failed"
fi
insinto /usr/share/exaile/data
doins -r data/migrations || die "doins failed"
}
pkg_postinst() {
python_need_rebuild
python_mod_optimize /usr/$(get_libdir)/${PN}
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
}
pkg_postrm() {
python_mod_cleanup /usr/$(get_libdir)/${PN}
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
}
|