blob: 04130cc91cef8404f2f924ec14b6db3787d712f4 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit cmake-utils eutils toolchain-funcs
DESCRIPTION="Scalable c++ machine learning library"
HOMEPAGE="http://www.mlpack.org/"
SRC_URI="http://www.mlpack.org/files/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debug doc"
RDEPEND="
dev-libs/boost
dev-libs/libxml2
>=sci-libs/armadillo-3.6.0[lapack]"
DEPEND="${DEPEND}
app-text/txt2man
virtual/pkgconfig
doc? ( app-doc/doxygen )"
DOCS=( HISTORY.txt )
src_prepare() {
epatch \
"${FILESDIR}/${PN}-1.0.4-libdir.patch" \
"${FILESDIR}/${PN}-1.0.8-uint32_t.patch"
sed -i \
-e "s:share/doc/mlpack:share/doc/${PF}:" \
-e 's/-O3//g' \
CMakeLists.txt || die
sed -i \
-e "s|\(set(ARMADILLO_LIBRARIES\)|\1 $($(tc-getPKG_CONFIG) --libs blas lapack)|" \
CMake/FindArmadillo.cmake || die
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use debug DEBUG)
$(cmake-utils_use debug PROFILE)
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile all $(use doc && echo doc)
}
src_test() {
emake -C "${BUILD_DIR}" test
}
|