blob: 1db72bf2c4f76c134597386b31583f23de4fe6f7 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/gpodder/gpodder-0.13.1.ebuild,v 1.1 2008/11/14 11:17:55 hanno Exp $
inherit distutils
DESCRIPTION="gPodder is a Podcast receiver/catcher written in Python, using GTK."
HOMEPAGE="http://gpodder.berlios.de/"
SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ipod libnotify"
RESTRICT="test"
RDEPEND="dev-python/feedparser
dev-python/pygtk
sys-devel/gettext
libnotify? ( dev-python/notify-python )
>=dev-python/pysqlite-2.4
dev-python/eyeD3
ipod? (
media-libs/libgpod
)"
DEPEND="${RDEPEND}
dev-util/intltool
media-gfx/imagemagick
sys-apps/help2man"
pkg_setup() {
if use ipod && ! built_with_use media-libs/libgpod python ; then
eerror "media-libs/libgpod has to be compiled with USE=python"
die "Needed USE-flag for libgpod not found."
fi
if ! built_with_use 'media-gfx/imagemagick' 'png'; then
eerror "You must build imagemagick with png support"
die "media-gfx/imagemagick built without png"
fi
}
src_compile() {
emake generators || die
emake messages || die
distutils_src_compile || die
}
|