libnetfilter_cthelper: add 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-10-30 02:29:45 +00:00 committed by Peter Korsgaard
parent 50fbbd3f6d
commit 6b454a23bd
3 changed files with 29 additions and 0 deletions

View File

@ -456,6 +456,7 @@ source "package/libmnl/Config.in"
source "package/libmodbus/Config.in"
source "package/libmbus/Config.in"
source "package/libnetfilter_conntrack/Config.in"
source "package/libnetfilter_cthelper/Config.in"
source "package/libnetfilter_cttimeout/Config.in"
source "package/libnfnetlink/Config.in"
source "package/libnl/Config.in"

View File

@ -0,0 +1,13 @@
config BR2_PACKAGE_LIBNETFILTER_CTHELPER
bool "libnetfilter_cthelper"
depends on BR2_LARGEFILE
select BR2_PACKAGE_LIBMNL
help
libnetfilter_cthelper is the userspace library that provides
the programming interface to the user-space helper infrastructure
available since Linux kernel 3.6.
http://www.netfilter.org/projects/libnetfilter_cthelper/
comment "libnetfilter_cthelper requires a toolchain with LARGEFILE support"
depends on !BR2_LARGEFILE

View File

@ -0,0 +1,15 @@
#############################################################
#
# libnetfilter-cthelper
#
#############################################################
LIBNETFILTER_CTHELPER_VERSION = 1.0.0
LIBNETFILTER_CTHELPER_SOURCE = libnetfilter_cthelper-$(LIBNETFILTER_CTHELPER_VERSION).tar.bz2
LIBNETFILTER_CTHELPER_SITE = http://www.netfilter.org/projects/libnetfilter_cthelper/files
LIBNETFILTER_CTHELPER_INSTALL_STAGING = YES
LIBNETFILTER_CTHELPER_DEPENDENCIES = host-pkgconf libmnl
LIBNETFILTER_CTHELPER_LICENSE = GPLv2
LIBNETFILTER_CTHELPER_LICENSE_FILES = COPYING
$(eval $(autotools-package))