38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
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"
|
|
|
|
DEPENDS = "flex-native bison-native"
|
|
|
|
inherit update-alternatives
|
|
|
|
EXTRA_OEMAKE = "CC='${CC}' KERNEL_INCLUDE=${STAGING_KERNEL_DIR}/include DOCDIR=${docdir}/iproute2 SUBDIRS='lib tc ip' SBINDIR=/sbin"
|
|
|
|
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
|
|
}
|
|
|
|
# There are only .so files in iproute2
|
|
INSANE_SKIP_${PN} = "dev-so"
|
|
|
|
FILES_${PN} += "${base_libdir}/tc/*"
|
|
FILES_${PN}-dbg += "${base_libdir}/tc/.debug"
|
|
|
|
ALTERNATIVE_NAME = "ip"
|
|
ALTERNATIVE_PATH = "${base_sbindir}/ip.iproute2"
|
|
ALTERNATIVE_LINK = "${base_bindir}/ip"
|
|
ALTERNATIVE_PRIORITY = "100"
|
|
|
|
PARALLEL_MAKE = ""
|