blob: 170bbf2c6a0381703a899c1a434c9801a110075b (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Multivariate pattern analysis with Python"
HOMEPAGE="http://www.pymvpa.org/"
SRC_URI=""
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE="doc examples minimal test"
DEPEND="
dev-lang/swig
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
sys-apps/help2man
doc? (
dev-python/sphinx[${PYTHON_USEDEP}]
media-gfx/graphviz
)
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
RDEPEND="
dev-python/numpy[${PYTHON_USEDEP}]
!minimal? (
dev-python/hcluster
dev-python/ipython[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}]
dev-python/pynifti
dev-python/rpy[${PYTHON_USEDEP}]
sci-libs/afni
sci-libs/fsl
sci-libs/libsvm
sci-libs/scipy
sci-libs/shogun[python] )"
|