diff options
author | Renato Botelho <garga@FreeBSD.org> | 2005-12-22 13:57:16 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2005-12-22 13:57:16 +0000 |
commit | 690047809068eac49f6662e81253051fe3967dc0 (patch) | |
tree | 2e9b6316e854dd6a669455b1f68cb4bdfc70ba11 /net/pathneck | |
parent | c5ef95cf146b9c4fbd9c2e374dc194f1f0e0beff (diff) |
Pathneck is an active probing tool that can detect bottleneck location of
network path.
It only needs single end control, and has relatively small probing overhead
(33.6KB for one probing in the default setting).
WWW: http://gs274.sp.cs.cmu.edu/www/pathneck/
PR: ports/90801
Submitted by: Babak Farrokhi <babak@farrokhi.net>
Notes
Notes:
svn path=/head/; revision=151841
Diffstat (limited to 'net/pathneck')
-rw-r--r-- | net/pathneck/Makefile | 39 | ||||
-rw-r--r-- | net/pathneck/distinfo | 3 | ||||
-rw-r--r-- | net/pathneck/pkg-descr | 6 |
3 files changed, 48 insertions, 0 deletions
diff --git a/net/pathneck/Makefile b/net/pathneck/Makefile new file mode 100644 index 000000000000..3edd51923515 --- /dev/null +++ b/net/pathneck/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: pathneck +# Date Created: 22 Dec 2005 +# Whom: Babak Farrokhi <babak@farrokhi.net> +# +# $FreeBSD$ +# + +PORTNAME= pathneck +PORTVERSION= 1.2 +CATEGORIES= net +MASTER_SITES= http://gs274.sp.cs.cmu.edu/www/pathneck/ +EXTRACT_SUFX= .tgz + +MAINTAINER= babak@farrokhi.net +COMMENT= Active network path probing tool + +PLIST_FILES= sbin/pathneck \ + sbin/get-choke +PORTDOCS= COPYING ChangeLog README +MAKEFILE= Makefile.bsd + +USE_REINPLACE= yes + +post-patch: + @${REINPLACE_CMD} -e 's,^CC .=,CC ?=,' \ + -e 's,^CFLAGS .=,CFLAGS +=,' \ + ${WRKSRC}/Makefile.bsd + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/pathneck ${PREFIX}/sbin/pathneck + ${INSTALL_PROGRAM} ${WRKSRC}/get-choke ${PREFIX}/sbin/get-choke +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/net/pathneck/distinfo b/net/pathneck/distinfo new file mode 100644 index 000000000000..3491fb3780b0 --- /dev/null +++ b/net/pathneck/distinfo @@ -0,0 +1,3 @@ +MD5 (pathneck-1.2.tgz) = 24c5af803e2b8128d67dd5d84f13ae1a +SHA256 (pathneck-1.2.tgz) = abacbe19461ba22a2668c1bfbed2406d7760f9053d0ea2b0c7866bffc98ff600 +SIZE (pathneck-1.2.tgz) = 28484 diff --git a/net/pathneck/pkg-descr b/net/pathneck/pkg-descr new file mode 100644 index 000000000000..faf2ac868638 --- /dev/null +++ b/net/pathneck/pkg-descr @@ -0,0 +1,6 @@ +Pathneck is an active probing tool that can detect bottleneck location of +network path. +It only needs single end control, and has relatively small probing overhead +(33.6KB for one probing in the default setting). + +WWW: http://gs274.sp.cs.cmu.edu/www/pathneck/ |