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/net-analyzer/slurm/slurm-0.3.3.ebuild

38 lines
880 B

# Copyright 1999-2009 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.7 2009/06/02 11:59:40 flameeyes Exp $
inherit autotools 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_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-asneeded.patch
eautoreconf
}
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
}