# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Bruce A. Locke # $Header: /var/cvsroot/gentoo-x86/net-misc/tcptraceroute/tcptraceroute-1.2.ebuild,v 1.3 2002/03/27 12:19:27 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="tcptraceroute is a traceroute implementation using TCP packets" SRC_URI="http://michael.toren.net/code/tcptraceroute/${P}.tar.gz" HOMEPAGE="http://michael.toren.net/code/tcptraceroute/" DEPEND="sys-libs/glibc net-libs/libpcap net-libs/libnet" src_compile() { cd ${S} make CFLAGS="$CFLAGS" || die } src_install () { cd ${S} dodir /usr/sbin dosbin tcptraceroute doman tcptraceroute.8 dodoc examples.txt COPYING README changelog dohtml -r ./ }