nfacct: 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:50 +00:00 committed by Peter Korsgaard
parent f16acce6d3
commit 05f081859e
3 changed files with 28 additions and 0 deletions

View File

@ -607,6 +607,7 @@ source "package/netplug/Config.in"
source "package/netsnmp/Config.in"
source "package/netstat-nat/Config.in"
source "package/network-manager/Config.in"
source "package/nfacct/Config.in"
source "package/noip/Config.in"
source "package/ngircd/Config.in"
source "package/ngrep/Config.in"

12
package/nfacct/Config.in Normal file
View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_NFACCT
bool "nfacct"
depends on BR2_LARGEFILE
select BR2_PACKAGE_LIBNETFILTER_ACCT
help
nfacct is the command line tool to create/retrieve/delete
netfilter accounting objects.
http://www.netfilter.org/projects/nfacct/
comment "nfacct requires a toolchain with LARGEFILE support"
depends on !BR2_LARGEFILE

15
package/nfacct/nfacct.mk Normal file
View File

@ -0,0 +1,15 @@
#############################################################
#
# nfacct
#
#############################################################
NFACCT_VERSION = 1.0.0
NFACCT_SOURCE = nfacct-$(NFACCT_VERSION).tar.bz2
NFACCT_SITE = http://www.netfilter.org/projects/nfacct/files
NFACCT_DEPENDENCIES = host-pkgconf \
libnetfilter_acct
NFACCT_LICENSE = GPLv2
NFACCT_LICENSE_FILES = COPYING
$(eval $(autotools-package))