diff options
author | Joonas Niilola <juippis@gentoo.org> | 2020-10-12 15:51:17 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-10-12 15:51:17 +0300 |
commit | 8995ab51a11cd8df60be49303ac9e61234dc9eae (patch) | |
tree | 6406e57fc748d2094ba8bb5b24a485dd61ebddad /sci-physics | |
parent | dev-python/pipenv: bump version to 2020.8.13 (diff) | |
download | gentoo-8995ab51a11cd8df60be49303ac9e61234dc9eae.tar.gz gentoo-8995ab51a11cd8df60be49303ac9e61234dc9eae.tar.bz2 gentoo-8995ab51a11cd8df60be49303ac9e61234dc9eae.zip |
sci-physics/bullet: bring back USE flag for double-precision
- some silent revdeps break with it, still too experimental.
Bug: https://bugs.gentoo.org/747898
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/bullet/bullet-3.05.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sci-physics/bullet/bullet-3.05.ebuild b/sci-physics/bullet/bullet-3.05.ebuild index 1361eaaff579..0ba0a2d387cd 100644 --- a/sci-physics/bullet/bullet-3.05.ebuild +++ b/sci-physics/bullet/bullet-3.05.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/bulletphysics/bullet3/archive/${PV}.tar.gz -> ${P}.t LICENSE="ZLIB" SLOT="0/${PV}" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc examples openmp tbb test threads" +IUSE="doc double-precision examples openmp tbb test threads" REQUIRED_USE=" openmp? ( threads ) @@ -60,7 +60,7 @@ src_configure() { -DINSTALL_LIBS=ON -DBUILD_BULLET3=ON -DBUILD_EXTRAS=OFF - -DUSE_DOUBLE_PRECISION=ON + -DUSE_DOUBLE_PRECISION=$(usex double-precision) -DBUILD_UNIT_TESTS=$(usex test) -DBULLET2_MULTITHREADING=$(usex threads) -DBULLET2_USE_OPEN_MP_MULTITHREADING=$(usex openmp) |