diff options
author | 2019-02-21 20:44:02 +0100 | |
---|---|---|
committer | 2019-02-22 22:08:25 +0100 | |
commit | 50a19d3c52f3a304f4770349aaa5affac5b69306 (patch) | |
tree | c1f838be9ccf52d060d6ea0f3a317ea5131fe6a3 /app-benchmarks/interbench/interbench-0.31.ebuild | |
parent | app-dicts/myspell-de: remove old. (diff) | |
download | gentoo-50a19d3c52f3a304f4770349aaa5affac5b69306.tar.gz gentoo-50a19d3c52f3a304f4770349aaa5affac5b69306.tar.bz2 gentoo-50a19d3c52f3a304f4770349aaa5affac5b69306.zip |
app-benchmarks/interbench: new package.
The Linux interactivity benchmark.
It is designed to measure the effect of changed in Linux kernel design or
system configuration changes such as CPU, I/O scheduler and filesystem changes
and options.
Closes: https://bugs.gentoo.org/100145
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/10316
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-benchmarks/interbench/interbench-0.31.ebuild')
-rw-r--r-- | app-benchmarks/interbench/interbench-0.31.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app-benchmarks/interbench/interbench-0.31.ebuild b/app-benchmarks/interbench/interbench-0.31.ebuild new file mode 100644 index 00000000000..bab121c0d44 --- /dev/null +++ b/app-benchmarks/interbench/interbench-0.31.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="A Linux interactivity benchmark" +HOMEPAGE=" + http://interbench.kolivas.org/ + 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" + +PATCHES=( "${FILESDIR}/${P}-makefile.patch" ) + +DOCS=( + "readme" + "readme.interactivity" +) + +src_prepare() { + default + + tc-export CC +} + +src_install() { + dobin interbench + doman interbench.8 + + einstalldocs +} |