Commit b5ece69c authored by Ezequiel Garcia's avatar Ezequiel Garcia Committed by Peter Korsgaard
Browse files

iptraf-ng: new package



[Peter: needs IPv6, doesn't need threads. Fix ncurses library handling]
Signed-off-by: default avatarEzequiel Garcia <ezequiel.garcia@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent f3b1b92d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -933,6 +933,7 @@ source "package/iproute2/Config.in"
source "package/ipsec-tools/Config.in"
source "package/ipset/Config.in"
source "package/iptables/Config.in"
source "package/iptraf-ng/Config.in"
source "package/iputils/Config.in"
source "package/iw/Config.in"
source "package/kismet/Config.in"
+16 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_IPTRAF_NG
	bool "iptraf-ng"
	select BR2_PACKAGE_NCURSES
	select BR2_PACKAGE_NCURSES_TARGET_PANEL
	depends on BR2_INET_IPV6
	help
	  IPTraf-ng is a ncurses-based network monitoring utility. It gathers
	  data like TCP connection packet and byte counts, interface statistics
	  and activity indicators.

	  https://fedorahosted.org/iptraf-ng/

	  IPTraf-ng is a fork of original IPTraf v3.0.0 (http://iptraf.seul.org).

comment "iptraf-ng needs a toolchain w/ IPv6"
	depends on !BR2_INET_IPV6
+15 −0
Original line number Diff line number Diff line
################################################################################
#
# iptraf-ng
#
################################################################################

IPTRAF_NG_VERSION = 1.1.4
IPTRAF_NG_SITE = https://fedorahosted.org/releases/i/p/iptraf-ng/
IPTRAF_NG_LICENSE = GPLv2+
IPTRAF_NG_LICENSE_FILES = LICENSE
IPTRAF_NG_DEPENDENCIES = ncurses

IPTRAF_NG_MAKE_ENV = NCURSES_LDFLAGS="-lpanel -lncurses"

$(eval $(autotools-package))