blob: 1cd4682865bdd2cd807eda24d935e99efb7402a6 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{3,4} )
inherit distutils-r1 fortran-2 flag-o-matic
DESCRIPTION="Feed-forward neural network for python"
HOMEPAGE="http://ffnet.sourceforge.net/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="LGPL-3"
KEYWORDS="~x86 ~amd64"
IUSE="examples matplotlib"
DEPEND="${PYTHON_DEPS}
dev-python/networkx[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
sci-libs/scipy[${PYTHON_USEDEP}]
matplotlib? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
RDEPEND="${DEPEND}"
python_prepare_all() {
export FCONFIG="config_fc --noopt --noarch"
append-ldflags -shared
append-fflags -fPIC
distutils-r1_python_prepare_all
}
src_compile() {
distutils-r1_src_compile ${FCONFIG}
}
python_install_all() {
distutils-r1_python_install_all
use examples && dodoc -r examples
}
|