diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-08-27 08:57:06 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-08-27 08:57:06 +0000 |
commit | 6a0bc39fd04ba65dc91aead1ccfda5e841698e5e (patch) | |
tree | 3cdc1193fac74d9cab9e5e250cb0a7e7b90deabd /app-benchmarks/filebench | |
parent | remove myself from maintainers (diff) | |
download | gentoo-2-6a0bc39fd04ba65dc91aead1ccfda5e841698e5e.tar.gz gentoo-2-6a0bc39fd04ba65dc91aead1ccfda5e841698e5e.tar.bz2 gentoo-2-6a0bc39fd04ba65dc91aead1ccfda5e841698e5e.zip |
Bump
(Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
Diffstat (limited to 'app-benchmarks/filebench')
-rw-r--r-- | app-benchmarks/filebench/ChangeLog | 10 | ||||
-rw-r--r-- | app-benchmarks/filebench/filebench-1.4.9.1.ebuild | 37 |
2 files changed, 44 insertions, 3 deletions
diff --git a/app-benchmarks/filebench/ChangeLog b/app-benchmarks/filebench/ChangeLog index 3c69f3b76967..b08ca2ffe35b 100644 --- a/app-benchmarks/filebench/ChangeLog +++ b/app-benchmarks/filebench/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-benchmarks/filebench -# 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 $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/filebench/ChangeLog,v 1.5 2012/08/27 08:57:06 patrick Exp $ + +*filebench-1.4.9.1 (27 Aug 2012) + + 27 Aug 2012; Patrick Lauer <patrick@gentoo.org> +filebench-1.4.9.1.ebuild: + Bump *filebench-1.4.9 (22 Jul 2011) @@ -20,4 +25,3 @@ 01 Mar 2009; Patrick Lauer <patrick@gentoo.org> +files/linux-port.patch, +metadata.xml, +filebench-1.2.4.ebuild: Initial import from sunrise. Fixes #218223. Ebuild by Cheng Renquan. - diff --git a/app-benchmarks/filebench/filebench-1.4.9.1.ebuild b/app-benchmarks/filebench/filebench-1.4.9.1.ebuild new file mode 100644 index 000000000000..581b48940ad4 --- /dev/null +++ b/app-benchmarks/filebench/filebench-1.4.9.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2012 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.1.ebuild,v 1.1 2012/08/27 08:57:06 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 +} |