From: Benjamin Schweikert Date: Wed, 17 Feb 2010 12:39:11 +0000 (+0100) Subject: New naoki file: traceroute. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c14dcd085d6d6939c514ed7a712ff1e7f14bf4aa;p=ipfire-3.x.git New naoki file: traceroute. --- diff --git a/pkgs/core/traceroute/traceroute.nm b/pkgs/core/traceroute/traceroute.nm new file mode 100644 index 000000000..aac64511e --- /dev/null +++ b/pkgs/core/traceroute/traceroute.nm @@ -0,0 +1,64 @@ +############################################################################### +# # +# IPFire.org - A linux based firewall # +# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt # +# # +# This program is free software: you can redistribute it and/or modify # +# it under the terms of the GNU General Public License as published by # +# the Free Software Foundation, either version 3 of the License, or # +# (at your option) any later version. # +# # +# This program is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with this program. If not, see . # +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include $(PKGROOT)/Include + +PKG_NAME = traceroute +PKG_VER = 2.0.12 +PKG_REL = 0 + +PKG_MAINTAINER = +PKG_GROUP = Application/Internet +PKG_URL = http://traceroute.sourceforge.net +PKG_LICENSE = GPLv2+ +PKG_SUMMARY = Traces the route taken by packets over an IPv4/IPv6 network. + +PKG_DEPS += + +define PKG_DESCRIPTION + The traceroute utility displays the route used by IP packets \ + on their way to a specified network (or Internet) host. \ + Traceroute displays the IP number and host name (if possible) \ + of the machines along the route taken by the packets. \ + Traceroute is used as a network debugging tool. If you're \ + having network connectivity problems, traceroute will show you \ + where the trouble is coming from along the route. +endef + +PKG_TARBALL = $(THISAPP).tar.gz + +############################################################################### +# Installation Details +############################################################################### + +define STAGE_BUILD + cd $(DIR_APP) && make $(PARALLELISMFLAGS) LDFLAGS="" +endef + +define STAGE_INSTALL + cd $(DIR_APP) && make install prefix=/usr + chmod u-s /usr/bin/traceroute + ln -svf traceroute /usr/bin/traceroute6 +endef +