2005-03-21 10:12:49 +02:00
|
|
|
# $Id$
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-05-18 13:40:10 +03:00
|
|
|
PKG_NAME:=iptables
|
2005-12-15 11:05:57 +02:00
|
|
|
PKG_VERSION:=1.3.4
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_MD5SUM:=fdff8abe890807968226b0c374335305
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2005-12-15 11:05:57 +02:00
|
|
|
PKG_SOURCE_URL:=http://www.netfilter.org/projects/iptables/files \
|
2005-06-06 18:47:13 +03:00
|
|
|
ftp://ftp.be.netfilter.org/pub/netfilter/iptables/ \
|
|
|
|
ftp://ftp.de.netfilter.org/pub/netfilter/iptables/ \
|
|
|
|
ftp://ftp.no.netfilter.org/pub/netfilter/iptables/
|
2005-05-18 13:40:10 +03:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_CAT:=bzcat
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2005-05-18 13:40:10 +03:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2005-11-11 23:15:16 +02:00
|
|
|
define IPKG_plugin_template
|
|
|
|
|
|
|
|
$$(IPKG_$(1)):
|
|
|
|
install -m0755 -d $$(IDIR_$(1))/usr/lib/iptables
|
|
|
|
for m in $(2); do \
|
|
|
|
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$${m}.so $$(IDIR_$(1))/usr/lib/iptables/ ; \
|
|
|
|
done
|
2005-11-18 18:17:27 +02:00
|
|
|
@[ -z "$(3)" ] || $(MAKE) $(3)
|
2005-11-11 23:15:16 +02:00
|
|
|
$(RSTRIP) $$(IDIR_$(1))
|
|
|
|
$(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2005-05-18 13:40:10 +03:00
|
|
|
include $(TOPDIR)/package/rules.mk
|
2005-11-11 23:15:16 +02:00
|
|
|
include $(LINUX_DIR)/.config
|
|
|
|
include $(TOPDIR)/target/linux/netfilter.mk
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2005-05-18 13:40:10 +03:00
|
|
|
$(eval $(call PKG_template,IPTABLES,iptables,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(eval $(call PKG_template,IPTABLES_EXTRA,iptables-extra,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(eval $(call PKG_template,IPTABLES_UTILS,iptables-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(eval $(call PKG_template,IP6TABLES,ip6tables,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2005-11-11 23:15:16 +02:00
|
|
|
$(eval $(call PKG_template,IPTABLES_MOD_CONNTRACK,iptables-mod-conntrack,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(eval $(call PKG_template,IPTABLES_MOD_EXTRA,iptables-mod-extra,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(eval $(call PKG_template,IPTABLES_MOD_FILTER,iptables-mod-filter,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(eval $(call PKG_template,IPTABLES_MOD_IMQ,iptables-mod-img,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(eval $(call PKG_template,IPTABLES_MOD_IPOPT,iptables-mod-ipopt,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(eval $(call PKG_template,IPTABLES_MOD_IPSEC,iptables-mod-ipsec,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(eval $(call PKG_template,IPTABLES_MOD_NAT,iptables-mod-nat,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(eval $(call PKG_template,IPTABLES_MOD_ULOG,iptables-mod-ulog,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
|
2005-12-07 06:50:51 +02:00
|
|
|
$(eval $(call IPKG_plugin_template,IPTABLES_MOD_CONNTRACK,$(IPT_CONNTRACK-m)))
|
|
|
|
$(eval $(call IPKG_plugin_template,IPTABLES_MOD_EXTRA,$(IPT_EXTRA-m)))
|
|
|
|
$(eval $(call IPKG_plugin_template,IPTABLES_MOD_FILTER,$(IPT_FILTER-m),layer7-install))
|
|
|
|
$(eval $(call IPKG_plugin_template,IPTABLES_MOD_IMQ,$(IPT_IMQ-m)))
|
|
|
|
$(eval $(call IPKG_plugin_template,IPTABLES_MOD_IPOPT,$(IPT_IPOPT-m)))
|
|
|
|
$(eval $(call IPKG_plugin_template,IPTABLES_MOD_IPSEC,$(IPT_IPSEC-m)))
|
|
|
|
$(eval $(call IPKG_plugin_template,IPTABLES_MOD_NAT,$(IPT_NAT-m)))
|
|
|
|
$(eval $(call IPKG_plugin_template,IPTABLES_MOD_ULOG,$(IPT_ULOG-m)))
|
2005-11-11 23:15:16 +02:00
|
|
|
|
2005-05-18 17:47:16 +03:00
|
|
|
$(PKG_BUILD_DIR)/.configured:
|
2005-05-20 00:22:09 +03:00
|
|
|
touch $@
|
2005-05-18 17:47:16 +03:00
|
|
|
|
2005-05-18 13:40:10 +03:00
|
|
|
$(PKG_BUILD_DIR)/.built:
|
2005-11-11 23:15:16 +02:00
|
|
|
chmod a+x $(PKG_BUILD_DIR)/extensions/.*-test*
|
2005-05-18 13:40:10 +03:00
|
|
|
mkdir -p $(PKG_INSTALL_DIR)
|
2005-03-06 05:34:52 +02:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2005-05-18 13:40:10 +03:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)" \
|
2005-03-06 05:34:52 +02:00
|
|
|
KERNEL_DIR=$(LINUX_DIR) PREFIX=/usr \
|
2005-05-18 13:40:10 +03:00
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install install-devel
|
2005-05-20 00:22:09 +03:00
|
|
|
touch $@
|
2005-04-01 23:43:11 +03:00
|
|
|
|
2005-05-18 13:40:10 +03:00
|
|
|
$(IPKG_IPTABLES):
|
|
|
|
install -d -m0755 $(IDIR_IPTABLES)/usr/sbin
|
|
|
|
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/iptables $(IDIR_IPTABLES)/usr/sbin/
|
|
|
|
install -d -m0755 $(IDIR_IPTABLES)/usr/lib/iptables
|
|
|
|
(cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
|
2005-12-07 06:50:51 +02:00
|
|
|
cp -fpR $(patsubst %,lib%.so,$(IPT_BUILTIN)) $(IDIR_IPTABLES)/usr/lib/iptables/ \
|
2005-05-18 13:40:10 +03:00
|
|
|
)
|
|
|
|
$(RSTRIP) $(IDIR_IPTABLES)
|
|
|
|
$(IPKG_BUILD) $(IDIR_IPTABLES) $(PACKAGE_DIR)
|
|
|
|
|
2005-12-09 13:35:06 +02:00
|
|
|
$(IPKG_IPTABLES_EXTRA):
|
|
|
|
$(IPKG_BUILD) $(IDIR_IPTABLES_EXTRA) $(PACKAGE_DIR)
|
|
|
|
|
2005-05-18 13:40:10 +03:00
|
|
|
$(IPKG_IPTABLES_UTILS):
|
|
|
|
install -d -m0755 $(IDIR_IPTABLES_UTILS)/usr/sbin
|
2005-11-11 23:15:16 +02:00
|
|
|
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/iptables-{save,restore} $(IDIR_IPTABLES_UTILS)/usr/sbin/
|
2005-05-18 13:40:10 +03:00
|
|
|
$(RSTRIP) $(IDIR_IPTABLES_UTILS)
|
|
|
|
$(IPKG_BUILD) $(IDIR_IPTABLES_UTILS) $(PACKAGE_DIR)
|
|
|
|
|
|
|
|
$(IPKG_IP6TABLES):
|
|
|
|
install -d -m0755 $(IDIR_IP6TABLES)/usr/sbin
|
|
|
|
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/ip6tables $(IDIR_IP6TABLES)/usr/sbin/
|
|
|
|
install -d -m0755 $(IDIR_IP6TABLES)/usr/lib/iptables
|
|
|
|
(cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
|
2005-11-11 23:15:16 +02:00
|
|
|
cp -fpR libip6t_*.so $(IDIR_IP6TABLES)/usr/lib/iptables/ \
|
2005-05-18 13:40:10 +03:00
|
|
|
)
|
|
|
|
$(RSTRIP) $(IDIR_IP6TABLES)
|
|
|
|
$(IPKG_BUILD) $(IDIR_IP6TABLES) $(PACKAGE_DIR)
|
|
|
|
|
|
|
|
$(STAGING_DIR)/usr/lib/libipq.a: $(PKG_BUILD_DIR)/.built
|
2005-11-11 23:15:16 +02:00
|
|
|
mkdir -p $(STAGING_DIR)/usr/include
|
2005-05-18 13:40:10 +03:00
|
|
|
cp -fpR $(PKG_INSTALL_DIR)/usr/include/libipq.h $(STAGING_DIR)/usr/include/
|
2005-11-11 23:15:16 +02:00
|
|
|
mkdir -p $(STAGING_DIR)/usr/lib
|
2005-05-18 13:40:10 +03:00
|
|
|
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libipq.a $(STAGING_DIR)/usr/lib/
|
|
|
|
|
2005-11-18 18:17:27 +02:00
|
|
|
layer7-install:
|
|
|
|
mkdir -p $(IDIR_IPTABLES_MOD_FILTER)/etc/l7-protocols
|
|
|
|
cp files/l7/*.pat $(IDIR_IPTABLES_MOD_FILTER)/etc/l7-protocols/
|
|
|
|
|
2005-05-18 13:40:10 +03:00
|
|
|
install-dev: $(STAGING_DIR)/usr/lib/libipq.a
|
|
|
|
|
|
|
|
uninstall-dev:
|
|
|
|
rm -rf $(STAGING_DIR)/usr/include/libipq.h
|
|
|
|
rm -rf $(STAGING_DIR)/usr/lib/libipq.a
|
|
|
|
|
2005-10-22 15:12:59 +03:00
|
|
|
compile-targets: install-dev
|
|
|
|
clean-targets: uninstall-dev
|