From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1DFF5158003 for ; Mon, 26 Dec 2022 15:59:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4FFF1E095F; Mon, 26 Dec 2022 15:59:25 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33C29E095F for ; Mon, 26 Dec 2022 15:59:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 523C0340E3E for ; Mon, 26 Dec 2022 15:59:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4E4021 for ; Mon, 26 Dec 2022 15:59:22 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1672070354.9909bceaafa55cd574d17d1f4c7395afcc3e85c6.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/frobby/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/frobby/frobby-0.9.0-r3.ebuild sci-mathematics/frobby/frobby-0.9.0-r4.ebuild X-VCS-Directories: sci-mathematics/frobby/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 9909bceaafa55cd574d17d1f4c7395afcc3e85c6 X-VCS-Branch: master Date: Mon, 26 Dec 2022 15:59:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a7656a40-dcc1-45ea-84d5-254838be7ae6 X-Archives-Hash: a1215e56bfc7d99de981dd5123df0446 commit: 9909bceaafa55cd574d17d1f4c7395afcc3e85c6 Author: David Seifert gentoo org> AuthorDate: Mon Dec 26 15:59:14 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Dec 26 15:59:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9909bcea sci-mathematics/frobby: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> ...obby-0.9.0-r3.ebuild => frobby-0.9.0-r4.ebuild} | 32 ++++++++++------------ 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/sci-mathematics/frobby/frobby-0.9.0-r3.ebuild b/sci-mathematics/frobby/frobby-0.9.0-r4.ebuild similarity index 62% rename from sci-mathematics/frobby/frobby-0.9.0-r3.ebuild rename to sci-mathematics/frobby/frobby-0.9.0-r4.ebuild index ae7086641b0d..14a17f5470f5 100644 --- a/sci-mathematics/frobby/frobby-0.9.0-r3.ebuild +++ b/sci-mathematics/frobby/frobby-0.9.0-r4.ebuild @@ -1,29 +1,28 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit toolchain-funcs DESCRIPTION="Software system and project for computations with monomial ideals" HOMEPAGE="http://www.broune.com/frobby/" SRC_URI="http://www.broune.com/frobby/frobby_v${PV}.tar.gz" +S="${WORKDIR}/frobby_v${PV}" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~arm x86" -IUSE="doc static-libs" +IUSE="doc" RDEPEND="dev-libs/gmp:0=[cxx(+)]" -DEPEND="${RDEPEND} - doc? ( virtual/latex-base )" - -S="${WORKDIR}/frobby_v${PV}" +DEPEND="${RDEPEND}" +BDEPEND="doc? ( virtual/latex-base )" PATCHES=( - "${FILESDIR}/${PN}-cflags-no-strip-soname.patch" - "${FILESDIR}/${PN}-gcc-4.7.patch" - "${FILESDIR}/${PN}-gmp-5.1.patch" + "${FILESDIR}"/${PN}-cflags-no-strip-soname.patch + "${FILESDIR}"/${PN}-gcc-4.7.patch + "${FILESDIR}"/${PN}-gmp-5.1.patch ) src_prepare() { @@ -41,22 +40,19 @@ src_configure() { } src_compile() { - emake - MODE=shared emake library - use static-libs && emake library + emake MODE=shared + emake MODE=shared library use doc && emake docPdf } src_install() { dobin bin/frobby dolib.so bin/libfrobby.so - dosym libfrobby.so "${PREFIX}/usr/$(get_libdir)/libfrobby.so.0" - use static-libs && dolib.a bin/libfrobby.a + dosym libfrobby.so /usr/$(get_libdir)/libfrobby.so.0 - insinto /usr/include - doins src/frobby.h + doheader src/frobby.h - insinto /usr/include/"${PN}" + insinto /usr/include/frobby doins src/stdinc.h use doc && dodoc bin/manual.pdf