blob: 78c46a0be730e600856407a71904c5fbb56a5383 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/fio/fio-1.17.ebuild,v 1.2 2007/11/05 10:28:02 armin76 Exp $
inherit eutils toolchain-funcs flag-o-matic
DESCRIPTION="Jens Axboe's Flexible IO tester"
HOMEPAGE="http://brick.kernel.dk/snaps/"
SRC_URI="http://brick.kernel.dk/snaps/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
IUSE=""
DEPEND="dev-libs/libaio"
RDEPEND="${DEPEND}"
src_compile() {
append-flags -W
emake CC="$(tc-getCC)" OPTFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
emake install DESTDIR="${D}" prefix="/usr" || die "emake install failed"
dodoc README REPORTING-BUGS HOWTO
docinto examples
dodoc examples/*
}
|