2003-06-04 20:36:51 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# iproute2
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
2012-12-12 11:24:07 +01:00
|
|
|
IPROUTE2_VERSION = 3.7.0
|
2011-12-05 14:00:42 +01:00
|
|
|
IPROUTE2_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/net/iproute2
|
2010-09-23 14:53:23 +02:00
|
|
|
IPROUTE2_TARGET_SBINS = ctstat genl ifstat ip lnstat nstat routef routel rtacct rtmon rtpr rtstat ss tc
|
2012-08-13 22:02:39 +02:00
|
|
|
IPROUTE2_LICENSE = GPLv2
|
|
|
|
IPROUTE2_LICENSE_FILES = COPYING
|
2010-09-23 14:53:23 +02:00
|
|
|
|
2013-03-24 06:08:59 +01:00
|
|
|
IPROUTE2_DEPENDENCIES += host-bison host-flex
|
2013-03-23 23:26:36 +01:00
|
|
|
|
2011-01-28 15:46:50 +01:00
|
|
|
# If both iproute2 and busybox are selected, make certain we win
|
|
|
|
# the fight over who gets to have their utils actually installed.
|
|
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
|
|
IPROUTE2_DEPENDENCIES += busybox
|
|
|
|
endif
|
|
|
|
|
2011-01-10 18:41:25 +01:00
|
|
|
# If we've got iptables enable xtables support for tc
|
|
|
|
ifeq ($(BR2_PACKAGE_IPTABLES),y)
|
|
|
|
IPROUTE2_DEPENDENCIES += iptables
|
|
|
|
define IPROUTE2_WITH_IPTABLES
|
|
|
|
# Makefile is busted so it never passes IPT_LIB_DIR properly
|
|
|
|
$(SED) "s/-DIPT/-DXT/" $(IPROUTE2_DIR)/tc/Makefile
|
|
|
|
echo "TC_CONFIG_XT:=y" >>$(IPROUTE2_DIR)/Config
|
|
|
|
endef
|
2012-11-03 16:50:51 +01:00
|
|
|
else
|
|
|
|
define IPROUTE2_WITH_IPTABLES
|
|
|
|
# em_ipset needs xtables, but configure misdetects it
|
|
|
|
echo "TC_CONFIG_IPSET:=n" >>$(IPROUTE2_DIR)/Config
|
|
|
|
endef
|
2011-01-10 18:41:25 +01:00
|
|
|
endif
|
|
|
|
|
2010-09-23 14:53:23 +02:00
|
|
|
define IPROUTE2_CONFIGURE_CMDS
|
2012-11-03 09:21:25 +01:00
|
|
|
$(SED) 's/gcc/$$CC $$CFLAGS/g' $(@D)/configure
|
|
|
|
cd $(@D) && $(TARGET_CONFIGURE_OPTS) ./configure
|
2010-09-23 14:53:23 +02:00
|
|
|
# arpd needs berkeleydb
|
|
|
|
$(SED) "/^TARGETS=/s: arpd : :" $(IPROUTE2_DIR)/misc/Makefile
|
2011-01-10 18:41:25 +01:00
|
|
|
echo "IPT_LIB_DIR:=/usr/lib/xtables" >>$(IPROUTE2_DIR)/Config
|
|
|
|
$(IPROUTE2_WITH_IPTABLES)
|
2010-09-23 14:53:23 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define IPROUTE2_BUILD_CMDS
|
2011-07-22 17:27:29 +02:00
|
|
|
$(SED) 's/$$(CCOPTS)//' $(@D)/netem/Makefile
|
2013-03-23 23:26:36 +01:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" CCOPTS="$(TARGET_CFLAGS) -D_GNU_SOURCE" -C $(@D)
|
2010-09-23 14:53:23 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define IPROUTE2_INSTALL_TARGET_CMDS
|
2013-03-23 23:26:36 +01:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(TARGET_DIR)" \
|
|
|
|
SBINDIR=/sbin \
|
2010-09-23 14:53:23 +02:00
|
|
|
DOCDIR=/usr/share/doc/iproute2-$(IPROUTE2_VERSION) \
|
|
|
|
MANDIR=/usr/share/man install
|
|
|
|
# Wants bash
|
|
|
|
rm -f $(TARGET_DIR)/sbin/ifcfg
|
|
|
|
endef
|
|
|
|
|
|
|
|
define IPROUTE2_UNINSTALL_TARGET_CMDS
|
|
|
|
rm -rf $(TARGET_DIR)/lib/tc
|
|
|
|
rm -rf $(TARGET_DIR)/usr/lib/tc
|
|
|
|
rm -rf $(TARGET_DIR)/etc/iproute2
|
|
|
|
rm -rf $(TARGET_DIR)/var/lib/arpd
|
|
|
|
rm -f $(addprefix $(TARGET_DIR)/sbin/, $(IPROUTE2_TARGET_SBINS))
|
|
|
|
endef
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(generic-package))
|