summaryrefslogtreecommitdiff
path: root/sci-libs/alglib/alglib-3.17.0.ebuild
blob: 1b837edafa87a7b021e4f24b38151b7ada55fff8 (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
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit cmake flag-o-matic

DESCRIPTION="Numerical analysis and data processing library"
HOMEPAGE="https://www.alglib.net/"
SRC_URI="https://www.alglib.net/translator/re/${P}.cpp.gpl.tgz"
S="${WORKDIR}"/cpp

LICENSE="GPL-2+"
SLOT="0/3.8"
KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"

src_prepare() {
	cp "${FILESDIR}"/CMakeLists.txt-3.8.2 CMakeLists.txt || die
	cmake_src_prepare
}

src_configure() {
	use x86 && append-cflags -ffloat-store
	local mycmakeargs=(
		-DBUILD_TEST=$(usex test)
	)
	cmake_src_configure
}