2010-10-18 14:36:45 -04:00
|
|
|
# $OpenBSD: Makefile,v 1.24 2010/10/18 18:36:58 espie Exp $
|
2001-05-06 00:59:54 -04:00
|
|
|
|
2009-01-08 04:03:15 -05:00
|
|
|
COMMENT= TCP dump file analysis tool
|
add tcptrace port; jethro@dqc.org
-
tcptrace is 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
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.
1999-11-12 09:14:52 -05:00
|
|
|
|
2009-01-08 04:03:15 -05:00
|
|
|
DISTNAME= tcptrace-6.6.7
|
2010-07-12 18:07:37 -04:00
|
|
|
REVISION= 0
|
2009-01-08 04:03:15 -05:00
|
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://masaka.cs.ohiou.edu/software/tcptrace/
|
|
|
|
MASTER_SITES= ${HOMEPAGE}download/
|
add tcptrace port; jethro@dqc.org
-
tcptrace is 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
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.
1999-11-12 09:14:52 -05:00
|
|
|
|
2009-01-08 04:03:15 -05:00
|
|
|
# GPLv2
|
2000-03-22 20:11:29 -05:00
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
PERMIT_DISTFILES_FTP= Yes
|
2010-07-12 18:07:37 -04:00
|
|
|
|
2004-12-15 19:31:20 -05:00
|
|
|
WANTLIB= c m pcap
|
2000-03-22 20:11:29 -05:00
|
|
|
|
2009-02-14 15:56:16 -05:00
|
|
|
BUILD_DEPENDS= :bison-*:devel/bison
|
2002-10-17 14:21:29 -04:00
|
|
|
|
2009-02-14 15:56:16 -05:00
|
|
|
RUN_DEPENDS+= ::archivers/bzip2 \
|
|
|
|
::x11/xplot
|
add tcptrace port; jethro@dqc.org
-
tcptrace is 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
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.
1999-11-12 09:14:52 -05:00
|
|
|
|
2009-01-08 04:03:15 -05:00
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
CONFIGURE_ENV= YACC=bison
|
add tcptrace port; jethro@dqc.org
-
tcptrace is 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
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.
1999-11-12 09:14:52 -05:00
|
|
|
|
2009-01-08 04:03:15 -05:00
|
|
|
ALL_TARGET= tcptrace
|
|
|
|
|
2010-10-18 14:36:45 -04:00
|
|
|
USE_GROFF = Yes
|
2009-01-08 04:03:15 -05:00
|
|
|
NO_REGRESS= Yes
|
2002-10-27 20:38:44 -05:00
|
|
|
|
2002-10-17 14:21:29 -04:00
|
|
|
DOCFILES= ARGS COPYRIGHT FAQ README README.mailing_list README.modules \
|
|
|
|
README.tput_graphs WWW dot_tcptracerc
|
add tcptrace port; jethro@dqc.org
-
tcptrace is 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
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.
1999-11-12 09:14:52 -05:00
|
|
|
|
|
|
|
do-install:
|
2000-04-22 23:34:40 -04:00
|
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/tcptrace
|
add tcptrace port; jethro@dqc.org
-
tcptrace is 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
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.
1999-11-12 09:14:52 -05:00
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tcptrace ${PREFIX}/bin
|
|
|
|
${INSTALL_MAN} ${WRKSRC}/tcptrace.man ${PREFIX}/man/man1/tcptrace.1
|
|
|
|
.for file in ${DOCFILES}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/tcptrace
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|