backfire: packages: xtables-addons: backport r31281.
[openwrt/svn-archive/archive.git] / net / xtables-addons / Makefile
1 #
2 # Copyright (C) 2009-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=xtables-addons
12 PKG_VERSION:=1.41
13 PKG_RELEASE:=2
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
16 PKG_MD5SUM:=a8de5e5e5823aefcbab210159f122564
17 PKG_SOURCE_URL:=@SF/xtables-addons
18 PKG_BUILD_DEPENDS:=iptables
19 PKG_INSTALL:=1
20 PKG_BUILD_PARALLEL:=1
21
22 PKG_FIXUP:=autoreconf
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/xtables-addons
27 SECTION:=net
28 CATEGORY:=Network
29 SUBMENU:=Firewall
30 TITLE:=Extensions not distributed in the main Xtables
31 URL:=http://xtables-addons.sourceforge.net/
32 endef
33
34 # uses GNU configure
35
36 CONFIGURE_ARGS+= \
37 --with-kbuild="$(LINUX_DIR)" \
38 --with-xtables="$(STAGING_DIR)/usr" \
39 --with-xtlibdir="/usr/lib/iptables" \
40
41 define Build/Compile
42 $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
43 ARCH="$(LINUX_KARCH)" \
44 CROSS_COMPILE="$(TARGET_CROSS)" \
45 DESTDIR="$(PKG_INSTALL_DIR)" \
46 DEPMOD="/bin/true" \
47 LDFLAGS="$(TARGET_LDFLAGS)" \
48 all
49 endef
50
51 define Build/Install
52 $(MAKE) -C $(PKG_BUILD_DIR) \
53 ARCH="$(LINUX_KARCH)" \
54 CROSS_COMPILE="$(TARGET_CROSS)" \
55 DESTDIR="$(PKG_INSTALL_DIR)" \
56 DEPMOD="/bin/true" \
57 LDFLAGS="$(TARGET_LDFLAGS)" \
58 install
59 endef
60
61 # 1: extension/module suffix used in package name
62 # 2: extension/module display name used in package title/description
63 # 3: list of extensions to package
64 # 4: list of modules to package
65 # 5: module load priority
66 # 6: module depends
67 define BuildTemplate
68
69 ifneq ($(3),)
70 define Package/iptables-mod-$(1)
71 $$(call Package/xtables-addons)
72 CATEGORY:=Network
73 TITLE:=$(2) iptables extension
74 DEPENDS:= @!LINUX_2_4 iptables $(if $(4),+kmod-ipt-$(1))
75 endef
76
77 define Package/iptables-mod-$(1)/install
78 $(INSTALL_DIR) $$(1)/usr/lib/iptables
79 for m in $(3); do \
80 $(CP) \
81 $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so \
82 $$(1)/usr/lib/iptables/ ; \
83 done
84 endef
85
86 $$(eval $$(call BuildPackage,iptables-mod-$(1)))
87 endif
88
89 ifneq ($(4),)
90 define KernelPackage/ipt-$(1)
91 SUBMENU:=Netfilter Extensions
92 TITLE:=$(2) netfilter module
93 DEPENDS:= @!LINUX_2_4 kmod-ipt-core $(6)
94 FILES:=$(foreach mod,$(4),$(PKG_BUILD_DIR)/extensions/$(mod).$(LINUX_KMOD_SUFFIX))
95 AUTOLOAD:=$(call AutoLoad,$(5),$(notdir $(4)))
96 endef
97
98 $$(eval $$(call KernelPackage,ipt-$(1)))
99 endif
100
101 endef
102
103 #$(eval $(call BuildTemplate,SUFFIX,DESCRIPTION,EXTENSION,MODULE,PRIORITY,DEPENDS))
104 $(eval $(call BuildTemplate,compat-xtables,API compatibilty layer,,compat_xtables,45,))
105 $(eval $(call BuildTemplate,chaos,CHAOS,xt_CHAOS,xt_CHAOS,47,+kmod-ipt-compat-xtables +kmod-ipt-delude +kmod-ipt-tarpit))
106 $(eval $(call BuildTemplate,condition,Condition,xt_condition,xt_condition,46,))
107 $(eval $(call BuildTemplate,delude,DELUDE,xt_DELUDE,xt_DELUDE,46,+kmod-ipt-compat-xtables))
108 $(eval $(call BuildTemplate,tarpit,TARPIT,xt_TARPIT,xt_TARPIT,46,+kmod-ipt-compat-xtables))
109 $(eval $(call BuildTemplate,ipp2p,IPP2P,xt_ipp2p,xt_ipp2p,46,+kmod-ipt-compat-xtables))
110 $(eval $(call BuildTemplate,rawpost,RAWPOST,,iptable_rawpost $(if $(CONFIG_IPV6),ip6table_rawpost),50,+kmod-ipt-compat-xtables))
111 $(eval $(call BuildTemplate,rawnat,RAWNAT,xt_RAWDNAT xt_RAWSNAT,xt_RAWNAT,46,+kmod-ipt-compat-xtables))
112 $(eval $(call BuildTemplate,nathelper-rtsp,RTSP Conntrack and NAT,,rtsp/nf_conntrack_rtsp rtsp/nf_nat_rtsp,46,+kmod-ipt-conntrack-extra))