blob: 6fd7a28e41f491fcfd018fec492d60557a8bf9da (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit distutils subversion
DESCRIPTION="Binding to RXP, a very fast validating XML parser."
HOMEPAGE="http://www.reportlab.org/pyrxp.html"
ESVN_REPO_URI="http://svn.reportlab.com/svn/public/${PN}/trunk/src"
LICENSE="as-is"
SLOT="0"
KEYWORDS=""
IUSE="doc examples"
DOCS="README"
src_install() {
if use doc;then
DOCS="${DOCS} docs/*"
fi
distutils_src_install
if use examples;then
docinto examples
dodoc examples/* || die "dodoc examples code failed"
fi
}
|