blob: 02f715b887a1aaf0b0635d7861515fa4c74ef9d8 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/sonata/sonata-1.1.1.ebuild,v 1.2 2007/06/01 14:34:47 ticho Exp $
inherit distutils
DESCRIPTION="A lightweight music player for MPD, written in Python."
DESCRIPTION="Sonata is an elegant GTK+ music client for the Music Player Daemon (MPD)."
HOMEPAGE="http://sonata.berlios.de/"
SRC_URI="http://download.berlios.de/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc64 ~x86"
SLOT="0"
IUSE="taglib lyrics dbus"
DEPEND=""
RDEPEND=">=virtual/python-2.4
>=dev-python/pygtk-2.10
taglib? ( >=dev-python/tagpy-0.91 )
dbus? ( dev-python/dbus-python )
lyrics? ( dev-python/soappy )"
pkg_setup() {
if ! built_with_use '=x11-libs/gtk+-2*' jpeg; then
echo
ewarn "If you want album cover art displayed in Sonata,"
ewarn "you must build gtk+-2.x with \"jpeg\" USE flag."
echo
ebeep 3
fi
}
src_compile() {
distutils_src_compile
}
src_install() {
distutils_src_install
dodoc COPYING CHANGELOG README TODO TRANSLATORS
}
pkg_postinst() {
python_version
python_mod_optimize /usr/lib/python${PYVER}/site-packages
}
pkg_postrm() {
python_version
python_mod_cleanup
}
|