summaryrefslogtreecommitdiff
path: root/net/tcptraceroute/Makefile
diff options
context:
space:
mode:
authorkim <kim>2003-07-21 22:26:53 +0000
committerkim <kim>2003-07-21 22:26:53 +0000
commitcfd4f61817a0a465ac34e7257cae4ed0cd58cd9c (patch)
treee5e00e78556703280bff377dd2361de4202eb27d /net/tcptraceroute/Makefile
parent5c9b26a0674a6bd9360ef913e3e2e64101f7adf3 (diff)
downloadpkgsrc-cfd4f61817a0a465ac34e7257cae4ed0cd58cd9c.tar.gz
Add tcptraceroute-1.4
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.
Diffstat (limited to 'net/tcptraceroute/Makefile')
-rw-r--r--net/tcptraceroute/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/net/tcptraceroute/Makefile b/net/tcptraceroute/Makefile
new file mode 100644
index 00000000000..22dc035aa57
--- /dev/null
+++ b/net/tcptraceroute/Makefile
@@ -0,0 +1,30 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/07/21 22:26:53 kim Exp $
+#
+
+DISTNAME= tcptraceroute-1.4
+CATEGORIES= net
+MASTER_SITES= http://michael.toren.net/code/tcptraceroute/
+
+MAINTAINER= kim@tac.nyc.ny.us
+HOMEPAGE= http://michael.toren.net/code/tcptraceroute/
+COMMENT= A traceroute implementation using TCP packets
+
+USE_BUILDLINK2= YES
+
+ALL_TARGET= tcptraceroute
+
+DOCDIR= ${PREFIX}/share/doc/tcptraceroute
+BINMODE= 4711
+
+.include "../../mk/bsd.prefs.mk"
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/tcptraceroute ${PREFIX}/sbin
+ ${INSTALL_MAN} ${WRKSRC}/tcptraceroute.8 ${PREFIX}/man/man8
+ ${INSTALL_DATA_DIR} ${DOCDIR}
+ ${INSTALL_DATA} ${WRKSRC}/examples.txt ${DOCDIR}
+
+.include "../../devel/libnet/buildlink2.mk"
+.include "../../net/libpcap/buildlink2.mk"
+
+.include "../../mk/bsd.pkg.mk"