blob: 59d53ccde80807acac8406ff901ea1d8bfb637fe (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/gmpy/gmpy-1.12.ebuild,v 1.3 2010/09/21 20:29:14 hwoarang Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
DESCRIPTION="Python bindings for GMP library"
HOMEPAGE="http://www.aleax.it/gmpy.html http://code.google.com/p/gmpy/ http://pypi.python.org/pypi/gmpy"
SRC_URI="http://${PN}.googlecode.com/files/${P}.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~ia64 x86"
IUSE=""
RDEPEND="dev-libs/gmp"
DEPEND="${RDEPEND}
app-arch/unzip"
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
DISTUTILS_SETUP_FILES=("setup.py" "setes.py")
src_test() {
testing() {
if [[ "${PYTHON_ABI}" == 3.* ]]; then
pushd test3 > /dev/null
else
pushd test > /dev/null
fi
PYTHONPATH="$(ls -d ../build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" gmpy_test.py || return 1
popd > /dev/null
}
python_execute_function testing
}
src_install() {
distutils_src_install
dohtml doc/index.html
dodoc doc/gmpydoc.txt
}
|