blob: 43b4d00a1a6655f36c94c660d1ab399adadc56e7 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="A simple podcast aggregator written in Perl"
HOMEPAGE="http://savannah.nongnu.org/goldenpod/"
SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="gtk2"
RDEPEND="gtk2? ( dev-perl/gtk-perl )
dev-lang/perl
net-misc/curl"
src_install() {
dodoc AUTHORS COPYING NEWS README TODO
dobin goldenpod
if use gtk2; then
dobin gpconf
fi
doman goldenpod.1
}
|