You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-block/fio/fio-1.25.1.ebuild

36 lines
894 B

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/fio/fio-1.25.1.ebuild,v 1.1 2009/04/13 01:58:42 robbat2 Exp $
inherit eutils 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}/${PN}"
src_compile() {
append-flags -W
emake CC="$(tc-getCC)" OPTFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
emake install DESTDIR="${D}" prefix="/usr" mandir="/usr/share/man" || die "emake install failed"
dodoc README REPORTING-BUGS HOWTO
docinto examples
dodoc examples/*
doman fio.1
}