blob: d9df3616fe219ab8b5a916bb4f4ccb15a2e3b94c (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptraf-ng/iptraf-ng-1.1.3.1-r2.ebuild,v 1.6 2013/02/14 22:07:26 ago Exp $
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="A console-based network monitoring utility"
HOMEPAGE="http://fedorahosted.org/iptraf-ng/"
SRC_URI="http://fedorahosted.org/releases/${PN:0:1}/${PN:1:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-2 doc? ( FDL-1.1 )"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="doc"
RESTRICT="test"
RDEPEND=">=sys-libs/ncurses-5.7-r7"
DEPEND="${RDEPEND}
virtual/os-headers
!net-analyzer/iptraf"
src_prepare() {
epatch "${FILESDIR}"/${P}-kernel-v3.5-kill-off-token-ring-support.patch
sed -i \
-e '/^CC =/d' \
-e '/^CFLAGS/s:= -g -O2:+= :' \
-e '/^LDFLAGS =/d' \
-e 's|$(QUIET_[[:alpha:]]*)||g' \
Makefile || die
sed -i \
-e 's|IPTRAF|&-NG|g' \
-e 's|IPTraf|&-NG|g' \
-e 's|iptraf|&-ng|g' \
-e 's|rvnamed|&-ng|g' \
-e 's|RVNAMED|&-NG|g' \
src/*.8 || die
}
# configure does not do very much we do not already control
src_configure() { :; }
src_compile() {
tc-export CC
CFLAGS+=' -DLOCKDIR=\"/run/lock/iptraf-ng\"'
default
}
src_install() {
dosbin {iptraf,rvnamed}-ng
doman src/*.8
dodoc AUTHORS CHANGES FAQ README* RELEASE-NOTES
use doc && dohtml -a gif,html,png -r Documentation/*
keepdir /var/{lib,log}/iptraf-ng #376157
}
|