From 735772c723a0317600005941f538be3f35585c03 Mon Sep 17 00:00:00 2001 From: Sam James Date: Tue, 22 Nov 2022 03:54:58 +0000 Subject: sci-electronics/espresso-ab: fix configure w/ clang 16 Closes: https://bugs.gentoo.org/879757 Signed-off-by: Sam James --- .../espresso-ab/espresso-ab-1.0-r2.ebuild | 19 ---------------- .../espresso-ab/espresso-ab-1.0-r3.ebuild | 26 ++++++++++++++++++++++ 2 files changed, 26 insertions(+), 19 deletions(-) delete mode 100644 sci-electronics/espresso-ab/espresso-ab-1.0-r2.ebuild create mode 100644 sci-electronics/espresso-ab/espresso-ab-1.0-r3.ebuild (limited to 'sci-electronics') diff --git a/sci-electronics/espresso-ab/espresso-ab-1.0-r2.ebuild b/sci-electronics/espresso-ab/espresso-ab-1.0-r2.ebuild deleted file mode 100644 index cd0bd9019c95..000000000000 --- a/sci-electronics/espresso-ab/espresso-ab-1.0-r2.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic - -DESCRIPTION="POSIX compliant version of the espresso logic minimization tool" -HOMEPAGE="http://www.cs.man.ac.uk/apt/projects/balsa/" -SRC_URI="ftp://ftp.cs.man.ac.uk/pub/amulet/balsa/other-software/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~ppc ~sparc x86" - -src_configure() { - append-cflags "-std=gnu89" - default -} diff --git a/sci-electronics/espresso-ab/espresso-ab-1.0-r3.ebuild b/sci-electronics/espresso-ab/espresso-ab-1.0-r3.ebuild new file mode 100644 index 000000000000..2937cb028c81 --- /dev/null +++ b/sci-electronics/espresso-ab/espresso-ab-1.0-r3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools flag-o-matic + +DESCRIPTION="POSIX compliant version of the espresso logic minimization tool" +HOMEPAGE="http://www.cs.man.ac.uk/apt/projects/balsa/" +SRC_URI="ftp://ftp.cs.man.ac.uk/pub/amulet/balsa/other-software/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 ~ppc ~sparc x86" + +src_prepare() { + default + + # Clang 16 + eautoreconf +} + +src_configure() { + append-cflags "-std=gnu89" + default +} -- cgit v1.2.3-65-gdbad