blob: 4ef9837820696df16930e712eb25c188776e27ab (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit cmake-utils git-r3 python-single-r1
DESCRIPTION="Biochemical Algorithms Library"
HOMEPAGE="http://www.ball-project.org/"
SRC_URI=""
EGIT_REPO_URI="http://bitbucket.org/ball/ball.git"
SLOT="0"
LICENSE="LGPL-2 GPL-3"
KEYWORDS=""
IUSE="cuda mpi +python sql test +threads +webkit"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="
dev-cpp/eigen:3
dev-libs/boost
dev-qt/qtcore:4
dev-qt/qtgui:4
dev-qt/qtopengl:4
dev-qt/qttest:4
dev-qt/qtwebkit:4
media-libs/glew:0=
sci-libs/fftw:3.0[threads?]
sci-libs/gsl
sci-libs/libsvm
sci-mathematics/lpsolve
virtual/opengl
x11-libs/libX11
cuda? ( dev-util/nvidia-cuda-toolkit )
mpi? ( virtual/mpi )
python? ( ${PYTHON_DEPS} )
sql? ( dev-qt/qtsql:4 )
webkit? ( dev-qt/qtwebkit:4 )"
DEPEND="${RDEPEND}
dev-python/sip
sys-devel/bison
virtual/yacc"
PATCHES=(
"${FILESDIR}"/${P}-multilib.patch
)
pkg_setup() {
use python && python-single-r1_pkg_setup
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_use threads FFTW_THREADS)
$(cmake-utils_use cuda MT_ENABLE_CUDA)
$(cmake-utils_use mpi MT_ENABLE_MPI)
$(cmake-utils_use sql BALL_HAS_QTSQL)
$(cmake-utils_use_use webkit USE_QTWEBKIT)
$(cmake-utils_use python BALL_PYTHON_SUPPORT)
)
cmake-utils_src_configure
local i
for i in "${S}"/data/*; do
ln -sf "${i}" "${BUILD_DIR}"/source/TEST/ || die
ln -sf "${i}" "${S}"/source/TEST/ || die
done
}
src_compile() {
cmake-utils_src_compile
use test && cmake-utils_src_make build_tests
}
|