# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Traceroute-like application able to enumerate IP hops using existing TCP connections" HOMEPAGE="http://www.swiecki.net/project.html" SRC_URI="http://www.swiecki.net/red//progs/intrace.tgz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="net-libs/libpcap" S=${WORKDIR}/"intrace" src_unpack() { unpack ${A} cd "${S}" } src_compile() { emake -j1 || die "emake failed" } src_install() { dobin intrace dodoc README ChangeLog }