diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 20:15:15 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 23:54:56 +0100 |
commit | 6bb83bf6d66df97a122f511cb7ef3641a1b973c3 (patch) | |
tree | baadc6901a667df571025c3f31ef0b7afea08e4b /app-benchmarks/interbench | |
parent | app-benchmarks/cpuburn: drop 1.4a-r3 (diff) | |
download | gentoo-6bb83bf6d66df97a122f511cb7ef3641a1b973c3.tar.gz gentoo-6bb83bf6d66df97a122f511cb7ef3641a1b973c3.tar.bz2 gentoo-6bb83bf6d66df97a122f511cb7ef3641a1b973c3.zip |
app-benchmarks/interbench: update EAPI 7 -> 8
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-benchmarks/interbench')
-rw-r--r-- | app-benchmarks/interbench/interbench-0.31-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-benchmarks/interbench/interbench-0.31-r1.ebuild b/app-benchmarks/interbench/interbench-0.31-r1.ebuild new file mode 100644 index 000000000000..f52495b10492 --- /dev/null +++ b/app-benchmarks/interbench/interbench-0.31-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit flag-o-matic toolchain-funcs + +DESCRIPTION="A Linux interactivity benchmark" +HOMEPAGE="https://github.com/ckolivas/interbench/" +SRC_URI="https://github.com/ckolivas/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="amd64 x86" +LICENSE="GPL-2+" +SLOT="0" + +DOCS=( + "readme" + "readme.interactivity" +) + +PATCHES=( + "${FILESDIR}/${P}-makefile.patch" + "${FILESDIR}/${P}-musl.patch" +) + +src_prepare() { + default + + # Inline will fail, if optimizations are turned off + append-cflags -std=gnu89 + + tc-export CC +} + +src_install() { + dobin interbench + doman interbench.8 + + einstalldocs +} |