Date: Mon, 17 Jun 2013 13:30:53 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321108 - head/net/tcptrace Message-ID: <201306171330.r5HDUrQK092780@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Mon Jun 17 13:30:52 2013 New Revision: 321108 URL: http://svnweb.freebsd.org/changeset/ports/321108 Log: net/tcptrace: minor Makefile fixes - Trim Makefile header - Remove leading article from COMMENT - Add LICENSE (GPLv2) - Use PLIST_FILES instead of pkg-plist - NOPORTDOCS -> PORT_OPTIONS:MDOCS - Rework pkg-descr PR: ports/179156 Submitted by: nemysis <nemysis@gmx.ch> Approved by: culot / jpaetzel (mentors, implicit) Deleted: head/net/tcptrace/pkg-plist Modified: head/net/tcptrace/Makefile head/net/tcptrace/pkg-descr Modified: head/net/tcptrace/Makefile ============================================================================== --- head/net/tcptrace/Makefile Mon Jun 17 13:17:03 2013 (r321107) +++ head/net/tcptrace/Makefile Mon Jun 17 13:30:52 2013 (r321108) @@ -1,9 +1,5 @@ -# New ports collection makefile for: tcptrace -# Date created: 3 March 1997 -# Whom: fenner -# +# Created by: fenner # $FreeBSD$ -# PORTNAME= tcptrace PORTVERSION= 6.6.7 @@ -11,31 +7,35 @@ CATEGORIES= net ipv6 MASTER_SITES= http://www.tcptrace.org/download/ MAINTAINER= ports@FreeBSD.org -COMMENT= A TCP dump file analysis tool +COMMENT= TCP dump file analysis tool -MAKE_JOBS_SAFE= yes +LICENSE= GPLv2 GNU_CONFIGURE= yes ALL_TARGET= tcptrace +MAKE_JOBS_SAFE= yes + +PLIST_FILES= bin/${PORTNAME} \ + bin/xpl2gpl MAN1= tcptrace.1 -DOCFILES= ARGS CHANGES COPYING COPYRIGHT FAQ README README.mailing_list \ +PORTDOCS= ARGS CHANGES FAQ README README.mailing_list \ README.modules README.tline_graphs README.tput_graphs \ - README.version README.xpl2gpl THANKS WWW \ - dot_tcptracerc + README.version README.xpl2gpl THANKS dot_tcptracerc + +.include <bsd.port.options.mk> do-install: ${INSTALL_PROGRAM} ${WRKSRC}/tcptrace ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/xpl2gpl ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/tcptrace.man ${PREFIX}/man/man1/tcptrace.1 post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for file in ${DOCFILES} - ${INSTALL_MAN} ${WRKSRC}/${file} ${DOCSDIR} -.endfor + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.man ${MAN1PREFIX}/man/man1/${PORTNAME}.1 + +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif .include <bsd.port.mk> Modified: head/net/tcptrace/pkg-descr ============================================================================== --- head/net/tcptrace/pkg-descr Mon Jun 17 13:17:03 2013 (r321107) +++ head/net/tcptrace/pkg-descr Mon Jun 17 13:30:52 2013 (r321108) @@ -1,28 +1,15 @@ -tcptrace a TCP dump file analysis tool written by Shawn Ostermann -at Ohio University. It is NOT a packet capture program. It reads -output dump files in the formats of several popular packet capturing -programs: tcpdump, snoop, etherpeek, and netm. It can also output -(ie, convert thus converting to) tcpdump format files. +tcptrace is a TCP connection analysis tool. It can tell you detailed +information about TCP connections by sifting through dump files. +The dump file formats supported are: + Standard tcpdump format (you need the pcap library) + Sun's snoop format + Macintosh Etherpeek format + HP/NetMetrix protocol analysis format + NS simulator output format + NetScout + NLANR Tsh Format -For each connection, it keeps track of elapsed time, bytes/segments -sent and received, retransmissions, round trip times, window -advertisements, throughput, etc. Its output format ranges from -Simple to Long to Very Detailed. - -It can also produce three different types of graphs, as follows: - - Time Sequence Graph - This is the format that Tim Shepard started using at MIT some - years ago. It shows segments sent and ACKs returned as a - function of time. - Instantaneous Throughput - This format shows the instantaneous (averaged over a few - segments) throughput of the connection as a function of time. - Round Trip Times - This format shows the round trip times for the ACKs as a - function of time. - -The graphs produced are viewable only by Tim Shepard's wonderful -xplot program (in math/xplot). +To see the graphs, you'll also need Tim Shepard's xplot program, +available at http://www.xplot.org WWW: http://www.tcptrace.org/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306171330.r5HDUrQK092780>