2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2003-01-19 08:49:24 +01:00
|
|
|
#
|
|
|
|
# iptables
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2011-01-10 18:41:24 +01:00
|
|
|
|
2013-11-26 12:58:08 +01:00
|
|
|
IPTABLES_VERSION = 1.4.21
|
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
|
2013-08-30 23:57:20 +02:00
|
|
|
IPTABLES_DEPENDENCIES = host-pkgconf \
|
|
|
|
$(if $(BR2_PACKAGE_LIBNETFILTER_CONNTRACK),libnetfilter_conntrack)
|
2012-08-12 00:27:26 +02:00
|
|
|
IPTABLES_LICENSE = GPLv2
|
|
|
|
IPTABLES_LICENSE_FILES = COPYING
|
2014-10-21 18:58:14 +02:00
|
|
|
# Building static causes ugly warnings on some plugins
|
|
|
|
IPTABLES_CONF_OPTS = --libexecdir=/usr/lib --with-kernel=$(STAGING_DIR)/usr \
|
2014-12-03 22:41:29 +01:00
|
|
|
$(if $(BR2_STATIC_LIBS),,--disable-static)
|
2013-08-30 23:57:20 +02:00
|
|
|
# Because of iptables-01-fix-static-link.patch
|
|
|
|
IPTABLES_AUTORECONF = YES
|
2009-03-30 20:41:53 +02:00
|
|
|
|
2013-10-30 19:09:10 +01:00
|
|
|
# For connlabel match
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBNETFILTER_CONNTRACK),y)
|
|
|
|
IPTABLES_DEPENDENCIES += libnetfilter_conntrack
|
|
|
|
endif
|
|
|
|
|
|
|
|
# For nfnl_osf
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBNFNETLINK),y)
|
|
|
|
IPTABLES_DEPENDENCIES += libnfnetlink
|
|
|
|
endif
|
|
|
|
|
2010-09-01 23:52:52 +02:00
|
|
|
define IPTABLES_TARGET_SYMLINK_CREATE
|
2011-07-22 20:02:48 +02:00
|
|
|
ln -sf xtables-multi $(TARGET_DIR)/usr/sbin/iptables
|
|
|
|
ln -sf xtables-multi $(TARGET_DIR)/usr/sbin/iptables-save
|
|
|
|
ln -sf xtables-multi $(TARGET_DIR)/usr/sbin/iptables-restore
|
2010-09-01 23:52:52 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define IPTABLES_TARGET_IPV6_SYMLINK_CREATE
|
2011-07-22 20:02:48 +02:00
|
|
|
ln -sf xtables-multi $(TARGET_DIR)/usr/sbin/ip6tables
|
|
|
|
ln -sf xtables-multi $(TARGET_DIR)/usr/sbin/ip6tables-save
|
|
|
|
ln -sf xtables-multi $(TARGET_DIR)/usr/sbin/ip6tables-restore
|
2010-09-01 23:52:52 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
IPTABLES_POST_INSTALL_TARGET_HOOKS += IPTABLES_TARGET_SYMLINK_CREATE
|
|
|
|
|
|
|
|
IPTABLES_POST_INSTALL_TARGET_HOOKS += IPTABLES_TARGET_IPV6_SYMLINK_CREATE
|
2009-09-16 08:39:26 +02:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|