Ticket #19533: Portfile

File Portfile, 1.6 KB (added by hsivank@…, 15 years ago)
Line 
1PortSystem 1.0
2name             yersinia
3version          0.7.1
4revision         0
5categories       net security
6maintainers      gmail.org:hsivank
7description      Solid framework for analyzing and testing the deployed networks and systems.
8long_description \
9   Yersinia is a network tool designed to take advantage of some weakeness in different \
10   network protocols. It pretends to be a solid framework for analyzing and testing the \
11   deployed networks and systems. \
12   Currently, there are some network protocols implemented, but others are coming \
13   (tell us which one is your preferred). Attacks for the following network protocols are\
14   implemented (but of course you are free for implementing new ones):\
15        Spanning Tree Protocol (STP)\
16        Cisco Discovery Protocol (CDP)\
17        Dynamic Trunking Protocol (DTP)\
18        Dynamic Host Configuration Protocol (DHCP)\
19        Hot Standby Router Protocol (HSRP)\
20        IEEE 802.1Q\
21        IEEE 802.1X\
22        Inter-Switch Link Protocol (ISL)\
23        VLAN Trunking Protocol (VTP)
24       
25homepage         http://www.yersinia.net/
26platforms        darwin freebsd
27
28master_sites     http://www.yersinia.net/download/
29distname         yersinia-${version}
30checksums        md5 dd3b79a625482961fe4e8bd96edff179
31
32patchfiles       patch-protocols.h
33
34depends_lib      port:ncurses \
35                                 port:libpcap \
36                 port:libnet11
37
38configure.args   --disable-gtk \
39                 --with-pcap-includes=$prefix/include
40
41variant gtk {
42    depends_lib-append    lib:libglib.2:glib2 \
43                          lib:libgtk.2:gtk2
44    configure.args-delete --disable-gtk
45    configure.args-append --enable-gtk
46}