blob: e183e1ab97065dedd3c46ec9c77e96e4255e58cd (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/slurm/slurm-0.3.3.ebuild,v 1.5 2006/01/09 22:17:58 vanquirius Exp $
inherit eutils
DESCRIPTION="Realtime network interface monitor based on FreeBSD's pppstatus"
HOMEPAGE="http://www.wormulon.net/projects/slurm"
SRC_URI="http://www.wormulon.net/files/code/slurm/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND="sys-libs/ncurses"
src_install() {
# binary
dobin slurm
# themes to use with -t option
insinto /usr/share/${PN}/themes
doins themes/*.theme
# manual and other docs
doman slurm.1
dodoc AUTHORS ChangeLog COPYRIGHT FAQ KEYS README THANKS \
THEMES.txt TODO
}
|