FreeBSD Bugzilla – Attachment 147156 Details for
Bug 193511
net/tcptraceroute-devel: Revive port, Take Maintainership
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
net/tcptracroute-devel REVIVE -- svn diff
2014-09-09.diff (text/plain), 6.60 KB, created by
Chris Hutchinson
on 2014-09-10 07:23:55 UTC
(
hide
)
Description:
net/tcptracroute-devel REVIVE -- svn diff
Filename:
MIME Type:
Creator:
Chris Hutchinson
Created:
2014-09-10 07:23:55 UTC
Size:
6.60 KB
patch
obsolete
>Index: tcptraceroute-devel/Makefile >=================================================================== >--- tcptraceroute-devel/Makefile (revision 0) >+++ tcptraceroute-devel/Makefile (working copy) >@@ -0,0 +1,39 @@ >+# Created by: josh.carroll@gmail.com >+# $FreeBSD$ >+ >+PORTNAME= tcptraceroute >+DISTVERSION= 1.5beta7 >+PORTREVISION= 1 >+CATEGORIES= net >+MASTER_SITES= http://BSDforge.com/projects/source/net/tcptraceroute/ \ >+ http://pflog.net/tcptraceroute/ >+PKGNAMESUFFIX= -devel >+ >+MAINTAINER= portmaster@bsdforge.com >+COMMENT= Traceroute implementation using TCP packets >+ >+LICENSE= GPLv2 >+ >+LIB_DEPENDS= libnet.so:${PORTSDIR}/net/libnet >+ >+CONFLICTS= tcptraceroute-1.4* >+ >+PORTDOCS= tcptraceroute.1.html tcptraceroute.lsm AUTHORS \ >+COPYING ChangeLog NEWS README examples.txt >+ >+OPTIONS_DEFINE= DOCS >+USES= gmake >+GNU_CONFIGURE= yes >+ >+LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet11-config >+ >+CONFIGURE_ARGS= --with-libpcap=/usr --bindir=${PREFIX}/sbin >+ >+pre-install: >+ @${CHMOD} u+s ${WRKSRC}/tcptraceroute >+ ${INSTALL_PROGRAM} ${WRKSRC}/tcptraceroute ${STAGEDIR}${PREFIX}/sbin/ >+post-install: >+ @${MKDIR} ${STAGEDIR}${DOCSDIR} >+ (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) >+ >+.include <bsd.port.mk> > >Property changes on: tcptraceroute-devel/Makefile >___________________________________________________________________ >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Index: tcptraceroute-devel/distinfo >=================================================================== >--- tcptraceroute-devel/distinfo (revision 0) >+++ tcptraceroute-devel/distinfo (working copy) >@@ -0,0 +1,2 @@ >+SHA256 (tcptraceroute-1.5beta7.tar.gz) = aed5b163ed4886f04242b46005a6cb4876ef38ad72001a94facb62a99dc99c57 >+SIZE (tcptraceroute-1.5beta7.tar.gz) = 119119 > >Property changes on: tcptraceroute-devel/distinfo >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: tcptraceroute-devel/files/patch-configure >=================================================================== >--- tcptraceroute-devel/files/patch-configure (revision 0) >+++ tcptraceroute-devel/files/patch-configure (working copy) >@@ -0,0 +1,46 @@ >+--- 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 > >Property changes on: tcptraceroute-devel/files/patch-configure >___________________________________________________________________ >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Index: tcptraceroute-devel/pkg-descr >=================================================================== >--- tcptraceroute-devel/pkg-descr (revision 0) >+++ tcptraceroute-devel/pkg-descr (working copy) >@@ -0,0 +1,18 @@ >+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://BSDforge.com/projects/net/tcptraceroute/ > >Property changes on: tcptraceroute-devel/pkg-descr >___________________________________________________________________ >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Index: tcptraceroute-devel/pkg-plist >=================================================================== >--- tcptraceroute-devel/pkg-plist (revision 0) >+++ tcptraceroute-devel/pkg-plist (working copy) >@@ -0,0 +1,3 @@ >+sbin/tcptraceroute >+man/man1/tcptraceroute.1.gz >+%%PORTDOCS%%@dirrm %%DOCSDIR%% > >Property changes on: tcptraceroute-devel/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 193511
: 147156 |
147157