blob: 53812a43e57a092f17c38262bd1683ad77c17489 (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake-multilib toolchain-funcs
Sparse_PV="7.0.0"
Sparse_P="SuiteSparse-${Sparse_PV}"
DESCRIPTION="Multithreaded multifrontal sparse QR factorization library"
HOMEPAGE="https://people.engr.tamu.edu/davis/suitesparse.html"
SRC_URI="https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/refs/tags/v${Sparse_PV}.tar.gz -> ${Sparse_P}.gh.tar.gz"
LICENSE="GPL-2+"
SLOT="0/3"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="doc openmp test"
RESTRICT="!test? ( test )"
DEPEND=">=sci-libs/suitesparseconfig-${Sparse_PV}
>=sci-libs/amd-3.0.3
>=sci-libs/colamd-3.0.3
>=sci-libs/cholmod-4.0.3
virtual/blas"
RDEPEND="${DEPEND}"
BDEPEND="doc? ( virtual/latex-base )"
S="${WORKDIR}/${Sparse_P}/${PN^^}"
pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
}
pkg_setup() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
}
multilib_src_configure() {
local mycmakeargs=(
-DNSTATIC=ON
-DNOPENMP=$(usex openmp OFF ON)
-DDEMO=$(usex test)
)
cmake_src_configure
}
multilib_src_test() {
# Run demo files
./qrsimple < "${S}"/Matrix/ash219.mtx || die "failed testing"
./qrsimplec < "${S}"/Matrix/ash219.mtx || die "failed testing"
./qrsimple < "${S}"/Matrix/west0067.mtx || die "failed testing"
./qrsimplec < "${S}"/Matrix/west0067.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/a2.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/r2.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/a04.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/a2.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/west0067.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/c2.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/a0.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/lfat5b.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/bfwa62.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/LFAT5.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/b1_ss.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/bcspwr01.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/lpi_galenet.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/lpi_itest6.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/ash219.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/a4.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/s32.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/c32.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/lp_share1b.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/a1.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/GD06_theory.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/GD01_b.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/Tina_AskCal_perm.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/Tina_AskCal.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/GD98_a.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/Ragusa16.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/young1c.mtx || die "failed testing"
./qrdemo < "${S}"/Matrix/lp_e226_transposed.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/a2.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/r2.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/a04.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/a2.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/west0067.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/c2.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/a0.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/lfat5b.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/bfwa62.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/LFAT5.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/b1_ss.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/bcspwr01.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/lpi_galenet.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/lpi_itest6.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/ash219.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/a4.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/s32.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/c32.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/lp_share1b.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/a1.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/GD06_theory.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/GD01_b.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/Tina_AskCal_perm.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/Tina_AskCal.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/GD98_a.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/Ragusa16.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/young1c.mtx || die "failed testing"
./qrdemoc < "${S}"/Matrix/lp_e226_transposed.mtx || die "failed testing"
}
multilib_src_install() {
if use doc; then
pushd "${S}/Doc"
emake clean
rm -rf *.pdf
emake
popd
DOCS="${S}/Doc/*.pdf"
fi
cmake_src_install
}
|