aboutsummaryrefslogtreecommitdiff
path: root/net/tcptraceroute-devel
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 23:05:26 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 23:05:26 +0000
commit39a5b78f8797ded2c50107a77794cd671dff707f (patch)
tree39f650e2e85c255908675444e0ce32d9639f251f /net/tcptraceroute-devel
parent11b0d3ddde2150d23a51c55b5597d968fe3a03bb (diff)
downloadports-39a5b78f8797ded2c50107a77794cd671dff707f.tar.gz
ports-39a5b78f8797ded2c50107a77794cd671dff707f.zip
Notes
Diffstat (limited to 'net/tcptraceroute-devel')
-rw-r--r--net/tcptraceroute-devel/Makefile45
-rw-r--r--net/tcptraceroute-devel/distinfo2
-rw-r--r--net/tcptraceroute-devel/files/patch-configure46
-rw-r--r--net/tcptraceroute-devel/pkg-descr18
-rw-r--r--net/tcptraceroute-devel/pkg-plist10
5 files changed, 0 insertions, 121 deletions
diff --git a/net/tcptraceroute-devel/Makefile b/net/tcptraceroute-devel/Makefile
deleted file mode 100644
index 162d1df74231..000000000000
--- a/net/tcptraceroute-devel/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
-# Created by: josh.carroll@gmail.com
-# $FreeBSD$
-
-PORTNAME= tcptraceroute
-DISTVERSION= 1.5beta7
-PORTREVISION= 1
-CATEGORIES= net
-MASTER_SITES= http://michael.toren.net/code/tcptraceroute/ \
- http://pflog.net/tcptraceroute/
-PKGNAMESUFFIX= -devel
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Traceroute implementation using TCP packets
-
-LIB_DEPENDS= libnet.so:${PORTSDIR}/net/libnet
-
-CONFLICTS= tcptraceroute-1.4*
-
-USES= gmake
-GNU_CONFIGURE= yes
-
-MAN1= tcptraceroute.1
-
-LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet11-config
-
-CONFIGURE_ARGS= --with-libpcap=/usr --bindir=${PREFIX}/sbin
-
-INSTALL_TARGET= install-exec-am install-man
-
-NO_STAGE= yes
-post-install:
- @${CHMOD} u+s ${PREFIX}/sbin/tcptraceroute
-.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}
- ${INSTALL_MAN} ${WRKSRC}/tcptraceroute.1.html ${DOCSDIR}
- ${INSTALL_MAN} ${WRKSRC}/tcptraceroute.lsm ${DOCSDIR}
- ${INSTALL_MAN} ${WRKSRC}/AUTHORS ${DOCSDIR}
- ${INSTALL_MAN} ${WRKSRC}/COPYING ${DOCSDIR}
- ${INSTALL_MAN} ${WRKSRC}/ChangeLog ${DOCSDIR}
- ${INSTALL_MAN} ${WRKSRC}/NEWS ${DOCSDIR}
- ${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR}
- ${INSTALL_MAN} ${WRKSRC}/examples.txt ${DOCSDIR}
-.endif
-
-.include <bsd.port.mk>
diff --git a/net/tcptraceroute-devel/distinfo b/net/tcptraceroute-devel/distinfo
deleted file mode 100644
index a54bf38cd78d..000000000000
--- a/net/tcptraceroute-devel/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (tcptraceroute-1.5beta7.tar.gz) = aed5b163ed4886f04242b46005a6cb4876ef38ad72001a94facb62a99dc99c57
-SIZE (tcptraceroute-1.5beta7.tar.gz) = 119119
diff --git a/net/tcptraceroute-devel/files/patch-configure b/net/tcptraceroute-devel/files/patch-configure
deleted file mode 100644
index 9fe536ac4aa0..000000000000
--- a/net/tcptraceroute-devel/files/patch-configure
+++ /dev/null
@@ -1,46 +0,0 @@
---- configure.old 2006-03-28 20:49:55.000000000 -0500
-+++ configure 2007-12-13 13:57:42.000000000 -0500
-@@ -3713,38 +3713,11 @@
-
- fi;
-
--LIBNET_CONFIG="libnet-config" # relative, using $PATH
--
--# Check whether --with-libnet or --without-libnet was given.
--if test "${with_libnet+set}" = set; then
-- withval="$with_libnet"
--
-- LIBNETCC=""
-- LIBNETLD=""
--
-- test -x "$withval/bin/libnet-config" && LIBNET_CONFIG="$withval/bin/libnet-config"
-- test -x "$withval/libnet-config" && LIBNET_CONFIG="$withval/libnet-config"
--
-- test -f "$withval/libnet.h" && LIBNETCC="$LIBNETCC -I$withval"
-- test -f "$withval/include/libnet.h" && LIBNETCC="$LIBNETCC -I$withval/include"
--
-- test -f "$withval/libnet.a" && LIBNETLD="$LIBNETLD -L$withval"
-- test -f "$withval/lib/libnet.a" && LIBNETLD="$LIBNETLD -L$withval/lib"
--
-- if test -z "$LIBNETCC" -o -z "$LIBNETLD"
-- then
-- { { echo "$as_me:$LINENO: error: No valid libnet library found in $withval" >&5
--echo "$as_me: error: No valid libnet library found in $withval" >&2;}
-- { (exit 1); exit 1; }; }
-- else
-- CPPFLAGS="$CPPFLAGS $LIBNETCC"
-- LDFLAGS="$LDFLAGS $LIBNETLD"
-- { echo "$as_me:$LINENO: using libnet in $withval" >&5
--echo "$as_me: using libnet in $withval" >&6;}
-- fi
--
--fi;
--
-+LIBNET_CONFIG="libnet11-config" # relative, using $PATH
-+LIBNETCC=`$LIBNET_CONFIG --cflags`
-+LIBNETLD=`$LIBNET_CONFIG --libs`
-+CPPFLAGS="$CPPFLAGS $LIBNETCC"
-+LDFLAGS="$LDFLAGS $LIBNETLD"
-
- echo "$as_me:$LINENO: checking for pcap_open_live in -lpcap" >&5
- echo $ECHO_N "checking for pcap_open_live in -lpcap... $ECHO_C" >&6
diff --git a/net/tcptraceroute-devel/pkg-descr b/net/tcptraceroute-devel/pkg-descr
deleted file mode 100644
index 35920dc8ed50..000000000000
--- a/net/tcptraceroute-devel/pkg-descr
+++ /dev/null
@@ -1,18 +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 7e278be821d7..000000000000
--- a/net/tcptraceroute-devel/pkg-plist
+++ /dev/null
@@ -1,10 +0,0 @@
-sbin/tcptraceroute
-%%PORTDOCS%%%%DOCSDIR%%/tcptraceroute.1.html
-%%PORTDOCS%%%%DOCSDIR%%/tcptraceroute.lsm
-%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
-%%PORTDOCS%%%%DOCSDIR%%/COPYING
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
-%%PORTDOCS%%%%DOCSDIR%%/NEWS
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%%%DOCSDIR%%/examples.txt
-%%PORTDOCS%%@dirrm %%DOCSDIR%%