summaryrefslogtreecommitdiff
blob: 4e9d2c7a9ad5c37acb4a33699edeb22a8573fb5e (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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI="3"

DESCRIPTION="I/O performance monitoring utility"
HOMEPAGE="http://www.linuxinsight.com/iostat_utility.html"
SRC_URI="http://www.linuxinsight.com/files/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND=""
RDEPEND=""

src_compile() {
	emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die
}

src_install() {
	dodoc README || die
	doman ${PN}.8 || die
	dobin ${PN} || die
}