blob: 6c6dad3759c0f564f1f8cc6d2f729678f1223868 (
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
35
36
37
38
39
40
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptraf/iptraf-3.0.0.ebuild,v 1.2 2006/03/05 20:53:03 jokey Exp $
inherit eutils
DESCRIPTION="IPTraf is an ncurses-based IP LAN monitor"
HOMEPAGE="http://iptraf.seul.org/"
SRC_URI="ftp://iptraf.seul.org/pub/iptraf/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND=">=sys-libs/ncurses-5.2-r1"
src_unpack() {
unpack ${P}.tar.gz
cd "${S}"
epatch "${FILESDIR}"/${P}-atheros.patch
epatch "${FILESDIR}"/${P}-build.patch
epatch "${FILESDIR}"/${P}-linux-headers.patch
sed -i \
-e 's:/var/local/iptraf:/var/lib/iptraf:g' \
-e "s:Documentation/:/usr/share/doc/${PF}:g" \
Documentation/*.* || die "sed doc paths"
}
src_compile() {
emake CFLAGS="${CFLAGS}" LDOPTS="${LDFLAGS}" TARGET="/usr/sbin" WORKDIR="/var/lib/iptraf" -C src || die
}
src_install() {
dosbin src/{iptraf,rawtime,rvnamed} || die
dodoc FAQ README* CHANGES RELEASE-NOTES
doman Documentation/*.8
dohtml -r Documentation/*
keepdir /var/{lib,run,log}/iptraf
}
|