diff options
Diffstat (limited to 'iputils/iputils_20020927.oe')
-rw-r--r-- | iputils/iputils_20020927.oe | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/iputils/iputils_20020927.oe b/iputils/iputils_20020927.oe deleted file mode 100644 index 59eb256c61..0000000000 --- a/iputils/iputils_20020927.oe +++ /dev/null @@ -1,30 +0,0 @@ -SECTION = "console/utils" -BROKEN = "1" -DEPENDS = "docbook-utils-native" -DESCRIPTION = "Utilities for the IP protocol." - -SRC_URI = "http://www.tux.org/pub/people/alexey-kuznetsov/ip-routing/iputils-ss020927.tar.gz" -S = "${WORKDIR}/iputils" - -EXTRA_OEMAKE = "" - -do_compile () { - oe_runmake 'CC=${CC}' \ - KERNEL_INCLUDE="${STAGING_INCDIR}" \ - LIBC_INCLUDE="${STAGING_INCDIR}" - oe_runmake -C doc 'CC=${CC}' \ - KERNEL_INCLUDE="${STAGING_INCDIR}" \ - LIBC_INCLUDE="${STAGING_INCDIR}" -} - -do_install () { - install -d ${D}/bin ${D}${sbindir} \ - ${D}/${mandir}/man8 ${D}/${datadir}/doc/${P} - install -m 0755 ping ${D}/bin/ - for f in ipg tracepath clockdiff rdisc arping \ - tftpd rarpd tracepath6 traceroute6 ping6; do - install -m 0755 $f ${D}/${sbindir}/ - done - install -m 0644 doc/*.8 ${D}/${mandir}/man8/ - install -m 0644 doc/*.html ${D}/${datadir}/doc/${P}/ -} |