blob: b3680a7396b0590312167498977c34d7cf1b9af5 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit cmake-utils eutils
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[lapack]"
DEPEND="${DEPEND}
app-text/txt2man
doc? ( app-doc/doxygen )"
DOCS=( HISTORY.txt )
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.0.4-libdir.patch
sed -i \
-e "s:share/doc/mlpack:share/doc/${PF}:" \
-e 's/-O3//g' \
CMakeLists.txt || 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
}
|