conntrack-tools: new package

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Gustavo Zacarias 2012-05-04 03:16:46 +00:00 committed by Peter Korsgaard
parent 30e5d09a40
commit b76f7fb749
3 changed files with 27 additions and 0 deletions

View File

@ -490,6 +490,7 @@ source "package/can-utils/Config.in"
source "package/connman/Config.in"
source "package/ctorrent/Config.in"
source "package/cifs-utils/Config.in"
source "package/conntrack-tools/Config.in"
source "package/cups/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/dhcp/Config.in"

View File

@ -0,0 +1,14 @@
config BR2_PACKAGE_CONNTRACK_TOOLS
bool "conntrack-tools"
depends on BR2_INET_IPV6
select BR2_PACKAGE_LIBNETFILTER_CONNTRACK
help
The conntrack-tools are a set of tools targeted at
system administrators.
They are conntrack, the userspace command line interface,
and conntrackd, the userspace daemon.
http://www.netfilter.org/projects/conntrack-tools/
comment "conntrack-tools requires a toolchain with IPV6 support"
depends on !BR2_INET_IPV6

View File

@ -0,0 +1,12 @@
#############################################################
#
# conntrack-tools
#
#############################################################
CONNTRACK_TOOLS_VERSION = 1.0.1
CONNTRACK_TOOLS_SOURCE = conntrack-tools-$(CONNTRACK_TOOLS_VERSION).tar.bz2
CONNTRACK_TOOLS_SITE = http://www.netfilter.org/projects/conntrack-tools/files
CONNTRACK_TOOLS_DEPENDENCIES = host-pkg-config libnetfilter_conntrack
$(eval $(call AUTOTARGETS))