diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-04 00:25:28 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-04 00:25:28 +0000 |
commit | c705541c7ec03f02cfb899f2d928ea1c9bada6c7 (patch) | |
tree | 55491200f269097e55d93a082c869cae73cf75eb /app-benchmarks | |
parent | turn on large file support (bug #43000) (diff) | |
download | historical-c705541c7ec03f02cfb899f2d928ea1c9bada6c7.tar.gz historical-c705541c7ec03f02cfb899f2d928ea1c9bada6c7.tar.bz2 historical-c705541c7ec03f02cfb899f2d928ea1c9bada6c7.zip |
rev bump so people get the large file support
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/tiobench/Manifest | 2 | ||||
-rw-r--r-- | app-benchmarks/tiobench/files/digest-tiobench-0.3.3-r1 | 1 | ||||
-rw-r--r-- | app-benchmarks/tiobench/tiobench-0.3.3-r1.ebuild | 37 |
3 files changed, 40 insertions, 0 deletions
diff --git a/app-benchmarks/tiobench/Manifest b/app-benchmarks/tiobench/Manifest index b1703fe8299f..53b82f3401b5 100644 --- a/app-benchmarks/tiobench/Manifest +++ b/app-benchmarks/tiobench/Manifest @@ -1,3 +1,5 @@ +MD5 282987e342240c84bd9e16f7b85e6e7b tiobench-0.3.3-r1.ebuild 961 MD5 26194e4045c23e4a174411ed4591c42d ChangeLog 551 MD5 86b9baa66e0f829dca05d495bdeeb4a0 tiobench-0.3.3.ebuild 958 MD5 b0e08c271d30b5da41b55be795a8773e files/digest-tiobench-0.3.3 65 +MD5 b0e08c271d30b5da41b55be795a8773e files/digest-tiobench-0.3.3-r1 65 diff --git a/app-benchmarks/tiobench/files/digest-tiobench-0.3.3-r1 b/app-benchmarks/tiobench/files/digest-tiobench-0.3.3-r1 new file mode 100644 index 000000000000..20ba79163de5 --- /dev/null +++ b/app-benchmarks/tiobench/files/digest-tiobench-0.3.3-r1 @@ -0,0 +1 @@ +MD5 bf485bf820e693c79e6bd2a38702a128 tiobench-0.3.3.tar.gz 28282 diff --git a/app-benchmarks/tiobench/tiobench-0.3.3-r1.ebuild b/app-benchmarks/tiobench/tiobench-0.3.3-r1.ebuild new file mode 100644 index 000000000000..f3425a2f6cb4 --- /dev/null +++ b/app-benchmarks/tiobench/tiobench-0.3.3-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/tiobench/tiobench-0.3.3-r1.ebuild,v 1.1 2004/03/04 00:25:27 mr_bones_ Exp $ + +DESCRIPTION="Portable, robust, fully-threaded I/O benchmark program" +HOMEPAGE="http://tiobench.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +KEYWORDS="x86" +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +RDEPEND="virtual/glibc + dev-lang/perl" +DEPEND=">=sys-apps/sed-4" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i \ + -e 's:/usr/local/bin:/usr/sbin:' tiobench.pl || \ + die "sed tiobench.pl failed" + sed -i \ + -e '/DLARGEFILES/ s/^#//' \ + -e "/^CFLAGS/ s:=.*:= ${CFLAGS}:" Makefile || \ + die "sed Makefile failed" +} + +src_compile() { + emake || die "emake failed" +} + +src_install() { + dosbin tiotest tiobench.pl tiosum.pl || die "dosbin failed" + dodoc BUGS ChangeLog README TODO || die "dodoc failed" +} |