Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/bullet/
Date: Mon, 12 Oct 2020 12:51:48
Message-Id: 1602507077.8995ab51a11cd8df60be49303ac9e61234dc9eae.juippis@gentoo
1 commit: 8995ab51a11cd8df60be49303ac9e61234dc9eae
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 12 12:51:17 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 12 12:51:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8995ab51
7
8 sci-physics/bullet: bring back USE flag for double-precision
9
10 - some silent revdeps break with it, still too experimental.
11
12 Bug: https://bugs.gentoo.org/747898
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 sci-physics/bullet/bullet-3.05.ebuild | 4 ++--
16 1 file changed, 2 insertions(+), 2 deletions(-)
17
18 diff --git a/sci-physics/bullet/bullet-3.05.ebuild b/sci-physics/bullet/bullet-3.05.ebuild
19 index 1361eaaff57..0ba0a2d387c 100644
20 --- a/sci-physics/bullet/bullet-3.05.ebuild
21 +++ b/sci-physics/bullet/bullet-3.05.ebuild
22 @@ -12,7 +12,7 @@ SRC_URI="https://github.com/bulletphysics/bullet3/archive/${PV}.tar.gz -> ${P}.t
23 LICENSE="ZLIB"
24 SLOT="0/${PV}"
25 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
26 -IUSE="doc examples openmp tbb test threads"
27 +IUSE="doc double-precision examples openmp tbb test threads"
28
29 REQUIRED_USE="
30 openmp? ( threads )
31 @@ -60,7 +60,7 @@ src_configure() {
32 -DINSTALL_LIBS=ON
33 -DBUILD_BULLET3=ON
34 -DBUILD_EXTRAS=OFF
35 - -DUSE_DOUBLE_PRECISION=ON
36 + -DUSE_DOUBLE_PRECISION=$(usex double-precision)
37 -DBUILD_UNIT_TESTS=$(usex test)
38 -DBULLET2_MULTITHREADING=$(usex threads)
39 -DBULLET2_USE_OPEN_MP_MULTITHREADING=$(usex openmp)