summaryrefslogtreecommitdiff
blob: 0eed74e183957b20432c9c19d67d2fed3f7fe6b9 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
 
inherit distutils
 
DESCRIPTION="A command line podcast receiver that supports downloads via HTTP and BitTorrent"
HOMEPAGE="http://www.peapodpy.org/"
SRC_URI="http://peapodpy.org/downloads/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-2"
SLOT="0"
IUSE="id3 bittorrent vorbis"
 
DEPEND="dev-python/pyxml
        >=dev-python/urlgrabber-2.9.6
        bittorrent? ( >=net-p2p/bittorrent-4.0.0 )
        id3? ( dev-python/eyeD3 )
        vorbis? ( vorbis-tools )"

RDEPEND=${DEPEND}

DOCS="README docs/about.txt docs/configuration.txt docs/dependencies.txt docs/getting.txt docs/using.txt"
 
pkg_postinst() {
        elog "Start by running peapod"
        elog "Then edit the file in .peapod/peapod.xml with the feeds"
        elog "For reference look at /usr/share/doc/${PF}/configuration.txt.gz"
}
 
src_install() {
	distutils_src_install
	use bittorrent || rm -f "${D}/usr/bin/btclient.py"
}