summaryrefslogtreecommitdiff
path: root/package/libnetfilter_queue
diff options
context:
space:
mode:
authorPhil Sutter <phil.sutter@viprinet.com>2010-01-20 19:34:39 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-01-20 21:49:53 +0100
commitc449a57366c3f1a25aa133b17e26e6d613912631 (patch)
tree3fa79aaf4867fa8097cdda8264ecf54e1894c5b5 /package/libnetfilter_queue
parent1a305e8cb54f2abf76d05bba342d089547540db3 (diff)
port libnetfilter_queue
Diffstat (limited to 'package/libnetfilter_queue')
-rw-r--r--package/libnetfilter_queue/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/package/libnetfilter_queue/Makefile b/package/libnetfilter_queue/Makefile
new file mode 100644
index 000000000..cacac4887
--- /dev/null
+++ b/package/libnetfilter_queue/Makefile
@@ -0,0 +1,36 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= libnetfilter_queue
+PKG_VERSION:= 0.0.17
+PKG_RELEASE:= 1
+PKG_BUILDDEP+= libnfnetlink
+PKG_MD5SUM:= 2cde35e678ead3a8f9eb896bf807a159
+PKG_DESCR:= API to packets that have been queued by the kernel packet filter
+PKG_SECTION:= libs
+PKG_DEPENDS:= libnfnetlink
+PKG_URL:= http://www.netfilter.org/projects/libnetfilter_queue/
+PKG_SITES:= http://www.netfilter.org/projects/libnetfilter_queue/files/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBNETFILTER_QUEUE,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_STYLE:= gnu
+# use following to add ./configure options
+#CONFIGURE_ARGS+= --disable-foo
+# overwrite any configure variables
+#CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes
+BUILD_STYLE:= auto
+INSTALL_STYLE:= auto
+
+# please install all files and directories to the package dir
+post-install:
+ $(INSTALL_DIR) $(IDIR_LIBNETFILTER_QUEUE)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libnetfilter_queue* $(IDIR_LIBNETFILTER_QUEUE)/usr/lib/
+
+include ${TOPDIR}/mk/pkg-bottom.mk