diff options
author | Thilo Bangert <bangert@gentoo.org> | 2002-06-28 11:54:12 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2002-06-28 11:54:12 +0000 |
commit | 6911d65876b8f028b1d864c457bb943f046919ad (patch) | |
tree | a69c360ddda7b379d1acf59b7308f284679cc3bb /net-analyzer/tcptraceroute | |
parent | small fix0rs (diff) | |
download | historical-6911d65876b8f028b1d864c457bb943f046919ad.tar.gz historical-6911d65876b8f028b1d864c457bb943f046919ad.tar.bz2 historical-6911d65876b8f028b1d864c457bb943f046919ad.zip |
moving 13 packages from net-misc to net-analyzer - import
Diffstat (limited to 'net-analyzer/tcptraceroute')
-rw-r--r-- | net-analyzer/tcptraceroute/ChangeLog | 22 | ||||
-rw-r--r-- | net-analyzer/tcptraceroute/files/digest-tcptraceroute-1.2 | 1 | ||||
-rw-r--r-- | net-analyzer/tcptraceroute/tcptraceroute-1.2.ebuild | 29 |
3 files changed, 52 insertions, 0 deletions
diff --git a/net-analyzer/tcptraceroute/ChangeLog b/net-analyzer/tcptraceroute/ChangeLog new file mode 100644 index 000000000000..7f01ba93dfb9 --- /dev/null +++ b/net-analyzer/tcptraceroute/ChangeLog @@ -0,0 +1,22 @@ +# ChangeLog for net-analyzer/tcptraceroute +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcptraceroute/ChangeLog,v 1.1 2002/06/28 11:54:12 bangert Exp $ + + 28 Jun 2002; Thilo Bangert <bangert@gentoo.org> : + moved to net-analyzer - added SLOT - added LICENSE + +*tcptraceroute-1.2 (27 Mar 2002) + + 27 Mar 2002; Seemant Kulleen <seemant@gentoo.org> tcptraceroute-1.2.ebuild : + + Ungzipped HTML documentation. + +*tcptraceroute-1.2 (1 Feb 2002) + + 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/net-analyzer/tcptraceroute/files/digest-tcptraceroute-1.2 b/net-analyzer/tcptraceroute/files/digest-tcptraceroute-1.2 new file mode 100644 index 000000000000..4539309cf573 --- /dev/null +++ b/net-analyzer/tcptraceroute/files/digest-tcptraceroute-1.2 @@ -0,0 +1 @@ +MD5 e31e3f5bfd817d32ed6d954382ca768d tcptraceroute-1.2.tar.gz 25096 diff --git a/net-analyzer/tcptraceroute/tcptraceroute-1.2.ebuild b/net-analyzer/tcptraceroute/tcptraceroute-1.2.ebuild new file mode 100644 index 000000000000..989f8494d5b7 --- /dev/null +++ b/net-analyzer/tcptraceroute/tcptraceroute-1.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Bruce A. Locke <blocke@shivan.org> +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcptraceroute/tcptraceroute-1.2.ebuild,v 1.1 2002/06/28 11:54:12 bangert 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/" +SLOT="0" +LICENSE="GPL-2" + +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 ./ +} |