Browse Source

port libnetfilter_queue

Phil Sutter 15 years ago
parent
commit
c449a57366
2 changed files with 38 additions and 0 deletions
  1. 2 0
      package/Config.in
  2. 36 0
      package/libnetfilter_queue/Makefile

+ 2 - 0
package/Config.in

@@ -471,6 +471,8 @@ source "package/ncurses/Config.in.lib"
 source "package/neon/Config.in"
 source "package/libnet/Config.in"
 source "package/libnet/Config.in.lib"
+source "package/libnetfilter_queue/Config.in"
+source "package/libnetfilter_queue/Config.in.lib"
 source "package/libnfsidmap/Config.in"
 source "package/libnfnetlink/Config.in"
 source "package/libnfnetlink/Config.in.lib"

+ 36 - 0
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