libnetfilter_acct: 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:47 +00:00 committed by Peter Korsgaard
parent 94eb5b1cf1
commit b48aa7eed9
3 changed files with 28 additions and 0 deletions

View File

@ -455,6 +455,7 @@ source "package/neon/Config.in"
source "package/libmnl/Config.in"
source "package/libmodbus/Config.in"
source "package/libmbus/Config.in"
source "package/libnetfilter_acct/Config.in"
source "package/libnetfilter_conntrack/Config.in"
source "package/libnetfilter_cthelper/Config.in"
source "package/libnetfilter_cttimeout/Config.in"

View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_LIBNETFILTER_ACCT
bool "libnetfilter_acct"
depends on BR2_LARGEFILE
select BR2_PACKAGE_LIBMNL
help
libnetfilter_acct is the userspace library providing interface
to extended accounting infrastructure.
http://www.netfilter.org/projects/libnetfilter_acct/
comment "libnetfilter_acct requires a toolchain with LARGEFILE support"
depends on !BR2_LARGEFILE

View File

@ -0,0 +1,15 @@
#############################################################
#
# libnetfilter-acct
#
#############################################################
LIBNETFILTER_ACCT_VERSION = 1.0.1
LIBNETFILTER_ACCT_SOURCE = libnetfilter_acct-$(LIBNETFILTER_ACCT_VERSION).tar.bz2
LIBNETFILTER_ACCT_SITE = http://www.netfilter.org/projects/libnetfilter_acct/files
LIBNETFILTER_ACCT_INSTALL_STAGING = YES
LIBNETFILTER_ACCT_DEPENDENCIES = host-pkgconf libmnl
LIBNETFILTER_ACCT_LICENSE = LGPLv2.1+
LIBNETFILTER_ACCT_LICENSE_FILES = COPYING
$(eval $(autotools-package))