summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Chandler <sethbc@gentoo.org>2003-02-11 18:57:16 +0000
committerSeth Chandler <sethbc@gentoo.org>2003-02-11 18:57:16 +0000
commit5407825c2ce232004c8475324051cb00c8b677d7 (patch)
tree3f984e5367f00a03d36a2ecba53b0eb0d08af5d4 /app-benchmarks/bonnie/bonnie-2.0.6.ebuild
parentadded the bonnie license to portage (diff)
downloadgentoo-2-5407825c2ce232004c8475324051cb00c8b677d7.tar.gz
gentoo-2-5407825c2ce232004c8475324051cb00c8b677d7.tar.bz2
gentoo-2-5407825c2ce232004c8475324051cb00c8b677d7.zip
added bonnie to portage
Diffstat (limited to 'app-benchmarks/bonnie/bonnie-2.0.6.ebuild')
-rw-r--r--app-benchmarks/bonnie/bonnie-2.0.6.ebuild33
1 files changed, 33 insertions, 0 deletions
diff --git a/app-benchmarks/bonnie/bonnie-2.0.6.ebuild b/app-benchmarks/bonnie/bonnie-2.0.6.ebuild
new file mode 100644
index 000000000000..94aa47f435e3
--- /dev/null
+++ b/app-benchmarks/bonnie/bonnie-2.0.6.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bonnie/bonnie-2.0.6.ebuild,v 1.1 2003/02/11 18:57:16 sethbc Exp $
+
+DESCRIPTION="Performance Test of Filesystem I/O using standard C library calls."
+HOMEPAGE="http://www.textuality.com/bonnie/"
+SRC_URI="http://www.textuality.com/bonnie/bonnie.tar.gz"
+
+LICENSE="bonnie"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc ~alpha"
+IUSE=""
+DEPEND=""
+RDEPEND=""
+
+S=${WORKDIR}
+
+src_unpack() {
+ unpack ${A} || die
+ patch -p0 < ${FILESDIR}/bonnie_man.patch || die
+ patch -p0 < ${FILESDIR}/Makefile.patch || die
+}
+
+src_compile() {
+ make SYSFLAGS="${CFLAGS}" || die
+ mv Bonnie bonnie
+}
+
+src_install() {
+ doman bonnie.1
+ dodoc Instructions
+ dobin bonnie
+}