blob: 841ae9a414da51c2dfdb65e727a509aad0db2b8f (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/pympd/pympd-0.07.ebuild,v 1.7 2008/05/29 17:19:20 hawking Exp $
inherit eutils toolchain-funcs python multilib
DESCRIPTION="a Rhythmbox-like PyGTK+ client for Music Player Daemon"
HOMEPAGE="http://sourceforge.net/projects/pympd"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
IUSE=""
RDEPEND=">=virtual/python-2.4
>=dev-python/pygtk-2.6
x11-themes/gnome-icon-theme"
pkg_setup() {
if ! built_with_use '=x11-libs/gtk+-2*' jpeg; then
echo
ewarn "If you want album cover art displayed in pympd,"
ewarn "you must build gtk+-2.x with \"jpeg\" USE flag."
echo
ebeep 3
fi
}
src_compile() {
# Honor CFLAGS in make.conf
export BUILDFLAGS="${CFLAGS}"
sed -i -e 's:CFLAGS =:CFLAGS = ${BUILDFLAGS}:' src/modules/tray/Makefile
emake CC="$(tc-getCC)" PREFIX="/usr" DESTDIR="${D}" || die "emake failed."
}
src_install() {
# Fix for 'src//glade/../pympd.svg': No such file or directory
sed -i -e 's:\..\/py:/usr/share/pympd/py:g' src/glade/pympd.glade
emake PREFIX="/usr" DESTDIR="${D}" install || die "emake install failed."
dodoc README
}
pkg_postinst() {
python_version
python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/pympd
}
pkg_postrm() {
python_mod_cleanup
}
|