Ticket #12181: Portfile

File Portfile, 1.0 KB (added by sbranzo@…, 17 years ago)
Line 
1# $Id: Portfile 20314 2006-11-01 22:06:50Z blair@macports.org $
2
3PortSystem 1.0
4name            aircrack-ng
5version         0.9.1
6categories      security
7maintainers     sbranzo@gmail.com
8description     Aircrack-ng is the next generation of aircrack with lots of new features
9long_description aircrack is an 802.11 WEP and WPA-PSK keys cracking program that can recover \
10                 keys once enough data packets have been captured. It implements the standard \
11                 FMS attack along with some optimizations like KoreK attacks, thus making the \
12                 attack much faster compared to other WEP cracking tools. In fact, aircrack is \
13                 a set of tools for auditing wireless networks.
14
15homepage        http://aircrack-ng.org
16platforms       darwin
17master_sites    http://download.aircrack-ng.org/
18checksums       sha1 e0329ab151ed0da23f4ec5ee269dc25f1654765b
19
20
21use_configure   no
22
23configure {
24    system "mv ${worksrcpath}/Makefile.osx ${worksrcpath}/Makefile"
25    reinplace "s|\$(prefix)|${prefix}|g" ${worksrcpath}/Makefile
26    reinplace "s|\$(destdir)|${destroot}|g" ${worksrcpath}/Makefile
27}