a8a62c287d033d153a0b20f2a11e3778a9599b69
[openwrt/svn-archive/archive.git] / package / firewall / Makefile
1 #
2 # Copyright (C) 2008-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=firewall
10
11 PKG_VERSION:=2
12 PKG_RELEASE:=23
13
14 include $(INCLUDE_DIR)/package.mk
15
16 define Package/firewall
17 SECTION:=net
18 CATEGORY:=Base system
19 URL:=http://openwrt.org/
20 TITLE:=OpenWrt firewall
21 MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
22 DEPENDS:=+iptables +iptables-mod-conntrack +iptables-mod-nat
23 PKGARCH:=all
24 endef
25
26 define Package/firewall/description
27 UCI based firewall for OpenWrt
28 endef
29
30 define Build/Compile
31 true
32 endef
33
34 define Package/firewall/conffiles
35 /etc/config/firewall
36 /etc/firewall.user
37 endef
38
39 define Package/firewall/install
40 $(INSTALL_DIR) $(1)/lib/firewall
41 $(INSTALL_DATA) ./files/lib/*.sh $(1)/lib/firewall
42 $(INSTALL_DIR) $(1)/sbin
43 $(INSTALL_BIN) ./files/bin/fw $(1)/sbin
44 $(INSTALL_DIR) $(1)/etc/config
45 $(INSTALL_DATA) ./files/firewall.config $(1)/etc/config/firewall
46 $(INSTALL_DIR) $(1)/etc/init.d/
47 $(INSTALL_BIN) ./files/firewall.init $(1)/etc/init.d/firewall
48 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
49 $(INSTALL_DATA) ./files/firewall.hotplug $(1)/etc/hotplug.d/iface/20-firewall
50 $(INSTALL_DIR) $(1)/etc/hotplug.d/firewall
51 $(INSTALL_DATA) ./files/reflection.hotplug $(1)/etc/hotplug.d/firewall/10-nat-reflection
52 $(INSTALL_DIR) $(1)/etc
53 $(INSTALL_DATA) ./files/firewall.user $(1)/etc
54 endef
55
56 $(eval $(call BuildPackage,firewall))