diff options
Diffstat (limited to 'app-benchmarks/ioping/ioping-0.9.ebuild')
-rw-r--r-- | app-benchmarks/ioping/ioping-0.9.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app-benchmarks/ioping/ioping-0.9.ebuild b/app-benchmarks/ioping/ioping-0.9.ebuild new file mode 100644 index 000000000000..b6079a33adee --- /dev/null +++ b/app-benchmarks/ioping/ioping-0.9.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Simple disk I/0 latency measuring tool" +HOMEPAGE="https://github.com/koct9i/ioping" +SRC_URI="https://github.com/koct9i/ioping/releases/download/v${PV}/${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +LICENSE="GPL-3" +IUSE="" + +src_prepare() { + sed \ + -e 's: -g : :g' \ + -e 's: $(LDFLAGS) : :g' \ + -e 's: -o : $(LDFLAGS) -o :g' \ + -e 's:-s -m:-m:g' \ + -e 's:LICENSE::g' \ + -e 's:-O2.*::g' \ + -i Makefile || die +} + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + PREFIX="${EPREFIX}/usr" +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +} |