diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2013-03-04 19:41:54 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2013-03-04 19:41:54 +0000 |
commit | 36bc53ca27136af723c0e15cef5b9f7c35d9b8c4 (patch) | |
tree | 1a00822c00c47def95a67eefe1b3e8f1c944699f /sys-block | |
parent | initial add of rackspace-auth-openstack (diff) | |
download | gentoo-2-36bc53ca27136af723c0e15cef5b9f7c35d9b8c4.tar.gz gentoo-2-36bc53ca27136af723c0e15cef5b9f7c35d9b8c4.tar.bz2 gentoo-2-36bc53ca27136af723c0e15cef5b9f7c35d9b8c4.zip |
Bump.
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sys-block')
-rw-r--r-- | sys-block/fio/ChangeLog | 7 | ||||
-rw-r--r-- | sys-block/fio/fio-2.0.14.ebuild | 50 |
2 files changed, 56 insertions, 1 deletions
diff --git a/sys-block/fio/ChangeLog b/sys-block/fio/ChangeLog index c29d153aa8d3..f07044b5e754 100644 --- a/sys-block/fio/ChangeLog +++ b/sys-block/fio/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-block/fio # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/fio/ChangeLog,v 1.27 2013/01/17 20:46:17 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/fio/ChangeLog,v 1.28 2013/03/04 19:41:54 robbat2 Exp $ + +*fio-2.0.14 (04 Mar 2013) + + 04 Mar 2013; Robin H. Johnson <robbat2@gentoo.org> +fio-2.0.14.ebuild: + Bump. *fio-2.0.13 (17 Jan 2013) diff --git a/sys-block/fio/fio-2.0.14.ebuild b/sys-block/fio/fio-2.0.14.ebuild new file mode 100644 index 000000000000..8c10f5315155 --- /dev/null +++ b/sys-block/fio/fio-2.0.14.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/fio/fio-2.0.14.ebuild,v 1.1 2013/03/04 19:41:54 robbat2 Exp $ + +EAPI="4" + +inherit toolchain-funcs flag-o-matic + +MY_PV="${PV/_rc/-rc}" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="Jens Axboe's Flexible IO tester" +HOMEPAGE="http://brick.kernel.dk/snaps/" +SRC_URI="http://brick.kernel.dk/snaps/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="dev-libs/libaio" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + sed -i \ + -e '/filter /s:-o:$(LDFLAGS) -o:' \ + -e '/: depend$/d' \ + -e '/^DEBUGFLAGS/s, -D_FORTIFY_SOURCE=2,,g' \ + Makefile || die +} + +src_configure() { + : # not a real configure script + ./configure --extra-cflags="${CFLAGS}" --cc="$(tc-getCC)" +} + +src_compile() { + append-flags -W + emake V=1 +} + +src_install() { + emake install DESTDIR="${D}" prefix="/usr" mandir="/usr/share/man" + dodoc README REPORTING-BUGS HOWTO + docinto examples + dodoc examples/* + doman fio.1 +} |