blob: 848cd8a70d8aeffb774d3768b327d4dc1dc4690a (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/sonata/sonata-1.6.2.1.ebuild,v 1.4 2010/05/25 20:55:53 angelos Exp $
EAPI=2
PYTHON_DEPEND="2:2.5"
inherit distutils
DESCRIPTION="an elegant GTK+ music client for the Music Player Daemon (MPD)."
HOMEPAGE="http://sonata.berlios.de/"
SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~ppc ~ppc64 sparc x86"
IUSE="dbus lyrics taglib +trayicon"
RDEPEND=">=dev-python/pygtk-2.12
>=x11-libs/gtk+-2:2[jpeg]
>=dev-python/python-mpd-0.2.1
dbus? ( dev-python/dbus-python )
lyrics? ( dev-python/zsi )
taglib? ( >=dev-python/tagpy-0.93 )
trayicon? ( dev-python/egg-python )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
DOCS="CHANGELOG README TODO TRANSLATORS"
pkg_setup() {
python_set_active_version 2
}
src_install() {
distutils_src_install
rm -rf "${D}"/usr/share/sonata
}
|