blob: 6f64ba4a02ea496c73e26a82107a8b79a7c3f111 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Fast public domain large integer arithmetic library"
HOMEPAGE="https://www.libtom.net/TomsFastMath/ https://github.com/libtom/tomsfastmath"
SRC_URI="https://github.com/libtom/tomsfastmath/releases/download/v${PV}/tfm-${PV}.tar.xz"
LICENSE="Unlicense"
# Current SONAME is 1
# Please bump when the ABI changes upstream
# Helpful site:
# https://abi-laboratory.pro/index.php?view=timeline&l=tomsfastmath
SLOT="0/1"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
BDEPEND="dev-build/libtool"
PATCHES=(
"${FILESDIR}"/${P}-makefile-fix.patch
"${FILESDIR}"/${PN}-0.13.1-export-fp_isprime_ex.patch
)
_emake() {
# Standard boilerplate
# Upstream use homebrewed makefiles
# Best to use same args for all, for consistency,
# in case behaviour changes (v possible).
emake \
CC="$(tc-getCC)" \
AR="$(tc-getAR)" \
RANLIB="$(tc-getRANLIB)" \
DESTDIR="${ED}" \
LIBPATH="/usr/$(get_libdir)" \
IGNORE_SPEED=1 \
"$@"
}
src_compile() {
_emake -f makefile.shared
}
src_test() {
_emake test_standalone stest rsatest
# We choose to be verbose during the test process
# because the output is quite repetitive with no
# clear demarcation b/t tests
local tests=( test stest rsatest )
local test
for test in "${tests[@]}"; do
einfo "Running test (${test})"
./${test} || die "Test (${test}) failed"
einfo "Completed test (${test})"
done
}
src_install() {
_emake -f makefile.shared install
# Remove unnecessary .la files
find "${ED}" -name '*.la' -delete || die
# Same for static libs
find "${ED}" -name "*.a" -delete || die
}
|