build system cleanup. move shared include files into $(TOPDIR)/include, move lzma...
[openwrt.git] / package / iptables / Makefile
1 # $Id$
2
3 include $(TOPDIR)/rules.mk
4 include $(TOPDIR)/include/kernel.mk
5
6 PKG_NAME:=iptables
7 PKG_VERSION:=1.3.5
8 PKG_RELEASE:=1
9
10 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
11 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
12 PKG_SOURCE_URL:=http://www.netfilter.org/projects/iptables/files \
13         ftp://ftp.be.netfilter.org/pub/netfilter/iptables/ \
14         ftp://ftp.de.netfilter.org/pub/netfilter/iptables/ \
15         ftp://ftp.no.netfilter.org/pub/netfilter/iptables/
16 PKG_MD5SUM:=00fb916fa8040ca992a5ace56d905ea5
17 PKG_CAT:=bzcat
18
19 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
20
21 PKG_MENU:=IPv4 / IPv6 firewall administration
22
23 include $(TOPDIR)/include/package.mk
24 ifeq ($(DUMP),)
25 include $(LINUX_DIR)/.config
26 include $(TOPDIR)/include/netfilter.mk
27 endif
28
29 define Package/iptables
30 SECTION:=net
31 CATEGORY:=Base system
32 MENU:=1
33 DEFAULT:=y
34 TITLE:=IPv4 firewall administration tool
35 URL:=http://netfilter.org/
36 endef
37
38 define Package/iptables/conffiles
39 /etc/config/firewall
40 /etc/firewall.user
41 endef
42
43 define Package/iptables-mod-conntrack
44 SECTION:=net
45 CATEGORY:=Base system
46 DEPENDS:=iptables
47 TITLE:=connection tracking modules
48 DESCRIPTION:=iptables extensions for connection tracking \\\
49 Includes: \\\
50         * libipt_conntrack \\\
51         * libipt_helper \\\
52         * libipt_connmark/CONNMARK
53 endef
54
55 define Package/iptables-mod-filter
56 SECTION:=net
57 CATEGORY:=Base system
58 DEPENDS:=iptables
59 TITLE:=filter modules
60 DESCRIPTION:=iptables extensions for packet content inspection\\\
61 Includes: \\\
62         * libipt_ipp2p \\\
63         * libipt_layer7 
64 endef
65
66 define Package/iptables-mod-imq
67 SECTION:=net
68 CATEGORY:=Base system
69 DEPENDS:=iptables
70 TITLE:=IMQ support
71 DESCRIPTION:=iptables extension for IMQ support\\\
72 Includes: \\\
73         * libipt_IMQ
74 endef
75
76 define Package/iptables-mod-ipopt
77 SECTION:=net
78 CATEGORY:=Base system
79 DEPENDS:=iptables
80 TITLE:=IP/Packet option modules
81 DESCRIPTION:=iptables extensions for matching/changing IP packet options\\\
82 Includes: \\\
83         * libipt_dscp/DSCP \\\
84         * libipt_ecn/ECN \\\
85         * libipt_length \\\
86         * libipt_mac \\\
87         * libipt_tos/TOS \\\
88         * libipt_tcpmms \\\
89         * libipt_ttl/TTL \\\
90         * libipt_unclean 
91 endef
92
93 define Package/iptables-mod-ipsec
94 SECTION:=net
95 CATEGORY:=Base system
96 DEPENDS:=iptables
97 TITLE:=IPSec extensions
98 DESCRIPTION:=iptables extensions for matching ipsec traffic\\\
99 Includes: \\\
100         * libipt_ah \\\
101         * libipt_esp
102 endef
103
104 define Package/iptables-mod-nat
105 SECTION:=net
106 CATEGORY:=Base system
107 DEPENDS:=iptables
108 TITLE:=extra NAT targets
109 DESCRIPTION:=iptables extensions for different NAT targets\\\
110 Includes: \\\
111         * libipt_REDIRECT
112 endef
113
114 define Package/iptables-mod-ulog
115 SECTION:=net
116 CATEGORY:=Base system
117 DEPENDS:=iptables
118 TITLE:=user-space packet logging
119 DESCRIPTION:=iptables extensions for user-space packet logging\\\
120 Includes: \\\
121         * libipt_ULOG
122 endef
123
124 define Package/iptables-mod-extra
125 SECTION:=net
126 CATEGORY:=Base system
127 DEPENDS:=iptables
128 TITLE:=other extra iptables extensions
129 DESCRIPTION:=other extra iptables extensions\\\
130 Includes: \\\
131         * libipt_limit \\\
132         * libipt_owner \\\
133         * libipt_physdev \\\
134         * libipt_pkttype \\\
135         * libipt_recent
136 endef
137
138 define Package/iptables-utils
139 SECTION:=net
140 CATEGORY:=Base system
141 DEPENDS:=iptables
142 TITLE:=iptables save and restore utilities
143 endef
144
145 define Package/ip6tables
146 SECTION:=net
147 CATEGORY:=Base system
148 TITLE:=IPv6 firewall administration tool
149 endef
150
151
152 define Build/Configure
153 endef
154
155 define Build/Compile
156         chmod a+x $(PKG_BUILD_DIR)/extensions/.*-test*
157         mkdir -p $(PKG_INSTALL_DIR)
158         $(MAKE) -C $(PKG_BUILD_DIR) \
159                 $(TARGET_CONFIGURE_OPTS) \
160                 CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)" \
161                 KERNEL_DIR=$(LINUX_DIR) PREFIX=/usr \
162                 DESTDIR="$(PKG_INSTALL_DIR)" \
163                 all install install-devel
164 endef
165
166
167 define Build/InstallDev
168         $(MAKE) -C $(PKG_BUILD_DIR) \
169                 $(TARGET_CONFIGURE_OPTS) \
170                 CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)" \
171                 KERNEL_DIR=$(LINUX_DIR) PREFIX=/usr \
172                 DESTDIR="$(STAGING_DIR)" \
173                 install install-devel
174 endef
175
176 define Build/UninstallDev
177         rm -rf $(STAGING_DIR)/usr/include/libipq.h
178         rm -rf $(STAGING_DIR)/usr/lib/libipq.a
179 endef
180
181                 
182 define Package/iptables/install
183         install -d -m0755 $(1)/etc/config
184         install -m0644 ./files/firewall.config $(1)/etc/config/firewall
185         install -d -m0755 $(1)/etc/init.d
186         install -m0755 ./files/firewall.init $(1)/etc/init.d/S45firewall
187         install -m0755 ./files/firewall.user $(1)/etc/
188         install -d -m0755 $(1)/usr/lib
189         install -m0644 ./files/firewall.awk $(1)/usr/lib
190         install -d -m0755 $(1)/usr/sbin
191         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables $(1)/usr/sbin/
192         install -d -m0755 $(1)/usr/lib/iptables
193         (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
194                 $(CP) $(patsubst %,lib%.so,$(IPT_BUILTIN:xt_%=ipt_%)) $(1)/usr/lib/iptables/ \
195         )
196         $(RSTRIP) $(1)
197 endef
198
199 define Package/iptables-utils/install
200         install -d -m0755 $(1)/usr/sbin
201         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables-{save,restore} $(1)/usr/sbin/
202         $(RSTRIP) $(1)
203 endef
204
205 define Package/ip6tables/install
206         install -d -m0755 $(1)/usr/sbin
207         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables $(1)/usr/sbin/
208         install -d -m0755 $(1)/usr/lib/iptables
209         (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
210                 $(CP) libip6t_*.so $(1)/usr/lib/iptables/ \
211         )
212         $(RSTRIP) $(1)
213 endef
214
215 define BuildPlugin
216 define Package/$(1)/install
217         install -m0755 -d $$(1)/usr/lib/iptables
218         for m in $$(patsubst xt_%,ipt_%,$(2)); do \
219                 $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so $$(1)/usr/lib/iptables/ ; \
220         done
221         $(3)
222         $(RSTRIP) $$(1)
223 endef
224
225 $$(eval $$(call BuildPackage,$(1)))
226 endef
227
228 L7_INSTALL:=mkdir -p $$(1)/etc/l7-protocols; \
229         $(CP) files/l7/*.pat $$(1)/etc/l7-protocols/
230
231 $(eval $(call BuildPackage,iptables))
232 $(eval $(call BuildPackage,iptables-utils))
233 $(eval $(call BuildPlugin,iptables-mod-conntrack,$(IPT_CONNTRACK-m)))
234 $(eval $(call BuildPlugin,iptables-mod-extra,$(IPT_EXTRA-m)))
235 $(eval $(call BuildPlugin,iptables-mod-filter,$(IPT_FILTER-m),$(L7_INSTALL)))
236 $(eval $(call BuildPlugin,iptables-mod-imq,$(IPT_IMQ-m)))
237 $(eval $(call BuildPlugin,iptables-mod-ipopt,$(IPT_IPOPT-m)))
238 $(eval $(call BuildPlugin,iptables-mod-ipsec,$(IPT_IPSEC-m)))
239 $(eval $(call BuildPlugin,iptables-mod-nat,$(IPT_NAT-m)))
240 $(eval $(call BuildPlugin,iptables-mod-ulog,$(IPT_ULOG-m)))
241 $(eval $(call BuildPackage,ip6tables))