blob: 0f2873a9be11677bf775df9f08f35c0b1a72969a (
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
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ply-3.3.ebuild,v 1.3 2010/08/16 16:37:11 djc Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
DESCRIPTION="Python Lex-Yacc library"
HOMEPAGE="http://www.dabeaz.com/ply/ http://pypi.python.org/pypi/ply"
SRC_URI="http://www.dabeaz.com/ply/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
IUSE="examples"
DOCS="ANNOUNCE CHANGES"
src_prepare() {
distutils_src_prepare
sed -e "s/print repr(result)/print(repr(result))/" -i test/testyacc.py || die "sed failed"
}
src_test() {
python_enable_pyc
cd test
testing() {
"$(PYTHON)" testlex.py || return 1
"$(PYTHON)" testyacc.py || return 1
}
python_execute_function testing
python_disable_pyc
}
src_install() {
distutils_src_install
dohtml doc/*
if use examples; then
insinto /usr/share/doc/${PF}
doins -r example
fi
}
|