move package description to a separate definition, remove it when DESCRIPTION=TITLE
[openwrt/svn-archive/archive.git] / package / iptables / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=iptables
13 PKG_VERSION:=1.3.8
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_URL:=http://www.netfilter.org/projects/iptables/files \
18 ftp://ftp.be.netfilter.org/pub/netfilter/iptables/ \
19 ftp://ftp.de.netfilter.org/pub/netfilter/iptables/ \
20 ftp://ftp.no.netfilter.org/pub/netfilter/iptables/
21 PKG_MD5SUM:=0a9209f928002e5eee9cdff8fef4d4b3
22
23 include $(INCLUDE_DIR)/package.mk
24 ifeq ($(DUMP),)
25 -include $(LINUX_DIR)/.config
26 include $(INCLUDE_DIR)/netfilter.mk
27 STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep 'NETFILTER' $(LINUX_DIR)/.config | md5s)
28 endif
29
30 define Package/iptables/Default
31 SECTION:=net
32 CATEGORY:=Base system
33 URL:=http://netfilter.org/
34 endef
35
36 define Package/iptables
37 $(call Package/iptables/Default)
38 TITLE:=IPv4 firewall administration tool
39 MENU:=1
40 endef
41
42 define Package/iptables/conffiles
43 /etc/config/firewall
44 /etc/firewall.user
45 endef
46
47 define Package/iptables-mod-conntrack
48 $(call Package/iptables/Default)
49 DEPENDS:=iptables +kmod-ipt-conntrack
50 TITLE:=connection tracking modules
51 endef
52
53 define Package/iptables-mod-conntrack/description
54 iptables extensions for connection tracking.
55 Includes:
56 - libipt_conntrack
57 - libipt_helper
58 - libipt_connmark/CONNMARK
59 endef
60
61 define Package/iptables-mod-filter
62 $(call Package/iptables/Default)
63 DEPENDS:=iptables +kmod-ipt-filter
64 TITLE:=filter modules
65 endef
66
67 define Package/iptables-mod-filter/description
68 iptables extensions for packet content inspection.
69 Includes:
70 - libipt_ipp2p
71 - libipt_layer7
72 endef
73
74 define Package/iptables-mod-imq
75 $(call Package/iptables/Default)
76 DEPENDS:=iptables +kmod-ipt-imq
77 TITLE:=IMQ support
78 endef
79
80 define Package/iptables-mod-imq/description
81 iptables extension for IMQ support.
82 Includes:
83 - libipt_IMQ
84 endef
85
86 define Package/iptables-mod-ipopt
87 $(call Package/iptables/Default)
88 DEPENDS:=iptables +kmod-ipt-ipopt
89 TITLE:=IP/Packet option modules
90 endef
91
92 define Package/iptables-mod-ipopt/description
93 iptables extensions for matching/changing IP packet options.\\\
94 Includes:
95 - libipt_CLASSIFY
96 - libipt_dscp/DSCP
97 - libipt_ecn/ECN
98 - libipt_length
99 - libipt_mac
100 - libipt_tos/TOS
101 - libipt_tcpmms
102 - libipt_ttl/TTL
103 - libipt_unclean
104 endef
105
106 define Package/iptables-mod-ipsec
107 $(call Package/iptables/Default)
108 DEPENDS:=iptables +kmod-ipt-ipsec
109 TITLE:=IPSec extensions
110 endef
111
112 define Package/iptables-mod-ipsec/description
113 iptables extensions for matching ipsec traffic.
114 Includes:
115 - libipt_ah
116 - libipt_esp
117 endef
118
119 define Package/iptables-mod-nat
120 $(call Package/iptables/Default)
121 DEPENDS:=iptables +kmod-ipt-nat
122 TITLE:=extra NAT targets
123 endef
124
125 define Package/iptables-mod-nat/description
126 iptables extensions for different NAT targets.
127 Includes:
128 - libipt_REDIRECT
129 endef
130
131 define Package/iptables-mod-ulog
132 $(call Package/iptables/Default)
133 DEPENDS:=iptables +kmod-ipt-ulog
134 TITLE:=user-space packet logging
135 endef
136
137 define Package/iptables-mod-ulog/description
138 iptables extensions for user-space packet logging.
139 Includes:
140 - libipt_ULOG
141 endef
142
143 define Package/iptables-mod-iprange
144 $(call Package/iptables/Default)
145 DEPENDS:=iptables +kmod-ipt-iprange
146 TITLE:=ip range module
147 endef
148
149 define Package/iptables-mod-iprange/description
150 iptables extensions for matching ip ranges.
151 Includes:
152 - libipt_iprange
153 endef
154
155 define Package/iptables-mod-extra
156 $(call Package/iptables/Default)
157 DEPENDS:=iptables +kmod-ipt-extra
158 TITLE:=other extra iptables extensions
159 endef
160
161 define Package/iptables-mod-extra/description
162 other extra iptables extensions.
163 Includes:
164 - libipt_limit
165 - libipt_owner
166 - libipt_physdev
167 - libipt_pkttype
168 - libipt_recent
169 - libipt_NOTRACK
170 endef
171
172 define Package/iptables-mod-ipset
173 $(call Package/iptables/Default)
174 DEPENDS:=iptables +kmod-ipt-ipset
175 TITLE:=ipset iptables extension
176 endef
177
178 define Package/iptables-utils
179 $(call Package/iptables/Default)
180 DEPENDS:=iptables
181 TITLE:=iptables save and restore utilities
182 endef
183
184 define Package/ip6tables
185 $(call Package/iptables/Default)
186 DEPENDS:=+kmod-ipv6
187 CATEGORY:=Network
188 TITLE:=IPv6 firewall administration tool
189 endef
190
191 define Package/ip6tables-utils
192 $(call Package/iptables/Default)
193 DEPENDS:=ip6tables
194 CATEGORY:=Network
195 TITLE:=ip6tables save and restore utilities
196 endef
197
198 define Build/Configure
199 rm -f $(PKG_BUILD_DIR)/.configured*
200 $(MAKE) -C $(PKG_BUILD_DIR) \
201 clean
202 endef
203
204 define Build/Compile
205 chmod a+x $(PKG_BUILD_DIR)/extensions/.*-test*
206 mkdir -p $(PKG_INSTALL_DIR)
207 $(MAKE) -C $(PKG_BUILD_DIR) \
208 $(TARGET_CONFIGURE_OPTS) \
209 COPT_FLAGS="$(TARGET_CFLAGS)" \
210 LDFLAGS="-rdynamic -static-libgcc" \
211 KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \
212 DESTDIR="$(PKG_INSTALL_DIR)" \
213 all experimental install install-experimental
214 endef
215
216 define Build/InstallDev
217 $(MAKE) -C $(PKG_BUILD_DIR) \
218 $(TARGET_CONFIGURE_OPTS) \
219 COPT_FLAGS="$(TARGET_CFLAGS)" \
220 KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \
221 DESTDIR="$(STAGING_DIR)" \
222 install-devel
223 $(CP) $(PKG_BUILD_DIR)/include $(STAGING_DIR)/usr
224 $(CP) $(PKG_BUILD_DIR)/libiptc/libiptc.a $(STAGING_DIR)/usr/lib
225 endef
226
227 define Build/UninstallDev
228 rm -rf $(STAGING_DIR)/usr/include/libipq.h
229 rm -rf $(STAGING_DIR)/usr/include/libipulog
230 rm -rf $(STAGING_DIR)/usr/include/libipq
231 rm -rf $(STAGING_DIR)/usr/include/libiptc
232 rm -rf $(STAGING_DIR)/usr/include/linux/netfilter*
233 rm -rf $(STAGING_DIR)/usr/include/iptables*
234 rm -rf $(STAGING_DIR)/usr/include/ip6tables*
235 rm -rf $(STAGING_DIR)/usr/lib/libipq.a
236 rm -rf $(STAGING_DIR)/usr/lib/libiptc.a
237 endef
238
239 define Package/iptables/install
240 $(INSTALL_DIR) $(1)/etc/config
241 $(INSTALL_DATA) ./files/firewall.config $(1)/etc/config/firewall
242 $(INSTALL_DIR) $(1)/etc/init.d
243 $(INSTALL_BIN) ./files/firewall.init $(1)/etc/init.d/firewall
244 $(INSTALL_BIN) ./files/firewall.user $(1)/etc/
245 $(INSTALL_DIR) $(1)/usr/lib
246 $(INSTALL_DATA) ./files/firewall.awk $(1)/usr/lib
247 $(INSTALL_DIR) $(1)/usr/sbin
248 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables $(1)/usr/sbin/
249 $(INSTALL_DIR) $(1)/usr/lib/iptables
250 (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
251 $(CP) $(patsubst %,lib%.so,$(IPT_BUILTIN:xt_%=ipt_%)) $(1)/usr/lib/iptables/ \
252 )
253 endef
254
255 define Package/iptables-utils/install
256 $(INSTALL_DIR) $(1)/usr/sbin
257 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables-{save,restore} $(1)/usr/sbin/
258 endef
259
260 define Package/ip6tables/install
261 $(INSTALL_DIR) $(1)/usr/sbin
262 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables $(1)/usr/sbin/
263 $(INSTALL_DIR) $(1)/usr/lib/iptables
264 (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
265 $(CP) libip6t_*.so $(1)/usr/lib/iptables/ \
266 )
267 endef
268
269 define Package/ip6tables-utils/install
270 $(INSTALL_DIR) $(1)/usr/sbin
271 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables-{save,restore} $(1)/usr/sbin/
272 endef
273
274 define BuildPlugin
275 define Package/$(1)/install
276 $(INSTALL_DIR) $$(1)/usr/lib/iptables
277 for m in $$(patsubst xt_%,ipt_%,$(2)); do \
278 $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so $$(1)/usr/lib/iptables/ ; \
279 done
280 $(3)
281 endef
282
283 $$(eval $$(call BuildPackage,$(1)))
284 endef
285
286 L7_INSTALL:=\
287 $(INSTALL_DIR) $$(1)/etc/l7-protocols; \
288 $(CP) files/l7/*.pat $$(1)/etc/l7-protocols/
289
290 $(eval $(call BuildPackage,iptables))
291 $(eval $(call BuildPackage,iptables-utils))
292 $(eval $(call BuildPlugin,iptables-mod-conntrack,$(IPT_CONNTRACK-m)))
293 $(eval $(call BuildPlugin,iptables-mod-extra,$(IPT_EXTRA-m)))
294 $(eval $(call BuildPlugin,iptables-mod-ipset,$(IPT_IPSET-m)))
295 $(eval $(call BuildPlugin,iptables-mod-filter,$(IPT_FILTER-m),$(L7_INSTALL)))
296 $(eval $(call BuildPlugin,iptables-mod-imq,$(IPT_IMQ-m)))
297 $(eval $(call BuildPlugin,iptables-mod-ipopt,$(IPT_IPOPT-m)))
298 $(eval $(call BuildPlugin,iptables-mod-ipsec,$(IPT_IPSEC-m)))
299 $(eval $(call BuildPlugin,iptables-mod-nat,$(IPT_NAT-m)))
300 $(eval $(call BuildPlugin,iptables-mod-iprange,$(IPT_IPRANGE-m)))
301 $(eval $(call BuildPlugin,iptables-mod-ulog,$(IPT_ULOG-m)))
302 $(eval $(call BuildPackage,ip6tables))
303 $(eval $(call BuildPackage,ip6tables-utils))