--- /dev/null
+###############################################################################
+# #
+# 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 <http://www.gnu.org/licenses/>. #
+# #
+###############################################################################
+
+###############################################################################
+# 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
+