summaryrefslogtreecommitdiffstats
path: root/package/libnetfilter_acct
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2012-10-30 02:29:47 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-11-03 19:11:47 +0100
commitb48aa7eed99ca980548ade72949dfd4108e8d05d (patch)
tree135485ef0d025742e0b86209b18757c15ee746b8 /package/libnetfilter_acct
parent94eb5b1cf15f2e71a7bc21cf7c8cb6b552187aec (diff)
downloadbuildroot-novena-b48aa7eed99ca980548ade72949dfd4108e8d05d.tar.gz
buildroot-novena-b48aa7eed99ca980548ade72949dfd4108e8d05d.zip
libnetfilter_acct: add new package
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/libnetfilter_acct')
-rw-r--r--package/libnetfilter_acct/Config.in12
-rw-r--r--package/libnetfilter_acct/libnetfilter-acct.mk15
2 files changed, 27 insertions, 0 deletions
diff --git a/package/libnetfilter_acct/Config.in b/package/libnetfilter_acct/Config.in
new file mode 100644
index 000000000..76cdf7db4
--- /dev/null
+++ b/package/libnetfilter_acct/Config.in
@@ -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
diff --git a/package/libnetfilter_acct/libnetfilter-acct.mk b/package/libnetfilter_acct/libnetfilter-acct.mk
new file mode 100644
index 000000000..615c94c5e
--- /dev/null
+++ b/package/libnetfilter_acct/libnetfilter-acct.mk
@@ -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))