2011-07-11 16:33:31 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# ebtables
|
|
|
|
#
|
|
|
|
#############################################################
|
2011-12-04 12:45:18 +01:00
|
|
|
|
2012-01-05 19:26:19 +01:00
|
|
|
EBTABLES_VERSION = 2.0.10-4
|
2011-07-11 16:33:31 +02:00
|
|
|
EBTABLES_SOURCE = ebtables-v$(EBTABLES_VERSION).tar.gz
|
2012-08-26 01:52:48 +02:00
|
|
|
EBTABLES_SITE = http://downloads.sourceforge.net/project/ebtables/ebtables/ebtables-$(EBTABLES_VERSION)
|
2012-08-01 06:48:59 +02:00
|
|
|
EBTABLES_LICENSE = GPLv2
|
|
|
|
EBTABLES_LICENSE_FILES = COPYING
|
2011-07-11 16:33:31 +02:00
|
|
|
|
|
|
|
define EBTABLES_BUILD_CMDS
|
|
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) LIBDIR=/lib/ebtables -C $(@D)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define EBTABLES_INSTALL_TARGET_CMDS
|
|
|
|
for so in $(@D)/$(EBTABLES_SUBDIR)/*.so \
|
|
|
|
$(@D)/$(EBTABLES_SUBDIR)/extensions/*.so; \
|
|
|
|
do \
|
|
|
|
$(INSTALL) -m 0755 -D $${so} \
|
|
|
|
$(TARGET_DIR)/lib/ebtables/`basename $${so}`; \
|
|
|
|
done
|
|
|
|
$(INSTALL) -m 0755 -D $(@D)/$(EBTABLES_SUBDIR)/ebtables \
|
|
|
|
$(TARGET_DIR)/sbin/ebtables
|
|
|
|
endef
|
|
|
|
|
|
|
|
define EBTABLES_UNINSTALL_TARGET_CMDS
|
|
|
|
rm -rf $(TARGET_DIR)/lib/ebtables
|
|
|
|
rm -f $(TARGET_DIR)/sbin/ebtables
|
|
|
|
endef
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(generic-package))
|