summaryrefslogtreecommitdiff
blob: 262850a3f822c429aa770aee473263b1846c4b9d (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit distutils

MY_PN=Genshi
MY_P=${MY_PN}-${PV}

DESCRIPTION="Python toolkit for stream-based generation of output for the web"
HOMEPAGE="http://genshi.edgewall.org"
SRC_URI="http://ftp.edgewall.com/pub/${PN}/${MY_P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND=""
RDEPEND=""

S=${WORKDIR}/${MY_P}

DOCS="INSTALL.txt README.txt UPGRADE.txt"

src_install(){

	distutils_src_install

	dohtml -r doc/*
	dodoc doc/*.txt
	insinto /usr/share/doc/${PF}
	doins -r examples || die "doins failed"
}

src_test() {
	${python} setup.py test || die "test failed"
}