9a0776e343
- 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.
27 lines
732 B
Makefile
27 lines
732 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 1999/11/12 14:14:52 brad Exp $
|
|
|
|
DISTNAME= tcptrace.5.2.1
|
|
PKGNAME= tcptrace-5.2.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://jarok.cs.ohiou.edu/software/tcptrace/files/5.2.1/
|
|
|
|
MAINTAINER= jethro@dqc.org
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
ALL_TARGET= tcptrace
|
|
WRKSRC= ${WRKDIR}/tcptrace_5.2.1
|
|
|
|
DOCFILES= ARGS BUGS CHANGES COPYRIGHT FAQ README README.mailing_list \
|
|
README.modules README.tput_graphs WWW dot_tcptracerc.sample
|
|
|
|
do-install:
|
|
@mkdir -p ${PREFIX}/share/doc/tcptrace
|
|
${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>
|