blob: 14a3d94bcf2aee0fdf4677e76743046c1342d503 (
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
30
31
32
33
34
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/dstat/dstat-0.6.9.ebuild,v 1.3 2009/06/28 14:06:58 klausman Exp $
inherit python
DESCRIPTION="Dstat is a versatile replacement for vmstat, iostat and ifstat"
HOMEPAGE="http://dag.wieers.com/home-made/dstat/"
SRC_URI="http://dag.wieers.com/home-made/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
RDEPEND="virtual/python"
DEPEND=""
src_install() {
make install DESTDIR="${D}" || die "make install failed"
dodoc \
AUTHORS ChangeLog README TODO \
examples/{mstat,read}.py docs/*.txt \
|| die "dodoc failed"
dohtml docs/*.html || die "dohtml failed"
}
pkg_postinst() {
python_mod_optimize /usr/share/dstat
}
pkg_postrm() {
python_mod_cleanup /usr/share/dstat
}
|