# HG changeset patch # User Samuel Trassare # Date 1351884760 0 # Node ID 49a0fd9e6d090446e900a2d7c6dedf89c26a6d85 # Parent 14d7ba023d04d3489e7e90fe345598afceb923c1 add traceroute 2.0.18. Really this time. diff -r 14d7ba023d04 -r 49a0fd9e6d09 traceroute/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/traceroute/description.txt Fri Nov 02 19:32:40 2012 +0000 @@ -0,0 +1,2 @@ +Traceroute is a network diagnostic tool for displaying the route (path) and +measuring transit delays of packets across an Internet Protocol (IP) network. diff -r 14d7ba023d04 -r 49a0fd9e6d09 traceroute/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/traceroute/receipt Fri Nov 02 19:32:40 2012 +0000 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="traceroute" +VERSION="2.0.18" +CATEGORY="network" +SHORT_DESC="The full-featured traceroute program." +MAINTAINER="samuel_trassare@yahoo.com" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://sourceforge.net/projects/$PACKAGE" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + make && make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp $install/usr/local/bin/traceroute $fs/usr/bin +} + +post_remove() +{ + # Restore the symlink to busybox. + ln -s /bin/busybox /usr/bin/traceroute +}