blob: 6d7c604056cd43e9a77206ed8f40655c23141b1c (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
CMAKE_BUILD_TYPE=Release
inherit cmake
DESCRIPTION="C library for arbitrary-precision interval arithmetic"
HOMEPAGE="https://fredrikj.net/arb/"
SRC_URI="https://github.com/fredrik-johansson/arb/archive/${PV}.tar.gz -> ${P}.tar.gz"
IUSE="test"
RESTRICT="!test? ( test )"
LICENSE="GPL-2+"
SLOT="0/2"
KEYWORDS="amd64 ~arm ~arm64 ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
RDEPEND="
dev-libs/gmp:0=
dev-libs/mpfr:0=
sci-mathematics/flint:="
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${P}-gamma_fmpq-testfix.patch"
"${FILESDIR}/${P}-qa-warning-fix.patch"
)
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING="$(usex test)"
)
cmake_src_configure
}
|