2003-01-19 08:49:24 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# iptables
|
|
|
|
#
|
|
|
|
#############################################################
|
2011-01-10 18:41:24 +01:00
|
|
|
|
2010-11-04 15:32:32 +01:00
|
|
|
IPTABLES_VERSION = 1.4.10
|
2008-09-16 04:12:23 +02:00
|
|
|
IPTABLES_SOURCE = iptables-$(IPTABLES_VERSION).tar.bz2
|
|
|
|
IPTABLES_SITE = http://ftp.netfilter.org/pub/iptables
|
2011-01-10 18:41:24 +01:00
|
|
|
IPTABLES_INSTALL_STAGING = YES
|
|
|
|
IPTABLES_AUTORECONF = YES
|
2010-06-07 22:18:32 +02:00
|
|
|
IPTABLES_DEPENDENCIES = host-pkg-config
|
2003-01-19 08:49:24 +01:00
|
|
|
|
2009-03-30 20:42:02 +02:00
|
|
|
IPTABLES_CONF_OPT = --libexecdir=/usr/lib --with-kernel=$(LINUX_HEADERS_DIR)
|
2009-03-30 20:41:53 +02:00
|
|
|
|
2010-09-01 23:52:52 +02:00
|
|
|
define IPTABLES_TARGET_SYMLINK_CREATE
|
2009-09-16 08:39:26 +02:00
|
|
|
ln -sf iptables-multi $(TARGET_DIR)/usr/sbin/iptables
|
|
|
|
ln -sf iptables-multi $(TARGET_DIR)/usr/sbin/iptables-save
|
|
|
|
ln -sf iptables-multi $(TARGET_DIR)/usr/sbin/iptables-restore
|
2010-09-01 23:52:52 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define IPTABLES_TARGET_IPV6_SYMLINK_CREATE
|
2009-09-16 08:39:26 +02:00
|
|
|
ln -sf ip6tables-multi $(TARGET_DIR)/usr/sbin/ip6tables
|
|
|
|
ln -sf ip6tables-multi $(TARGET_DIR)/usr/sbin/ip6tables-save
|
|
|
|
ln -sf ip6tables-multi $(TARGET_DIR)/usr/sbin/ip6tables-restore
|
2010-09-01 23:52:52 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define IPTABLES_TARGET_IPV6_REMOVE
|
2010-05-27 19:35:34 +02:00
|
|
|
rm -f $(TARGET_DIR)/usr/lib/libip6tc.*
|
2010-09-01 23:52:52 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
IPTABLES_POST_INSTALL_TARGET_HOOKS += IPTABLES_TARGET_SYMLINK_CREATE
|
|
|
|
|
|
|
|
ifeq ($(BR2_INET_IPV6),y)
|
|
|
|
IPTABLES_POST_INSTALL_TARGET_HOOKS += IPTABLES_TARGET_IPV6_SYMLINK_CREATE
|
|
|
|
else
|
|
|
|
IPTABLES_POST_INSTALL_TARGET_HOOKS += IPTABLES_TARGET_IPV6_REMOVE
|
2009-09-16 08:39:26 +02:00
|
|
|
endif
|
|
|
|
|
2010-09-01 23:52:52 +02:00
|
|
|
define IPTABLES_UNINSTALL_TARGET_CMDS
|
2009-03-03 23:28:15 +01:00
|
|
|
rm -f $(TARGET_DIR)/usr/bin/iptables-xml
|
|
|
|
rm -f $(TARGET_DIR)/usr/sbin/iptables* $(TARGET_DIR)/usr/sbin/ip6tables*
|
|
|
|
rm -rf $(TARGET_DIR)/usr/lib/xtables
|
2010-09-01 23:52:52 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call AUTOTARGETS,package,iptables))
|