From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1101364-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 4A4B4138334
	for <garchives@archives.gentoo.org>; Tue, 23 Jul 2019 13:20:55 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 4DB2EE0863;
	Tue, 23 Jul 2019 13:20:54 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 3236BE0863
	for <gentoo-commits@lists.gentoo.org>; Tue, 23 Jul 2019 13:20:54 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id C4DEA3484B0
	for <gentoo-commits@lists.gentoo.org>; Tue, 23 Jul 2019 13:20:52 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C8484D4
	for <gentoo-commits@lists.gentoo.org>; Tue, 23 Jul 2019 13:20:50 +0000 (UTC)
From: "Alfredo Tupone" <tupone@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" <tupone@gentoo.org>
Message-ID: <1563888029.d72e9b862cbc9ccfabd0df7f53e7fe7664d22ae9.tupone@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cvc4/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sci-mathematics/cvc4/cvc4-1.7.ebuild sci-mathematics/cvc4/metadata.xml
X-VCS-Directories: sci-mathematics/cvc4/
X-VCS-Committer: tupone
X-VCS-Committer-Name: Alfredo Tupone
X-VCS-Revision: d72e9b862cbc9ccfabd0df7f53e7fe7664d22ae9
X-VCS-Branch: master
Date: Tue, 23 Jul 2019 13:20:50 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 3bd7459c-0bc0-47a2-b367-eeb473bf5d0d
X-Archives-Hash: 64188dd49d9b3e87669611ff76cd4a3b

commit:     d72e9b862cbc9ccfabd0df7f53e7fe7664d22ae9
Author:     Tupone Alfredo <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 23 13:20:29 2019 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Jul 23 13:20:29 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d72e9b86

sci-mathematics/cvc4: add statistics, replay and proofs use flag

Closes: https://github.com/gentoo/gentoo/pull/12520
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 sci-mathematics/cvc4/cvc4-1.7.ebuild | 6 +++++-
 sci-mathematics/cvc4/metadata.xml    | 3 +++
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/sci-mathematics/cvc4/cvc4-1.7.ebuild b/sci-mathematics/cvc4/cvc4-1.7.ebuild
index 0b192f12739..cc6e6eb4f4f 100644
--- a/sci-mathematics/cvc4/cvc4-1.7.ebuild
+++ b/sci-mathematics/cvc4/cvc4-1.7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/CVC4/CVC4/archive/${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="+cln"
+IUSE="+cln +statistics proofs replay"
 
 RDEPEND="dev-libs/antlr-c
 	dev-java/antlr:3
@@ -30,7 +30,11 @@ src_configure() {
 	local mycmakeargs=(
 		-DANTLR_BINARY=/usr/bin/antlr3
 		-DENABLE_GPL=ON
+		-DENABLE_OPTIMIZED=ON
 		-DUSE_CLN="$(usex cln ON OFF)"
+		-DENABLE_STATISTICS="$(usex statistics ON OFF)"
+		-DENABLE_PROOFS="$(usex proofs ON OFF)"
+		-DENABLE_REPLAY="$(usex replay ON OFF)"
 	)
 	cmake-utils_src_configure
 }

diff --git a/sci-mathematics/cvc4/metadata.xml b/sci-mathematics/cvc4/metadata.xml
index d1a299673f8..8ab072c9051 100644
--- a/sci-mathematics/cvc4/metadata.xml
+++ b/sci-mathematics/cvc4/metadata.xml
@@ -7,6 +7,9 @@
 	</maintainer>
 	<use>
 		<flag name="cln">Use sci-libs/cln</flag>
+		<flag name="statistics">Include statistics</flag>
+		<flag name="replay">Turn on the replay feature</flag>
+		<flag name="proofs">Support for proof generation</flag>
 	</use>
 	<longdescription lang="en">
 		CVC4 is an efficient open-source automatic theorem prover for