blob: 4b41fa3cbb17217b31013b3cfcbdb5bb23d5880c (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit distutils-r1 flag-o-matic fortran-2
DESCRIPTION="Collection of Python modules for statistical inference"
HOMEPAGE="http://inference.astro.cornell.edu/"
SRC_URI="${HOMEPAGE}/${P}.tar.gz"
SLOT="0"
LICENSE="all-rights-reserved"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="sci-libs/scipy[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}
dev-python/matplotlib[${PYTHON_USEDEP}]"
# buggy tests
RESTRICT="test"
pkg_setup() {
fortran-2_pkg_setup
}
python_prepare_all() {
# The usual numpy.distutils hacks when fortran is used
append-ldflags -shared
append-fflags -fPIC
export NUMPY_FCONFIG="config_fc --noopt --noarch"
distutils-r1_python_prepare_all
}
python_compile() {
distutils-r1_python_compile ${NUMPY_CONFIG}
}
python_test() {
nosetests --verbose --verbosity=3
}
python_install() {
distutils-r1_python_install ${NUMPY_FCONFIG}
}
|