2024-09-09 08:52:07 +00:00
|
|
|
SUMMARY = "TCP / IP networking and traffic control utilities"
|
|
|
|
DESCRIPTION = "Iproute2 is a collection of utilities for controlling \
|
|
|
|
TCP / IP networking and traffic control in Linux. Of the utilities ip \
|
|
|
|
and tc are the most important. ip controls IPv4 and IPv6 \
|
|
|
|
configuration and tc stands for traffic control."
|
|
|
|
HOMEPAGE = "http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2"
|
|
|
|
SECTION = "base"
|
|
|
|
LICENSE = "GPLv2+"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \
|
|
|
|
file://ip/ip.c;beginline=3;endline=8;md5=689d691d0410a4b64d3899f8d6e31817"
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
DEPENDS = "flex-native bison-native iptables"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
inherit update-alternatives
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
EXTRA_OEMAKE = "CC='${CC}' KERNEL_INCLUDE=${STAGING_INCDIR} DOCDIR=${docdir}/iproute2 SUBDIRS='lib tc ip' SBINDIR='${base_sbindir}' LIBDIR='${libdir}'"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
do_install () {
|
|
|
|
oe_runmake DESTDIR=${D} install
|
|
|
|
mv ${D}${base_sbindir}/ip ${D}${base_sbindir}/ip.iproute2
|
|
|
|
install -d ${D}${datadir}
|
|
|
|
mv ${D}/share/* ${D}${datadir}/ || true
|
|
|
|
rm ${D}/share -rf || true
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
# The .so files in iproute2-tc are modules, not traditional libraries
|
|
|
|
INSANE_SKIP_${PN}-tc = "dev-so"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
PACKAGES =+ "${PN}-tc"
|
|
|
|
FILES_${PN}-tc = "${base_sbindir}/tc* \
|
|
|
|
${libdir}/tc/*.so"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
FILES_${PN}-dbg += "${libdir}/tc/.debug"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
ALTERNATIVE_${PN} = "ip"
|
|
|
|
ALTERNATIVE_TARGET[ip] = "${base_sbindir}/ip.${BPN}"
|
|
|
|
ALTERNATIVE_LINK_NAME[ip] = "${base_sbindir}/ip"
|
|
|
|
ALTERNATIVE_PRIORITY = "100"
|