blob: bc0de3fec5b8175144a7630e5bc51bb0ad02efa2 (
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
77
78
79
80
81
82
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/flann/flann-1.6.11.ebuild,v 1.4 2011/11/11 20:12:59 vapier Exp $
EAPI=3
PYTHON_DEPEND="python? 2:2.5"
inherit cmake-utils eutils python
DESCRIPTION="Library for performing fast approximate nearest neighbor searches in high dimensional spaces"
HOMEPAGE="http://www.cs.ubc.ca/~mariusm/index.php/FLANN/FLANN/"
SRC_URI="http://people.cs.ubc.ca/~mariusm/uploads/FLANN/${P}-src.zip
test? ( http://dev.gentoo.org/~dilfridge/distfiles/${PN}-1.6.10-testdata.tar.xz )"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc mpi octave python static-libs test"
RDEPEND="sci-libs/hdf5[mpi?]
mpi? ( dev-libs/boost[mpi] )
octave? ( sci-mathematics/octave )
python? ( dev-python/numpy )"
DEPEND="${RDEPEND}
app-arch/unzip
test? ( dev-cpp/gtest )"
S="${WORKDIR}"/${P}-src
src_prepare() {
# bug #302621
has_version sci-libs/hdf5[mpi] && export CXX=mpicxx
# gentoo doc directory respected
sed -i \
-e "s:share/doc/flann:share/doc/${PF}:" \
doc/CMakeLists.txt || die
# python standard installation directory respected
sed -i \
-e "/share/d" \
-e "/COMMAND/s:install:install --root="${ED}" --no-compile:" \
src/python/CMakeLists.txt || die
# produce pure octave files
# octave gentoo installation for .m files respected
sed -i \
-e 's/--mex//' \
-e 's/\.mex/\.oct/' \
-e '/FILES/s/${MEX_FILE}//' \
-e 's:share/flann/octave:share/octave/site/m:' \
-e "/CUSTOM_TARGET/a\INSTALL(FILES \${MEX_FILE} DESTINATION libexec/octave/site/oct/${CHOST})" \
src/matlab/CMakeLists.txt || die
# do not compile examples by default
sed -i \
-e '/add_subdirectory.*examples/d' \
CMakeLists.txt || die
# compile tests only when requested
use test || sed -i -e '/add_subdirectory.*test/d' CMakeLists.txt
# avoid automatic installation of pdf
use doc || sed -i -e '/doc/d' CMakeLists.txt
}
src_configure() {
local mycmakeargs=(
"-DBUILD_C_BINDINGS=ON"
$(cmake-utils_use_build octave MATLAB_BINDINGS)
$(cmake-utils_use_build python PYTHON_BINDINGS)
$(cmake-utils_use_use mpi)
)
cmake-utils_src_configure
}
src_test() {
cd "${CMAKE_BUILD_DIR}"
LD_LIBRARY_PATH="${PWD}/lib" PYTHONPATH="${S}/src/python" \
emake test
}
src_install() {
cmake-utils_src_install
dodoc README.md
use static-libs || find "${ED}" -name 'lib*.a' -exec rm -rf '{}' '+'
}
|