2006-09-13 09:48:58 +02:00
|
|
|
# Copyright 1999-2004 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header$
|
|
|
|
|
2011-09-26 11:12:14 +02:00
|
|
|
inherit python
|
2006-09-13 09:48:58 +02:00
|
|
|
|
|
|
|
DESCRIPTION="An RSS 2.0 generator."
|
|
|
|
MY_P="PyRSS2Gen"
|
|
|
|
HOMEPAGE="http://www.dalkescientific.com/Python/PyRSS2Gen.html"
|
|
|
|
SRC_URI="http://www.dalkescientific.com/Python/PyRSS2Gen-${PV}.tar.gz"
|
|
|
|
KEYWORDS="~x86 ~ppc ~amd64"
|
2011-09-26 11:12:14 +02:00
|
|
|
PYTHON_DEPEND="2"
|
|
|
|
DEPEND=""
|
2006-09-13 09:48:58 +02:00
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0"
|
|
|
|
IUSE=""
|
|
|
|
S="${WORKDIR}/${MY_P}-${PV}"
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
distutils_src_install
|
|
|
|
dodoc README example.py test.py
|
|
|
|
}
|
|
|
|
|