X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/5eca1169a020f0d082a08ff282375f2ae2915503..7e450a1c869a5b227e3c91c4e71049059f1193e6:/package/iptables/Makefile?ds=sidebyside diff --git a/package/iptables/Makefile b/package/iptables/Makefile index ee0c0941b..f29aad3f9 100644 --- a/package/iptables/Makefile +++ b/package/iptables/Makefile @@ -38,7 +38,6 @@ endef define Package/iptables $(call Package/iptables/Default) - DEFAULT:=y TITLE:=IPv4 firewall administration tool MENU:=1 endef @@ -75,7 +74,7 @@ endef define Package/iptables-mod-imq $(call Package/iptables/Default) - DEPENDS:=iptables + DEPENDS:=iptables +kmod-ipt-imq TITLE:=IMQ support DESCRIPTION:=\ iptables extension for IMQ support.\\\ @@ -92,6 +91,7 @@ define Package/iptables-mod-ipopt iptables extensions for matching/changing IP packet options.\\\ \\\ Includes: \\\ + - libipt_CLASSIFY \\\ - libipt_dscp/DSCP \\\ - libipt_ecn/ECN \\\ - libipt_length \\\ @@ -163,7 +163,11 @@ define Package/ip6tables TITLE:=IPv6 firewall administration tool endef +$(PKG_BUILD_DIR)/.configured: $(LINUX_DIR)/.config + define Build/Configure + $(MAKE) -C $(PKG_BUILD_DIR) \ + clean endef define Build/Compile @@ -174,7 +178,7 @@ define Build/Compile COPT_FLAGS="$(TARGET_CFLAGS)" \ KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \ DESTDIR="$(PKG_INSTALL_DIR)" \ - all install install-devel + all install endef define Build/InstallDev @@ -183,39 +187,48 @@ define Build/InstallDev COPT_FLAGS="$(TARGET_CFLAGS)" \ KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \ DESTDIR="$(STAGING_DIR)" \ - install install-devel + install-devel + $(CP) $(PKG_BUILD_DIR)/include $(STAGING_DIR)/usr + $(CP) $(PKG_BUILD_DIR)/libiptc/libiptc.a $(STAGING_DIR)/usr/lib endef define Build/UninstallDev rm -rf $(STAGING_DIR)/usr/include/libipq.h + rm -rf $(STAGING_DIR)/usr/include/libipulog + rm -rf $(STAGING_DIR)/usr/include/libipq + rm -rf $(STAGING_DIR)/usr/include/libiptc + rm -rf $(STAGING_DIR)/usr/include/linux/netfilter* + rm -rf $(STAGING_DIR)/usr/include/iptables* + rm -rf $(STAGING_DIR)/usr/include/ip6tables* rm -rf $(STAGING_DIR)/usr/lib/libipq.a + rm -rf $(STAGING_DIR)/usr/lib/libiptc.a endef define Package/iptables/install - install -d -m0755 $(1)/etc/config - install -m0644 ./files/firewall.config $(1)/etc/config/firewall - install -d -m0755 $(1)/etc/init.d - install -m0755 ./files/firewall.init $(1)/etc/init.d/firewall - install -m0755 ./files/firewall.user $(1)/etc/ - install -d -m0755 $(1)/usr/lib - install -m0644 ./files/firewall.awk $(1)/usr/lib - install -d -m0755 $(1)/usr/sbin + $(INSTALL_DIR) $(1)/etc/config + $(INSTALL_DATA) ./files/firewall.config $(1)/etc/config/firewall + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) ./files/firewall.init $(1)/etc/init.d/firewall + $(INSTALL_BIN) ./files/firewall.user $(1)/etc/ + $(INSTALL_DIR) $(1)/usr/lib + $(INSTALL_DATA) ./files/firewall.awk $(1)/usr/lib + $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables $(1)/usr/sbin/ - install -d -m0755 $(1)/usr/lib/iptables + $(INSTALL_DIR) $(1)/usr/lib/iptables (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \ $(CP) $(patsubst %,lib%.so,$(IPT_BUILTIN:xt_%=ipt_%)) $(1)/usr/lib/iptables/ \ ) endef define Package/iptables-utils/install - install -d -m0755 $(1)/usr/sbin + $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables-{save,restore} $(1)/usr/sbin/ endef define Package/ip6tables/install - install -d -m0755 $(1)/usr/sbin + $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables $(1)/usr/sbin/ - install -d -m0755 $(1)/usr/lib/iptables + $(INSTALL_DIR) $(1)/usr/lib/iptables (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \ $(CP) libip6t_*.so $(1)/usr/lib/iptables/ \ ) @@ -223,7 +236,7 @@ endef define BuildPlugin define Package/$(1)/install - install -m0755 -d $$(1)/usr/lib/iptables + $(INSTALL_DIR) $$(1)/usr/lib/iptables for m in $$(patsubst xt_%,ipt_%,$(2)); do \ $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so $$(1)/usr/lib/iptables/ ; \ done @@ -233,7 +246,8 @@ define BuildPlugin $$(eval $$(call BuildPackage,$(1))) endef -L7_INSTALL:=mkdir -p $$(1)/etc/l7-protocols; \ +L7_INSTALL:=\ + $(INSTALL_DIR) $$(1)/etc/l7-protocols; \ $(CP) files/l7/*.pat $$(1)/etc/l7-protocols/ $(eval $(call BuildPackage,iptables))