summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2011-07-22 18:55:35 +0000
committerPatrick Lauer <patrick@gentoo.org>2011-07-22 18:55:35 +0000
commitee21d45d160d7b69539ccb97543fdfa859882634 (patch)
tree983081cbe7267aba86c895ae7efa8524f57575ff /app-benchmarks
parentInitial commit to satisfy tor's net-pmp USE flag (diff)
downloadgentoo-2-ee21d45d160d7b69539ccb97543fdfa859882634.tar.gz
gentoo-2-ee21d45d160d7b69539ccb97543fdfa859882634.tar.bz2
gentoo-2-ee21d45d160d7b69539ccb97543fdfa859882634.zip
Bump, fixes #331769
(Portage version: 2.2.0_alpha46/cvs/Linux x86_64)
Diffstat (limited to 'app-benchmarks')
-rw-r--r--app-benchmarks/filebench/ChangeLog9
-rw-r--r--app-benchmarks/filebench/filebench-1.4.9.ebuild37
2 files changed, 44 insertions, 2 deletions
diff --git a/app-benchmarks/filebench/ChangeLog b/app-benchmarks/filebench/ChangeLog
index ce0704da00b1..3c69f3b76967 100644
--- a/app-benchmarks/filebench/ChangeLog
+++ b/app-benchmarks/filebench/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-benchmarks/filebench
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/filebench/ChangeLog,v 1.3 2009/04/30 17:24:10 patrick Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/filebench/ChangeLog,v 1.4 2011/07/22 18:55:35 patrick Exp $
+
+*filebench-1.4.9 (22 Jul 2011)
+
+ 22 Jul 2011; Patrick Lauer <patrick@gentoo.org> +filebench-1.4.9.ebuild:
+ Bump, fixes #331769
30 Apr 2009; Patrick Lauer <patrick@gentoo.org> -filebench-1.2.4.ebuild:
Remove old
diff --git a/app-benchmarks/filebench/filebench-1.4.9.ebuild b/app-benchmarks/filebench/filebench-1.4.9.ebuild
new file mode 100644
index 000000000000..45d681e0421c
--- /dev/null
+++ b/app-benchmarks/filebench/filebench-1.4.9.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/filebench/filebench-1.4.9.ebuild,v 1.1 2011/07/22 18:55:35 patrick Exp $
+
+inherit eutils autotools
+
+DESCRIPTION="Filebench - A Model Based File System Workload Generator"
+HOMEPAGE="http://sourceforge.net/projects/filebench/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="CDDL"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-libs/libaio
+ sys-devel/flex
+ sys-devel/bison"
+RDEPEND=""
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ #epatch "${FILESDIR}/linux-port.patch"
+ eautoreconf
+}
+
+src_compile() {
+ econf
+ emake -j1 || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "Install failed"
+
+ dodoc README AUTHORS
+}