24 lines
534 B
Bash
24 lines
534 B
Bash
# Copyright 1999-2004 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header$
|
|
|
|
inherit distutils
|
|
|
|
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"
|
|
DEPEND="virtual/python"
|
|
RDEPEND="${DEPEND}"
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
IUSE=""
|
|
S="${WORKDIR}/${MY_P}-${PV}"
|
|
|
|
src_install() {
|
|
distutils_src_install
|
|
dodoc README example.py test.py
|
|
}
|
|
|