blob: e2729c65c384142446ebb47dc6d9313497e346f0 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit cmake-utils eutils toolchain-funcs
DESCRIPTION="Levenberg-Marquardt nonlinear least squares C library"
HOMEPAGE="https://www.ics.forth.gr/~lourakis/levmar/"
SRC_URI="https://www.ics.forth.gr/~lourakis/levmar/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
virtual/blas
virtual/lapack"
DEPEND="${RDEPEND}
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-shared.patch
"${FILESDIR}"/${P}-demo-underlinking.patch
)
src_configure() {
local mycmakeargs+=(
-DNEED_F2C=OFF
-DHAVE_LAPACK=ON
-DLAPACKBLAS_LIB_NAMES="$($(tc-getPKG_CONFIG) --libs blas lapack)"
$(cmake-utils_use test BUILD_DEMO)
)
cmake-utils_src_configure
}
src_test() {
cd ${CMAKE_BUILD_DIR}
./lmdemo || die
}
src_install() {
dolib.so ${CMAKE_BUILD_DIR}/liblevmar.so
insinto /usr/include
doins levmar.h
}
|