|
@@ -4,45 +4,31 @@
|
|
|
#
|
|
|
################################################################################
|
|
|
|
|
|
-EBTABLES_VERSION = 2.0.10-4
|
|
|
-EBTABLES_SOURCE = ebtables-v$(EBTABLES_VERSION).tar.gz
|
|
|
+EBTABLES_VERSION = 2.0.11
|
|
|
EBTABLES_SITE = http://ftp.netfilter.org/pub/ebtables
|
|
|
EBTABLES_LICENSE = GPL-2.0+
|
|
|
EBTABLES_LICENSE_FILES = COPYING
|
|
|
-EBTABLES_STATIC = $(if $(BR2_STATIC_LIBS),static)
|
|
|
-EBTABLES_K64U32 = $(if $(BR2_KERNEL_64_USERLAND_32),-DKERNEL_64_USERSPACE_32)
|
|
|
-
|
|
|
-define EBTABLES_BUILD_CMDS
|
|
|
- $(MAKE) $(TARGET_CONFIGURE_OPTS) LIBDIR=/lib/ebtables $(EBTABLES_STATIC) \
|
|
|
- CFLAGS="$(TARGET_CFLAGS) $(EBTABLES_K64U32)" -C $(@D)
|
|
|
-endef
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_EBTABLES_UTILS_SAVE),y)
|
|
|
define EBTABLES_INSTALL_TARGET_UTILS_SAVE
|
|
|
- $(INSTALL) -m 0755 -D $(@D)/ebtables-save.sh $(TARGET_DIR)/sbin/ebtables-save
|
|
|
+ $(INSTALL) -m 0755 -D $(@D)/ebtables-save.sh $(TARGET_DIR)/usr/sbin/ebtables-legacy-save
|
|
|
endef
|
|
|
-endif
|
|
|
-ifeq ($(BR2_PACKAGE_EBTABLES_UTILS_RESTORE),y)
|
|
|
-define EBTABLES_INSTALL_TARGET_UTILS_RESTORE
|
|
|
- $(INSTALL) -m 0755 -D $(@D)/ebtables-restore $(TARGET_DIR)/sbin/ebtables-restore
|
|
|
+EBTABLES_POST_INSTALL_TARGET_HOOKS += EBTABLES_INSTALL_TARGET_UTILS_SAVE
|
|
|
+else
|
|
|
+# ebtables-legacy-save is installed by default, thus remove it from target
|
|
|
+define EBTABLES_REMOVE_UTILS_SAVE
|
|
|
+ $(RM) -f $(TARGET_DIR)/usr/sbin/ebtables-legacy-save
|
|
|
endef
|
|
|
+EBTABLES_POST_INSTALL_TARGET_HOOKS += EBTABLES_REMOVE_UTILS_SAVE
|
|
|
endif
|
|
|
|
|
|
-ifeq ($(BR2_STATIC_LIBS),y)
|
|
|
-define EBTABLES_INSTALL_TARGET_CMDS
|
|
|
- $(INSTALL) -m 0755 -D $(@D)/static $(TARGET_DIR)/sbin/ebtables
|
|
|
-endef
|
|
|
-else
|
|
|
-define EBTABLES_INSTALL_TARGET_CMDS
|
|
|
- $(foreach so,$(wildcard $(@D)/*.so $(@D)/extensions/*.so), \
|
|
|
- $(INSTALL) -m 0755 -D $(so) \
|
|
|
- $(TARGET_DIR)/lib/ebtables/$(notdir $(so))
|
|
|
- )
|
|
|
- $(INSTALL) -m 0755 -D $(@D)/ebtables $(TARGET_DIR)/sbin/ebtables
|
|
|
- $(INSTALL) -m 0644 -D $(@D)/ethertypes $(TARGET_DIR)/etc/ethertypes
|
|
|
- $(EBTABLES_INSTALL_TARGET_UTILS_RESTORE)
|
|
|
- $(EBTABLES_INSTALL_TARGET_UTILS_SAVE)
|
|
|
+# ebtables-legacy-restore is installed by default, thus remove it if not
|
|
|
+# selected
|
|
|
+ifeq ($(BR2_PACKAGE_EBTABLES_UTILS_RESTORE),)
|
|
|
+define EBTABLES_REMOVE_UTILS_RESTORE
|
|
|
+ $(RM) -f $(TARGET_DIR)/usr/sbin/ebtables-legacy-restore
|
|
|
endef
|
|
|
+EBTABLES_POST_INSTALL_TARGET_HOOKS += EBTABLES_REMOVE_UTILS_RESTORE
|
|
|
endif
|
|
|
|
|
|
-$(eval $(generic-package))
|
|
|
+$(eval $(autotools-package))
|