summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-mathematics/yices2/yices2-2.6.4.ebuild')
-rw-r--r--sci-mathematics/yices2/yices2-2.6.4.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/sci-mathematics/yices2/yices2-2.6.4.ebuild b/sci-mathematics/yices2/yices2-2.6.4.ebuild
deleted file mode 100644
index 8fcf3fcb619b..000000000000
--- a/sci-mathematics/yices2/yices2-2.6.4.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="SMT Solver supporting SMT-LIB and Yices specification language"
-HOMEPAGE="https://github.com/SRI-CSL/yices2/"
-SRC_URI="https://github.com/SRI-CSL/${PN}/archive/Yices-${PV}.tar.gz"
-S="${WORKDIR}"/${PN}-Yices-${PV}
-
-LICENSE="GPL-3+"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="+mcsat"
-
-RDEPEND="
- dev-libs/gmp:=
- mcsat? (
- sci-mathematics/libpoly:=
- sci-mathematics/cudd:=
- )
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( FAQ.md README.md )
-
-src_prepare() {
- default
-
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable mcsat)
-}
-
-src_compile() {
- emake STRIP=echo
-}
-
-src_install() {
- default
-
- doman doc/*.1
-}