blob: 486e56efca50751f16e4c2b8c455e6855a339dd3 (
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
60
61
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic git-r3 toolchain-funcs
DESCRIPTION="A console-based network monitoring utility"
HOMEPAGE="https://github.com/iptraf-ng/iptraf-ng"
EGIT_REPO_URI="https://github.com/iptraf-ng/iptraf-ng"
EGIT_BRANCH="dev"
LICENSE="GPL-2 doc? ( FDL-1.1 )"
SLOT="0"
KEYWORDS=""
IUSE="doc"
RDEPEND="
>=sys-libs/ncurses-5.7-r7:0=
"
DEPEND="
${RDEPEND}
virtual/os-headers
!net-analyzer/iptraf
"
RESTRICT="test"
src_prepare() {
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' \
src/*.8 || die
default
}
src_configure() {
# The configure script does not do very much we do not already control
append-cppflags '-DLOCKDIR=\"/run/lock/iptraf-ng\"'
tc-export CC
}
src_install() {
dosbin ${PN}
doman src/*.8
dodoc AUTHORS CHANGES* FAQ README*
if use doc; then
docinto html
dodoc -r Documentation/*
fi
keepdir /var/{lib,log}/iptraf-ng #376157
}
|