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: Wed, 18 Jul 2018 06:29:13
Message-Id: 1531895328.ed51ccdb299c48d49d8750b05299431723016732.tupone@gentoo
1 commit: ed51ccdb299c48d49d8750b05299431723016732
2 Author: Tupone Alfredo <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 18 06:28:48 2018 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 18 06:28:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed51ccdb
7
8 sci-mathematics/cvc4: Add cvc4 to the tree
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 sci-mathematics/cvc4/Manifest | 1 +
13 sci-mathematics/cvc4/cvc4-1.6.ebuild | 24 ++++++++++++++++++++++++
14 sci-mathematics/cvc4/metadata.xml | 17 +++++++++++++++++
15 3 files changed, 42 insertions(+)
16
17 diff --git a/sci-mathematics/cvc4/Manifest b/sci-mathematics/cvc4/Manifest
18 new file mode 100644
19 index 00000000000..2b268f2188b
20 --- /dev/null
21 +++ b/sci-mathematics/cvc4/Manifest
22 @@ -0,0 +1 @@
23 +DIST cvc4-1.6.tar.gz 7815893 BLAKE2B 626e0dd49f911384e64d7e8ecf635aa12dad32830b2032bdcb96afd1a17c3566f56df51f75e9193cf365b562855733d0ea4ff3311ac99fc86e928a956298d2ad SHA512 0887b3f74a4b9e51e634591c7cf39d730110ca5d930149bab4816a49e383eeea8ccadf8474d22f5529cc03ddd045acacf8a2b92434b882adf352f4de4075fcd4
24
25 diff --git a/sci-mathematics/cvc4/cvc4-1.6.ebuild b/sci-mathematics/cvc4/cvc4-1.6.ebuild
26 new file mode 100644
27 index 00000000000..1500f9d338d
28 --- /dev/null
29 +++ b/sci-mathematics/cvc4/cvc4-1.6.ebuild
30 @@ -0,0 +1,24 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +DESCRIPTION="automatic theorem prover for satisfiability modulo theories (SMT) problems"
37 +HOMEPAGE="http://cvc4.cs.stanford.edu/web/"
38 +SRC_URI="http://cvc4.cs.stanford.edu/downloads/builds/src/${P}.tar.gz"
39 +
40 +LICENSE="GPL-2"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="+cln"
44 +
45 +RDEPEND="dev-libs/antlr-c
46 + dev-libs/boost
47 + cln? ( sci-libs/cln )
48 + !cln? ( dev-libs/gmp:= )"
49 +DEPEND="${RDEPEND}"
50 +
51 +src_configure () {
52 + econf --enable-gpl \
53 + $(use_with cln)
54 +}
55
56 diff --git a/sci-mathematics/cvc4/metadata.xml b/sci-mathematics/cvc4/metadata.xml
57 new file mode 100644
58 index 00000000000..d1a299673f8
59 --- /dev/null
60 +++ b/sci-mathematics/cvc4/metadata.xml
61 @@ -0,0 +1,17 @@
62 +<?xml version="1.0" encoding="UTF-8"?>
63 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
64 +<pkgmetadata>
65 + <maintainer type="person">
66 + <email>tupone@g.o</email>
67 + <name>Tupone Alfredo</name>
68 + </maintainer>
69 + <use>
70 + <flag name="cln">Use sci-libs/cln</flag>
71 + </use>
72 + <longdescription lang="en">
73 + CVC4 is an efficient open-source automatic theorem prover for
74 + satisfiability modulo theories (SMT) problems. It can be used to prove
75 + the validity (or, dually, the satisfiability) of first-order formulas
76 + in a large number of built-in logical theories and their combination.
77 + </longdescription>
78 +</pkgmetadata>