diff options
Diffstat (limited to 'net/tcptraceroute-devel')
-rw-r--r-- | net/tcptraceroute-devel/Makefile | 19 | ||||
-rw-r--r-- | net/tcptraceroute-devel/distinfo | 1 | ||||
-rw-r--r-- | net/tcptraceroute-devel/files/patch-Makefile | 36 | ||||
-rw-r--r-- | net/tcptraceroute-devel/pkg-comment | 1 | ||||
-rw-r--r-- | net/tcptraceroute-devel/pkg-descr | 17 | ||||
-rw-r--r-- | net/tcptraceroute-devel/pkg-plist | 1 |
6 files changed, 0 insertions, 75 deletions
diff --git a/net/tcptraceroute-devel/Makefile b/net/tcptraceroute-devel/Makefile deleted file mode 100644 index cc47f71b3b34..000000000000 --- a/net/tcptraceroute-devel/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# New ports collection makefile for: tcptraceroute -# Date created: 21 March 2002 -# Whom: jeff@cetlink.net -# -# $FreeBSD$ -# - -PORTNAME= tcptraceroute -PORTVERSION= 1.2 -CATEGORIES= net -MASTER_SITES= http://michael.toren.net/code/tcptraceroute/ - -MAINTAINER= ports@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/lib/libnet.a:${PORTSDIR}/net/libnet - -MAN8= tcptraceroute.8 - -.include <bsd.port.mk> diff --git a/net/tcptraceroute-devel/distinfo b/net/tcptraceroute-devel/distinfo deleted file mode 100644 index ac6a05502f90..000000000000 --- a/net/tcptraceroute-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (tcptraceroute-1.2.tar.gz) = e31e3f5bfd817d32ed6d954382ca768d diff --git a/net/tcptraceroute-devel/files/patch-Makefile b/net/tcptraceroute-devel/files/patch-Makefile deleted file mode 100644 index 173962cb0853..000000000000 --- a/net/tcptraceroute-devel/files/patch-Makefile +++ /dev/null @@ -1,36 +0,0 @@ ---- Makefile.orig Wed Aug 1 07:52:40 2001 -+++ Makefile Sun Mar 24 10:36:40 2002 -@@ -1,20 +1,27 @@ - # tcptraceroute -- A traceroute implementation using TCP packets - # Copyright (c) 2001, Michael C. Toren <mct@toren.net> - --CC = gcc --CFLAGS = -O2 -Wall --DESTDIR=/usr/local/bin -+CC ?= cc -+CFLAGS ?= -O2 -Wall -+LNETINC= -I/usr/local/include -+LNETLIB= -L/usr/local/lib -+ -+BINDIR= ${PREFIX}/bin -+MANDIR= ${PREFIX}/man -+ -+all: tcptraceroute - - tcptraceroute: tcptraceroute.c -- $(CC) $(CFLAGS) `libnet-config --defines` \ -+ $(CC) $(CFLAGS) `libnet-config --defines` $(LNETINC) \ - -o tcptraceroute tcptraceroute.c \ -- `libnet-config --libs` -lpcap -+ $(LNETLIB) `libnet-config --libs` -lpcap - - static: - $(MAKE) tcptraceroute CFLAGS="$(CFLAGS) -static" - - install: tcptraceroute -- install -D tcptraceroute $(DESTDIR)/tcptraceroute -+ install -c -s tcptraceroute $(BINDIR)/tcptraceroute -+ install -c -m 444 tcptraceroute.8 $(MANDIR)/man8/tcptraceroute.8 - - distrib: clean changelog man - diff --git a/net/tcptraceroute-devel/pkg-comment b/net/tcptraceroute-devel/pkg-comment deleted file mode 100644 index da541f6a712b..000000000000 --- a/net/tcptraceroute-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A traceroute implementation using TCP packets diff --git a/net/tcptraceroute-devel/pkg-descr b/net/tcptraceroute-devel/pkg-descr deleted file mode 100644 index a25b74bedc74..000000000000 --- a/net/tcptraceroute-devel/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -tcptraceroute is a traceroute implementation using TCP packets. - -The more traditional traceroute(8) sends out either UDP or ICMP ECHO packets -with a TTL of one, and increments the TTL until the destination has been -reached. By printing the gateways that generate ICMP time exceeded messages -along the way, it is able to determine the path packets are taking to reach -the destination. - -The problem is that with the widespread use of firewalls on the modern -Internet, many of the packets that traceroute(8) sends out end up being -filtered, making it impossible to completely trace the path to the destination. -However, in many cases, these firewalls will permit inbound TCP packets to -specific ports that hosts sitting behind the firewall are listening for -connections on. By sending out TCP SYN packets instead of UDP or ICMP ECHO -packets, tcptraceroute is able to bypass the most common firewall filters. - -WWW: http://michael.toren.net/code/tcptraceroute/ diff --git a/net/tcptraceroute-devel/pkg-plist b/net/tcptraceroute-devel/pkg-plist deleted file mode 100644 index 046b642ecf10..000000000000 --- a/net/tcptraceroute-devel/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/tcptraceroute |