From d7f3217ec85f5d56436c755de99b5c1938c3f547 Mon Sep 17 00:00:00 2001 From: Maciej Barć Date: Sat, 14 Jan 2023 03:24:15 +0100 Subject: sci-mathematics/yices2: do not install static libs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/890758 Signed-off-by: Maciej Barć --- sci-mathematics/yices2/yices2-2.6.4-r1.ebuild | 49 +++++++++++++++++++++++++++ sci-mathematics/yices2/yices2-2.6.4.ebuild | 47 ------------------------- 2 files changed, 49 insertions(+), 47 deletions(-) create mode 100644 sci-mathematics/yices2/yices2-2.6.4-r1.ebuild delete mode 100644 sci-mathematics/yices2/yices2-2.6.4.ebuild (limited to 'sci-mathematics') diff --git a/sci-mathematics/yices2/yices2-2.6.4-r1.ebuild b/sci-mathematics/yices2/yices2-2.6.4-r1.ebuild new file mode 100644 index 000000000000..5d2d356eb014 --- /dev/null +++ b/sci-mathematics/yices2/yices2-2.6.4-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 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 + + rm "${ED}"/usr/$(get_libdir)/libyices.a || die +} 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 -} -- cgit v1.2.3-65-gdbad