blob: c3c2e0e36d48d012b4c789637db4261e04595060 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psyco/psyco-1.6.ebuild,v 1.2 2009/10/11 08:37:06 grobian Exp $
inherit distutils
DESCRIPTION="Python extension module which can massively speed up the execution of any Python code."
HOMEPAGE="http://psyco.sourceforge.net/"
SRC_URI="mirror://sourceforge/psyco/${P}-src.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86 ~x86-linux"
IUSE="examples"
DEPEND=""
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
# whrandom is deprecated in python-2.4
# and removed in 2.5
sed -i \
-e "s/whrandom/random/g" \
test/life.py test/life-psyco.py || die "sed failed"
}
src_install() {
distutils_src_install
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins test/bpnn.py test/life.py test/life-psyco.py test/pystone.py
fi
}
src_test() {
cd "${S}/test"
PYTHONPATH="$(ls -d ../build/lib.*)" "${python}" test_base.py || die "tests failed"
}
|