diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2009-08-18 01:36:29 +0800 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2009-08-18 01:36:29 +0800 |
commit | 52c57401d2fe3eba3fdf81e5d3f1715362b9692b (patch) | |
tree | 95008b81dc49033889d822d8d6d2e66d11a42cc2 /net-mgmt/aircrack-ng/Makefile | |
parent | 241777bb51a1d22df39545ea02d4cff3595f8c99 (diff) | |
download | freebsd-ports-gnome-52c57401d2fe3eba3fdf81e5d3f1715362b9692b.tar.gz freebsd-ports-gnome-52c57401d2fe3eba3fdf81e5d3f1715362b9692b.tar.zst freebsd-ports-gnome-52c57401d2fe3eba3fdf81e5d3f1715362b9692b.zip |
- Update to version 1.0-rc4
- Convert to PLIST_FILES
Approved by: maintainer (lme)
Diffstat (limited to 'net-mgmt/aircrack-ng/Makefile')
-rw-r--r-- | net-mgmt/aircrack-ng/Makefile | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/net-mgmt/aircrack-ng/Makefile b/net-mgmt/aircrack-ng/Makefile index 54d339b69d66..09b663ad6eb0 100644 --- a/net-mgmt/aircrack-ng/Makefile +++ b/net-mgmt/aircrack-ng/Makefile @@ -6,7 +6,7 @@ # PORTNAME= aircrack-ng -DISTVERSION= 1.0-rc1 +DISTVERSION= 1.0-rc4 CATEGORIES= net-mgmt security MASTER_SITES= http://download.aircrack-ng.org/ \ http://bsd-geek.de/FreeBSD/distfiles/ @@ -15,13 +15,21 @@ MAINTAINER= lme@FreeBSD.org COMMENT= An 802.11 WEP and WPA-PSK keys cracking program USE_GMAKE= yes +MAKE_ARGS+= UNSTABLE=true # build some extra tools USE_OPENSSL= yes SUB_FILES= pkg-message -MAN1= aircrack-ng.1 airdriver-ng.1 airdecap-ng.1 aireplay-ng.1 \ - airodump-ng.1 airolib-ng.1 airmon-ng.1 airsev-ng.1 \ - airtun-ng.1 buddy-ng.1 easside-ng.1 ivstools.1 kstats.1 \ - makeivs-ng.1 packetforge-ng.1 wesside-ng.1 +MAN1= airbase-ng.1 aircrack-ng.1 airdecap-ng.1 airdecloak-ng.1 \ + aireplay-ng.1 airodump-ng.1 airserv-ng.1 airtun-ng.1 \ + buddy-ng.1 easside-ng.1 ivstools.1 kstats.1 makeivs-ng.1 \ + packetforge-ng.1 tkiptun-ng.1 wesside-ng.1 + +PLIST_FILES= bin/aircrack-ng bin/airdecap-ng bin/airdecloak-ng \ + bin/buddy-ng bin/ivstools bin/kstats bin/makeivs-ng \ + bin/packetforge-ng \ + sbin/airbase-ng sbin/aireplay-ng sbin/airodump-ng \ + sbin/airserv-ng sbin/airtun-ng sbin/easside-ng \ + sbin/tkiptun-ng sbin/wesside-ng OPTIONS= SQLITE "Use SQLite for storing pre-computed key tables" off @@ -30,9 +38,8 @@ OPTIONS= SQLITE "Use SQLite for storing pre-computed key tables" off .if defined(WITH_SQLITE) USE_SQLITE= yes MAKE_ARGS+= SQLITE=true -PLIST_SUB+= SQLITE="" -.else -PLIST_SUB+= SQLITE="@comment " +MAN1+= airolib-ng.1 +PLIST_FILES+= bin/airolib-ng .endif post-patch: @@ -43,11 +50,14 @@ post-patch: -e 's|^RANLIB[[:blank:]]*|&?|' \ -e 's|^AR[[:blank:]]*|&?|' \ ${WRKSRC}/common.mak -# Do not install scripts (Linux-specific) +# Do not install scripts (Linux-specific) and their manpages @${REINPLACE_CMD} \ - -e '/$$(SCRIPTS)/d' \ + -E '/scripts|@echo/d' \ ${WRKSRC}/Makefile @${REINPLACE_CMD} \ + -E 's/air(driver|mon)-ng\.1 //' \ + ${WRKSRC}/manpages/Makefile + @${REINPLACE_CMD} \ -e 's|-lpthread|${PTHREAD_LIBS}|' \ ${WRKSRC}/src/Makefile |