cleanup some of the custom work for devel libs
[openwrt-10.03/.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.5
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:=00fb916fa8040ca992a5ace56d905ea5
22 PKG_CAT:=bzcat
23
24 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
25 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
26
27 include $(INCLUDE_DIR)/package.mk
28 ifeq ($(DUMP),)
29   -include $(LINUX_DIR)/.config
30   include $(INCLUDE_DIR)/netfilter.mk
31 endif
32
33 define Package/iptables/Default
34   SECTION:=net
35   CATEGORY:=Base system
36   URL:=http://netfilter.org/
37 endef
38
39 define Package/iptables
40   $(call Package/iptables/Default)
41   TITLE:=IPv4 firewall administration tool
42   MENU:=1
43 endef
44
45 define Package/iptables/conffiles
46 /etc/config/firewall
47 /etc/firewall.user
48 endef
49
50 define Package/iptables-mod-conntrack
51   $(call Package/iptables/Default)
52   DEPENDS:=iptables +kmod-ipt-conntrack
53   TITLE:=connection tracking modules
54   DESCRIPTION:=\
55         iptables extensions for connection tracking.\\\
56         \\\
57         Includes: \\\
58         - libipt_conntrack \\\
59         - libipt_helper \\\
60         - libipt_connmark/CONNMARK
61 endef
62
63 define Package/iptables-mod-filter
64   $(call Package/iptables/Default)
65   DEPENDS:=iptables +kmod-ipt-filter
66   TITLE:=filter modules
67   DESCRIPTION:=\
68         iptables extensions for packet content inspection.\\\
69         \\\
70         Includes: \\\
71         - libipt_ipp2p \\\
72         - libipt_layer7 
73 endef
74
75 define Package/iptables-mod-imq
76   $(call Package/iptables/Default)
77   DEPENDS:=iptables
78   TITLE:=IMQ support
79   DESCRIPTION:=\
80         iptables extension for IMQ support.\\\
81         \\\
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   DESCRIPTION:=\
91         iptables extensions for matching/changing IP packet options.\\\
92         \\\
93         Includes: \\\
94         - libipt_dscp/DSCP \\\
95         - libipt_ecn/ECN \\\
96         - libipt_length \\\
97         - libipt_mac \\\
98         - libipt_tos/TOS \\\
99         - libipt_tcpmms \\\
100         - libipt_ttl/TTL \\\
101         - libipt_unclean 
102 endef
103
104 define Package/iptables-mod-ipsec
105   $(call Package/iptables/Default)
106   DEPENDS:=iptables +kmod-ipt-ipsec
107   TITLE:=IPSec extensions
108   DESCRIPTION:=\
109         iptables extensions for matching ipsec traffic.\\\
110         \\\
111         Includes: \\\
112         - libipt_ah \\\
113         - libipt_esp
114 endef
115
116 define Package/iptables-mod-nat
117   $(call Package/iptables/Default)
118   DEPENDS:=iptables +kmod-ipt-nat
119   TITLE:=extra NAT targets
120   DESCRIPTION:=\
121         iptables extensions for different NAT targets.\\\
122         \\\
123         Includes: \\\
124         - libipt_REDIRECT
125 endef
126
127 define Package/iptables-mod-ulog
128   $(call Package/iptables/Default)
129   DEPENDS:=iptables +kmod-ipt-ulog
130   TITLE:=user-space packet logging
131   DESCRIPTION:=\
132         iptables extensions for user-space packet logging.\\\
133         \\\
134         Includes: \\\
135         - libipt_ULOG
136 endef
137
138 define Package/iptables-mod-extra
139   $(call Package/iptables/Default)
140   DEPENDS:=iptables +kmod-ipt-extra
141   TITLE:=other extra iptables extensions
142   DESCRIPTION:=\
143         other extra iptables extensions.\\\
144         \\\
145         Includes: \\\
146         - libipt_limit \\\
147         - libipt_owner \\\
148         - libipt_physdev \\\
149         - libipt_pkttype \\\
150         - libipt_recent
151 endef
152
153 define Package/iptables-utils
154   $(call Package/iptables/Default)
155   DEPENDS:=iptables
156   TITLE:=iptables save and restore utilities
157 endef
158
159 define Package/ip6tables
160   $(call Package/iptables/Default)
161   CATEGORY:=Network
162   TITLE:=IPv6 firewall administration tool
163 endef
164
165 define Build/Configure
166 endef
167
168 define Build/Compile
169         chmod a+x $(PKG_BUILD_DIR)/extensions/.*-test*
170         mkdir -p $(PKG_INSTALL_DIR)
171         $(MAKE) -C $(PKG_BUILD_DIR) \
172                 $(TARGET_CONFIGURE_OPTS) \
173                 COPT_FLAGS="$(TARGET_CFLAGS)" \
174                 KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \
175                 DESTDIR="$(PKG_INSTALL_DIR)" \
176                 all install
177 endef
178
179 define Build/InstallDev
180         $(MAKE) -C $(PKG_BUILD_DIR) \
181                 $(TARGET_CONFIGURE_OPTS) \
182                 COPT_FLAGS="$(TARGET_CFLAGS)" \
183                 KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \
184                 DESTDIR="$(STAGING_DIR)" \
185                 install-devel
186         $(CP) $(PKG_BUILD_DIR)/include $(STAGING_DIR)/usr
187         $(CP) $(PKG_BUILD_DIR)/libiptc/libiptc.a $(STAGING_DIR)/usr/lib
188 endef
189
190 define Build/UninstallDev
191         rm -rf $(STAGING_DIR)/usr/include/libipulog
192         rm -rf $(STAGING_DIR)/usr/include/libipq
193         rm -rf $(STAGING_DIR)/usr/include/libiptc
194         rm -rf $(STAGING_DIR)/usr/include/linux/netfilter*
195         rm -rf $(STAGING_DIR)/usr/include/iptables*
196         rm -rf $(STAGING_DIR)/usr/include/ip6tables*
197         rm -rf $(STAGING_DIR)/usr/lib/libipq.a
198         rm -rf $(STAGING_DIR)/usr/lib/libiptc.a
199 endef
200
201 define Package/iptables/install
202         $(INSTALL_DIR) $(1)/etc/config
203         $(INSTALL_DATA) ./files/firewall.config $(1)/etc/config/firewall
204         $(INSTALL_DIR) $(1)/etc/init.d
205         $(INSTALL_BIN) ./files/firewall.init $(1)/etc/init.d/firewall
206         $(INSTALL_BIN) ./files/firewall.user $(1)/etc/
207         $(INSTALL_DIR) $(1)/usr/lib
208         $(INSTALL_DATA) ./files/firewall.awk $(1)/usr/lib
209         $(INSTALL_DIR) $(1)/usr/sbin
210         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables $(1)/usr/sbin/
211         $(INSTALL_DIR) $(1)/usr/lib/iptables
212         (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
213                 $(CP) $(patsubst %,lib%.so,$(IPT_BUILTIN:xt_%=ipt_%)) $(1)/usr/lib/iptables/ \
214         )
215 endef
216
217 define Package/iptables-utils/install
218         $(INSTALL_DIR) $(1)/usr/sbin
219         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables-{save,restore} $(1)/usr/sbin/
220 endef
221
222 define Package/ip6tables/install
223         $(INSTALL_DIR) $(1)/usr/sbin
224         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables $(1)/usr/sbin/
225         $(INSTALL_DIR) $(1)/usr/lib/iptables
226         (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
227                 $(CP) libip6t_*.so $(1)/usr/lib/iptables/ \
228         )
229 endef
230
231 define BuildPlugin
232   define Package/$(1)/install
233         $(INSTALL_DIR) $$(1)/usr/lib/iptables
234         for m in $$(patsubst xt_%,ipt_%,$(2)); do \
235                 $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so $$(1)/usr/lib/iptables/ ; \
236         done
237         $(3)
238   endef
239
240   $$(eval $$(call BuildPackage,$(1)))
241 endef
242
243 L7_INSTALL:=mkdir -p $$(1)/etc/l7-protocols; \
244         $(CP) files/l7/*.pat $$(1)/etc/l7-protocols/
245
246 $(eval $(call BuildPackage,iptables))
247 $(eval $(call BuildPackage,iptables-utils))
248 $(eval $(call BuildPlugin,iptables-mod-conntrack,$(IPT_CONNTRACK-m)))
249 $(eval $(call BuildPlugin,iptables-mod-extra,$(IPT_EXTRA-m)))
250 $(eval $(call BuildPlugin,iptables-mod-filter,$(IPT_FILTER-m),$(L7_INSTALL)))
251 $(eval $(call BuildPlugin,iptables-mod-imq,$(IPT_IMQ-m)))
252 $(eval $(call BuildPlugin,iptables-mod-ipopt,$(IPT_IPOPT-m)))
253 $(eval $(call BuildPlugin,iptables-mod-ipsec,$(IPT_IPSEC-m)))
254 $(eval $(call BuildPlugin,iptables-mod-nat,$(IPT_NAT-m)))
255 $(eval $(call BuildPlugin,iptables-mod-ulog,$(IPT_ULOG-m)))
256 $(eval $(call BuildPackage,ip6tables))