Ticket #1353: Portfile

File Portfile, 1.2 KB (added by tp62@…, 21 years ago)

Portfile for tcpflow 0.21

Line 
1# $Id: Portfile,v 1.6 2003/03/18 08:08:04 jpm Exp $
2
3PortSystem 1.0
4name            tcpflow
5version         0.21
6revision        0
7categories      net security
8maintainers     jpm@opendarwin.org
9description     TCP flow recorder
10long_description        \
11        tcpflow is a program that captures data transmitted as part of TCP \
12        connections (flows), and stores the data in a way that is convenient \
13        for protocol analysis or debugging. A program like tcpdump(4) shows \
14        a summary of packets seen on the wire, but usually doesn't store the \
15        data that's actually being transmitted.  In contrast, tcpflow \
16        reconstructs the actual data streams and stores each flow in a \
17        separate file for later analysis.  tcpflow understands TCP sequence \
18        numbers and will correctly reconstruct data streams regardless of \
19        retransmissions or out-of-order delivery.
20homepage        http://www.circlemud.org/pub/jelson/tcpflow/
21platforms       darwin freebsd
22master_sites    http://www.circlemud.org/pub/jelson/tcpflow/
23checksums       md5 45a5aef6f043312315b7f342afc4a9c5
24depends_lib lib:libpcap:libpcap
25
26variant darwin {
27        pre-configure {
28                file copy -force /usr/share/libtool/config.guess ${worksrcpath}/config.guess
29                file copy -force /usr/share/libtool/config.sub ${worksrcpath}/config.sub
30        }
31}