summaryrefslogtreecommitdiff
blob: d77a2ea6aaa1ecd3fb8a2223d41da41cdd14d4b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6

DESCRIPTION="automatic theorem prover for satisfiability modulo theories (SMT) problems"
HOMEPAGE="http://cvc4.cs.stanford.edu/web/"
SRC_URI="http://cvc4.cs.stanford.edu/downloads/builds/src/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+cln"

RDEPEND="dev-libs/antlr-c
	dev-libs/boost
	cln? ( sci-libs/cln )
	!cln? ( dev-libs/gmp:= )"
DEPEND="${RDEPEND}"

src_configure() {
	econf --enable-gpl \
		$(use_with cln)
}