blob: ec85b0275e87e80eba22303df9a115fc1737eedb (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
PYTHON_DEPEND="2:2.6"
SUPPORT_PYTHON_ABIS="1"
inherit bzr distutils
EBZR_REPO_URI="lp:${PN}"
DESCRIPTION="A Pandora Radio (pandora.com) player for the GNOME Desktop"
HOMEPAGE="http://kevinmehall.net/p/pithos/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE="gnome"
DEPEND="dev-python/python-distutils-extra"
RDEPEND="dev-python/pyxdg
dev-python/pygobject:2
dev-python/notify-python
dev-python/pygtk
dev-python/gst-python
dev-python/dbus-python
media-libs/gst-plugins-good
media-libs/gst-plugins-bad
media-plugins/gst-plugins-faad
media-plugins/gst-plugins-soup
gnome? ( gnome-base/gnome-settings-daemon )
!gnome? ( dev-libs/keybinder[python] )"
RESTRICT_PYTHON_ABIS="2.[45] 3.*"
DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1"
src_prepare() {
distutils_src_prepare
# bug #216009
# avoid writing to /root/.gstreamer-0.10/registry.xml
export GST_REGISTRY="${T}"/registry.xml
}
src_install() {
distutils_src_install --prefix="${EPREFIX}/usr"
}
|