libnetfilter_queue: 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:46 +00:00 committed by Peter Korsgaard
parent 6b454a23bd
commit 94eb5b1cf1
3 changed files with 30 additions and 0 deletions

View File

@ -458,6 +458,7 @@ 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/libnetfilter_queue/Config.in"
source "package/libnfnetlink/Config.in"
source "package/libnl/Config.in"
source "package/liboping/Config.in"

View File

@ -0,0 +1,14 @@
config BR2_PACKAGE_LIBNETFILTER_QUEUE
bool "libnetfilter_queue"
depends on BR2_LARGEFILE
select BR2_PACKAGE_LIBNFNETLINK
select BR2_PACKAGE_LIBMNL
help
libnetfilter_queue is the userspace library that provides
the programming interface to the fine-grain
connection tracking timeout infrastructure.
http://www.netfilter.org/projects/libnetfilter_queue/
comment "libnetfilter_queue requires a toolchain with LARGEFILE support"
depends on !BR2_LARGEFILE

View File

@ -0,0 +1,15 @@
#############################################################
#
# libnetfilter-queue
#
#############################################################
LIBNETFILTER_QUEUE_VERSION = 1.0.2
LIBNETFILTER_QUEUE_SOURCE = libnetfilter_queue-$(LIBNETFILTER_QUEUE_VERSION).tar.bz2
LIBNETFILTER_QUEUE_SITE = http://www.netfilter.org/projects/libnetfilter_queue/files
LIBNETFILTER_QUEUE_INSTALL_STAGING = YES
LIBNETFILTER_QUEUE_DEPENDENCIES = host-pkgconf libnfnetlink libmnl
LIBNETFILTER_QUEUE_LICENSE = GPLv2
LIBNETFILTER_QUEUE_LICENSE_FILES = COPYING
$(eval $(autotools-package))