blob: 4e7295b428dc7b6b68c31112cccda954be757f6e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/tpg/tpg-3.1.1.ebuild,v 1.1 2007/07/09 20:11:52 lucass Exp $
inherit distutils
MY_P="TPG-${PV}"
DESCRIPTION="Toy Parser Generator for Python"
HOMEPAGE="http://christophe.delord.free.fr/tpg/index.html"
SRC_URI="http://christophe.delord.free.fr/soft/tpg/${MY_P}.tar.gz"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
IUSE="doc examples"
S="${WORKDIR}/${MY_P}"
src_install() {
distutils_src_install
dodoc THANKS
use doc && dodoc doc/tpg.pdf
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
}
src_test() {
"${python}" tpg_tests.py -v || die "tests failed"
}
|