Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cvc4/
Date: Tue, 08 Feb 2022 07:44:28
Message-Id: 1644306246.a67e2887fe1c15ec3bbabb3907ce352d1fd24803.tupone@gentoo
1 commit: a67e2887fe1c15ec3bbabb3907ce352d1fd24803
2 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 8 07:44:06 2022 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 8 07:44:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a67e2887
7
8 sci-mathematics/cvc4: remove unused CMake variables
9
10 Closes: https://bugs.gentoo.org/829088
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
13
14 sci-mathematics/cvc4/cvc4-1.8.ebuild | 4 +---
15 1 file changed, 1 insertion(+), 3 deletions(-)
16
17 diff --git a/sci-mathematics/cvc4/cvc4-1.8.ebuild b/sci-mathematics/cvc4/cvc4-1.8.ebuild
18 index 6eb40f393dc6..879bf5675991 100644
19 --- a/sci-mathematics/cvc4/cvc4-1.8.ebuild
20 +++ b/sci-mathematics/cvc4/cvc4-1.8.ebuild
21 @@ -14,7 +14,7 @@ SRC_URI="https://github.com/CVC4/CVC4-archived/archive/refs/tags/${PV}.tar.gz ->
22 LICENSE="GPL-2"
23 SLOT="0"
24 KEYWORDS="~amd64 ~x86"
25 -IUSE="+cln proofs readline replay +statistics"
26 +IUSE="+cln proofs readline +statistics"
27
28 RDEPEND="dev-libs/antlr-c
29 dev-java/antlr:3
30 @@ -33,12 +33,10 @@ src_configure() {
31 local mycmakeargs=(
32 -DANTLR_BINARY=/usr/bin/antlr3
33 -DENABLE_GPL=ON
34 - -DENABLE_OPTIMIZED=ON
35 -DUSE_CLN="$(usex cln ON OFF)"
36 -DUSE_READLINE="$(usex readline ON OFF)"
37 -DENABLE_STATISTICS="$(usex statistics ON OFF)"
38 -DENABLE_PROOFS="$(usex proofs ON OFF)"
39 - -DENABLE_REPLAY="$(usex replay ON OFF)"
40 )
41 cmake_src_configure
42 }