diff options
author | 2009-03-08 15:56:46 +0000 | |
---|---|---|
committer | 2009-03-08 15:56:46 +0000 | |
commit | 39a492789881cb80013ec65081671dcf5167fe5b (patch) | |
tree | dafe46d4d2cea98aeb80014562c2bae4d4c6b474 /app-benchmarks | |
parent | amd64/x86 stable, bug #258040 (diff) | |
download | gentoo-2-39a492789881cb80013ec65081671dcf5167fe5b.tar.gz gentoo-2-39a492789881cb80013ec65081671dcf5167fe5b.tar.bz2 gentoo-2-39a492789881cb80013ec65081671dcf5167fe5b.zip |
Bump to 1.95
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/bonnie++/ChangeLog | 9 | ||||
-rw-r--r-- | app-benchmarks/bonnie++/bonnie++-1.95.ebuild | 40 |
2 files changed, 47 insertions, 2 deletions
diff --git a/app-benchmarks/bonnie++/ChangeLog b/app-benchmarks/bonnie++/ChangeLog index d921de6f0a7b..931f355ec502 100644 --- a/app-benchmarks/bonnie++/ChangeLog +++ b/app-benchmarks/bonnie++/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-benchmarks/bonnie++ -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bonnie++/ChangeLog,v 1.23 2008/11/23 09:56:37 patrick Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bonnie++/ChangeLog,v 1.24 2009/03/08 15:56:46 patrick Exp $ + +*bonnie++-1.95 (08 Mar 2009) + + 08 Mar 2009; Patrick Lauer <patrick@gentoo.org> +bonnie++-1.95.ebuild: + Bump to 1.95 *bonnie++-1.94 (23 Nov 2008) diff --git a/app-benchmarks/bonnie++/bonnie++-1.95.ebuild b/app-benchmarks/bonnie++/bonnie++-1.95.ebuild new file mode 100644 index 000000000000..cefe4181e10b --- /dev/null +++ b/app-benchmarks/bonnie++/bonnie++-1.95.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bonnie++/bonnie++-1.95.ebuild,v 1.1 2009/03/08 15:56:46 patrick Exp $ + +inherit eutils + +DESCRIPTION="Hard drive bottleneck testing benchmark suite." +HOMEPAGE="http://www.coker.com.au/bonnie++/" +SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug" + +DEPEND="" +RDEPEND="" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-1.94-missing_include.patch" +} + +src_compile() { + econf \ + $(use_with debug) \ + --disable-stripping \ + || die + emake || die "emake failed" + emake zcav || die "emake zcav failed" # see #9073 +} + +src_install() { + dosbin bonnie++ zcav || die + dobin bon_csv2html bon_csv2txt || die + doman bon_csv2html.1 bon_csv2txt.1 bonnie++.8 zcav.8 + dohtml readme.html + dodoc changelog.txt credits.txt +} |