Ticket #18156: Portfile

File Portfile, 1.8 KB (added by mike-savory, 15 years ago)

My draft Scapy 2 portfile

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id: Portfile 54905 2009-08-04 11:06:19Z snc@macports.org $
3
4PortSystem            1.0
5PortGroup             python25 1.0
6
7name                  scapy
8version               2.0.0.10
9categories            net security python
10platforms             darwin
11maintainers           pmq
12
13description           A powerful packet manipulation tool
14long_description      \
15        Scapy is a powerful interactive packet manipulation program. It is \
16        able to forge or decode packets of a wide number of protocols, send \
17        them on the wire, capture them, match requests and replies, and much \
18        more. It can easily handle most classical tasks like scanning, \
19        tracerouting, probing, unit tests, attacks or network discovery (it \
20        can replace hping, 85% of nmap, arpspoof, arp-sk, arping, tcpdump, \
21        tethereal, p0f, etc.). It also performs very well at a lot of other \
22        specific tasks that most other tools can't handle, like sending \
23        invalid frames, injecting your own 802.11 frames, combining technics \
24        (VLAN hopping+ARP cache poisoning, VOIP decoding on WEP encrypted \
25        channel, ...), etc.
26
27homepage                  http://www.secdev.org/projects/scapy
28master_sites          ${homepage}/files/
29distfiles             ${name}-${version}.zip
30use_zip               yes
31
32
33checksums           md5     a5b7be2e10c7d7e0a38bf09c803b60d5 \
34                    sha1    c912254fcce4db52052a8804189705fd5c15fa26 \
35                    rmd160  5a2e8182314b92306204ac1460844769f88563fd
36
37depends_lib-append    port:py25-readline    port:py25-pylibpcap \
38                      port:py25-libdnet     port:py25-crypto \
39                      port:py25-gnuplot     port:py25-pyx \
40                      port:graphviz
41