diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-02-04 05:27:55 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-02-04 05:27:55 +0000 |
commit | 609079c46d1d957631f2f47b8c648fd73a13ba19 (patch) | |
tree | 4e45f4da6e344cede4b4965a6be8462c3c064352 /sys-block/fio | |
parent | Version bump. (diff) | |
download | gentoo-2-609079c46d1d957631f2f47b8c648fd73a13ba19.tar.gz gentoo-2-609079c46d1d957631f2f47b8c648fd73a13ba19.tar.bz2 gentoo-2-609079c46d1d957631f2f47b8c648fd73a13ba19.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'sys-block/fio')
-rw-r--r-- | sys-block/fio/ChangeLog | 9 | ||||
-rw-r--r-- | sys-block/fio/fio-2.1.4.ebuild | 56 |
2 files changed, 63 insertions, 2 deletions
diff --git a/sys-block/fio/ChangeLog b/sys-block/fio/ChangeLog index 098b7b6cbd32..7ed99951ef25 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.38 2013/11/03 21:03:05 robbat2 Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/fio/ChangeLog,v 1.39 2014/02/04 05:27:55 radhermit Exp $ + +*fio-2.1.4 (04 Feb 2014) + + 04 Feb 2014; Tim Harder <radhermit@gentoo.org> +fio-2.1.4.ebuild: + Version bump. *fio-2.0.15 (03 Nov 2013) diff --git a/sys-block/fio/fio-2.1.4.ebuild b/sys-block/fio/fio-2.1.4.ebuild new file mode 100644 index 000000000000..0632438470ec --- /dev/null +++ b/sys-block/fio/fio-2.1.4.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/fio/fio-2.1.4.ebuild,v 1.1 2014/02/04 05:27:55 radhermit Exp $ + +EAPI="5" + +PYTHON_COMPAT=( python2_7 ) +inherit eutils flag-o-matic python-r1 toolchain-funcs + +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="gtk" + +DEPEND="dev-libs/libaio + gtk? ( x11-libs/gtk+:2 )" +RDEPEND="${DEPEND} + ${PYTHON_DEPS}" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + sed -i \ + -e '/^DEBUGFLAGS/s, -D_FORTIFY_SOURCE=2,,g' \ + -e '/-o gfio/s/$(LIBS)/$(LDFLAGS) $(LIBS)/' \ + Makefile || die + epatch_user +} + +src_configure() { + # not a real configure script + ./configure \ + --extra-cflags="${CFLAGS}" --cc="$(tc-getCC)" \ + $(use gtk && echo "--enable-gfio") || die 'configure failed' +} + +src_compile() { + append-flags -W + emake V=1 +} + +src_install() { + emake install DESTDIR="${D}" prefix="/usr" mandir="/usr/share/man" + python_replicate_script "${ED}/usr/bin/fio2gnuplot" + dodoc README REPORTING-BUGS HOWTO + docinto examples + dodoc examples/* + doman fio.1 +} |