diff options
Diffstat (limited to 'network/airpwn/airpwn.SlackBuild')
-rw-r--r-- | network/airpwn/airpwn.SlackBuild | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/network/airpwn/airpwn.SlackBuild b/network/airpwn/airpwn.SlackBuild index 00b1e91715..a2ed6189cd 100644 --- a/network/airpwn/airpwn.SlackBuild +++ b/network/airpwn/airpwn.SlackBuild @@ -1,8 +1,8 @@ #!/bin/sh # Slackware build script for airpwn - # Written by Larry Hajali <larryhaja[at]gmail[dot]com> +# and Klaatu <klaatu@member.fsf.no.psam.org> PRGNAM=airpwn VERSION=${VERSION:-1.4} @@ -54,12 +54,12 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Remove some unneeded directories and change a file to Unix. +# Remove unneeded directories and change a file to Unix find . -type d -name "CVS" | xargs rm -rf {} \; find . -type d -name ".cvs" | xargs rm -rf {} \; sed -i 's/\r//g' content/ftp_resp -# First we need to install lorcon +# first install lorcon cd lorcon CFLAGS="$SLKCFLAGS" \ ./configure \ @@ -74,7 +74,11 @@ cd lorcon make install DESTDIR=$PKG cd .. -# Fix airpwn files so we can use it with a Python version other than 2.4. +sed -i 's/#include <unistd.h>/#include <unistd.h> #include <wep.h>/' keygen.c +echo "sed change made" +ls -lh keygen.c + +# Fix airpwn files so we can use Python versions other than 2.4 PYTHON_VERSION1=$(python -c 'import sys; print sys.version[:3]') PYTHON_VERSION2=$(echo $PYTHON_VERSION1 | tr . _) @@ -95,6 +99,10 @@ CPPFLAGS="-I${PKG}/usr/include" \ --mandir=/usr/man \ --build=$ARCH-slackware-linux +# fix what libs we link to +sed -i 's/-lnet/-lnet -lssl -lexpat -lcrypto/' Makefile + +# build airpwn make make install DESTDIR=$PKG |