Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-physics/mbdyn/
Date: Wed, 06 Oct 2021 22:15:45
Message-Id: 1633558537.4f65714107028a14583d4239c051a7673d47a79d.Alessandro-Barbieri@gentoo
1 commit: 4f65714107028a14583d4239c051a7673d47a79d
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Wed Oct 6 14:21:00 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Wed Oct 6 22:15:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4f657141
7
8 sci-physics/mbdyn: fix configure option
9
10 Closes: https://bugs.gentoo.org/816552
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
13
14 sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild | 3 ++-
15 1 file changed, 2 insertions(+), 1 deletion(-)
16
17 diff --git a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
18 index 5750bf3df..6fecb6acb 100644
19 --- a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
20 +++ b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925.ebuild
21 @@ -223,11 +223,12 @@ src_configure() {
22 $(use_with sparse suitesparseqr)
23 $(use_with sparse umfpack)
24 $(use_with superlu)
25 - $(use_with taucs)
26 $(use_with threads)
27 $(use_with y12)
28 )
29
30 + use taucs && myconf+=( "--with-taucs" )
31 +
32 if ( use autodiff && use sparse ); then
33 myconf+=( "--enable-sparse-autodiff" )
34 else