#!/bin/sh # $Id$ # Copyright (c) 2006 Eric Hameleers # # Permission to use, copy, modify, and distribute this software for # any purpose with or without fee is hereby granted, provided that # the above copyright notice and this permission notice appear in all # copies. # # THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. # IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # ------------------------------------------------------------------------------ # # Slackware SlackBuild script # =========================== # By: Eric Hameleers # For: madwifi # URL: http://madwifi.org/ # Description: driver for atheros-based wireless a/b/g cards. # Needs: # Changelog: # 20060126-1: 30/jan/2006 by Eric Hameleers # * First build of the madwifi-ng code. # 20060131-1: 31/jan/2006 by Eric Hameleers # * Update. # 20060212-1: 14/feb/2006 by Eric Hameleers # * Update. # 20060217-1: 17/feb/2006 by Eric Hameleers # * Update. # 20060222-1: 22/feb/2006 by Eric Hameleers # * Update. # 20060222-2: 22/feb/2006 by Eric Hameleers # * The man pages were not getting zipped. # 20060519-1: 20/may/2006 by Eric Hameleers # * Update. # 0.9.0-1: 31/may/2006 by Eric Hameleers # * First official release! Re-worked the SlackBuild a little. # 0.9.2-1: 28/jul/2006 by Eric Hameleers # * Skipped a release (due to my holidays). # 0.9.2-2: 20/sep/2006 by Eric Hameleers # * Updated the SlackBuild script, rebuilt for Slackware 11.0. # 0.9.2.1-1: 08/dec/2006 by Eric Hameleers # * Critical vulnerability bugfix release. # 0.9.3-1: 15/mar/2007 by Eric Hameleers # * Long-anticipated new release, compatible with kernel > 2.6.18 # Made this SlackBuild actually able to build snapshot releases. # * Add "make prepare" for 2.6 kernel sources so that the modules # will build correctly for SMP kernels. # 0.9.3.1-1: 23/may/2007 by Eric Hameleers # * This release fixes a few security issues. # 0.9.3.2-1: 15/aug/2007 by Eric Hameleers # * This release adds support for the 2.6.22 kernel. # ----------------------------------------------------------------------------- # Change SNAPSHOT from "" to "yes" below if you're building a snapshot release. SNAPSHOT=${SNAPSHOT:-""} PRGNAM=madwifi SRCVER="0.9.3.2" VERSION=${VERSION:-0.9.3.2} # Note: for snapshot builds, # the VERSION value changes further down; BUILD=1 ARCH=${ARCH:-i486} KVER=${KVER:-`uname -r`} KSRC=${KSRC:-/lib/modules/${KVER}/build} PATCHLEVEL=`echo $KVER|cut -f 2 -d '.'` # Where do we look for sources? CWD=`pwd` SRCDIR=`dirname $0` [ "${SRCDIR:0:1}" == "." ] && SRCDIR=${CWD}/${SRCDIR} # Place to build (TMP) package (PKG) and output (OUTPUT) the program: TMP=${TMP:-/tmp/build} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} if [ -z $SNAPSHOT ]; then # build a stable release SOURCE="$SRCDIR/${PRGNAM}-${SRCVER}.tar.gz" SRCURL="http://dl.sourceforge.net/sourceforge/${PRGNAM}/${PRGNAM}-${SRCVER}.tar.gz" else SOURCE="$SRCDIR/${PRGNAM}-ng-current.tar.gz" SRCURL="http://snapshots.madwifi.org/${PRGNAM}-ng-current.tar.gz" fi ## ## --- with a little luck, you won't have to edit below this point --- ## ## # Exit the script on errors: set -e trap 'echo "$0 FAILED on line $LINENO!" | tee $OUTPUT/error-${PRGNAM}.log' ERR # Catch unitialized variables: set -u P1=${1:-1} # Slackware 11 and up need other option (gcc > 3.3.x) if [ `gcc -dumpversion | tr -d '.' |cut -c 1-2` -gt 33 ]; then MOPT=tune else MOPT=cpu fi case "$ARCH" in i386) SLKCFLAGS="-O2 -march=i386 -m${MOPT}=i686" SLKLDFLAGS=""; LIBDIRSUFFIX="" ;; i486) SLKCFLAGS="-O2 -march=i486 -m${MOPT}=i686" SLKLDFLAGS=""; LIBDIRSUFFIX="" ;; s390) SLKCFLAGS="-O2" SLKLDFLAGS=""; LIBDIRSUFFIX="" ;; powerpc) SLKCFLAGS="-O2" SLKLDFLAGS=""; LIBDIRSUFFIX="" ;; x86_64) SLKCFLAGS="-O2 -fPIC" SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64" ;; athlon-xp) SLKCFLAGS="-march=athlon-xp -O3 -pipe -fomit-frame-pointer" SLKLDFLAGS=""; LIBDIRSUFFIX="" ;; esac if [ ! -d $TMP/tmp-$PRGNAM ]; then mkdir -p $TMP/tmp-$PRGNAM # location to build the source elif [ "$P1" != "--oldbuild" ]; then # If the "--oldbuild" parameter is present, we keep # the old build files and continue; # By default we remove the remnants of previous build and continue: rm -rf $TMP/tmp-$PRGNAM/* fi if [ "$PKG" = "" -o "$PKG" = "/" ] ; then echo "Please provide a sane value for the variable 'PKG'." exit 1 elif [ ! -d $PKG ]; then mkdir -p $PKG # place for the package to be built else rm -rf $PKG/* # We always erase old package's contents: fi if [ ! -d $OUTPUT ]; then mkdir -p $OUTPUT # place for the package to be saved fi # --- SOURCE FILE AVAILABILITY --- if [ -z $SNAPSHOT ]; then # download stable release if ! [ -f ${SOURCE} ]; then if ! [ "x${SRCURL}" == "x" ]; then # Check if the $SRCDIR is writable at all - if not, download to $OUTPUT [ -w "$SRCDIR" ] || SOURCE="$OUTPUT/`basename $SOURCE`" echo "Source '`basename ${SOURCE}`' not available yet..." echo "Will download file to `dirname $SOURCE`" wget --connect-timeout=20 -O "${SOURCE}" "${SRCURL}" || true if [ $? -ne 0 ]; then echo "Downloading '`basename ${SOURCE}`' failed... aborting the build." mv -f "${SOURCE}" "${SOURCE}".FAIL exit 1 fi else echo "File '`basename ${SOURCE}`' not available... aborting the build." exit 1 fi fi fi if [ "$P1" == "--download" ]; then echo "Download complete." exit 0 fi # --- PACKAGE BUILDING --- # For snapshots we can only determine the VERSION using the tarball: if [ ! -z $SNAPSHOT ]; then SRCVER=`tar tf $SOURCE |head -1|cut -d- -f3-|cut -d/ -f1` VERSION=`echo $SRCVER|tr '-' '_'` fi echo "+=================+" echo "| $PRGNAM-$VERSION |" echo "+=================+" rm -f $OUTPUT/*.log cd $TMP/tmp-$PRGNAM # Actually to build a snapshot (not the stable release) you must get # the sources from SVN: # $ svn checkout http://svn.madwifi.org/trunk madwifi-ng # The above command stores the source in a subdirectory called madwifi-ng. # To update to the current version of the source at a later time you just need # to change to that subdirectory and type: # $ svn update # Then pack the source tree into madwifi-ng-yyyymmdd.tar.gz for use in this build. # # ... or get a snapshot at http://snapshots.madwifi.org/ echo "Extracting the source tarball..." tar xzvf "$SOURCE" # I expect a pristine kernel source (freshly installed slackware package) # Madwifi expects the sources at the location that the link # "/lib/modules//build" points to.... so be it. cd ${KSRC} [ $PATCHLEVEL -eq 4 ] && \ make clean oldconfig dep || \ make clean oldconfig prepare cd - if [ -z $SNAPSHOT ]; then cd ${PRGNAM}-${SRCVER} else cd ${PRGNAM}-ng-${SRCVER} fi chown -R root:root * chmod -R u+w,go+r-w,a-s * # Build the kernel modules and the utilities # If you need another rate control module than ath_rate_sample (the default), # you'll need to set the ATH_RATE variable before starting make. For instance, # (read the INSTALL file why you could want this) to build ath_rate_amrr, set: # export ATH_RATE=ath_rate/amrr echo Building ... LDFLAGS="$SLKLDFLAGS" \ CFLAGS="$SLKCFLAGS" \ make clean all KERNELPATH=${KSRC} KERNELRELEASE=${KVER} \ 2>&1 | tee $OUTPUT/make-${PRGNAM}.log # Install the kernel module and tools mkdir -p $PKG/usr/{bin,man} # Use installwatch if available: if `which installwatch > /dev/null 2>&1`; then installwatch -o $OUTPUT/install-${PRGNAM}.log make install DESTDIR=$PKG \ BINDIR=/usr/bin MANDIR=/usr/man KERNELPATH=${KSRC} KERNELRELEASE=${KVER} else make install DESTDIR=$PKG \ BINDIR=/usr/bin MANDIR=/usr/man KERNELPATH=${KSRC} KERNELRELEASE=${KVER} \ 2>&1 | tee $OUTPUT/install-${PRGNAM}.log fi # Include files (for wpa_supplicant) - note that wpa_supplicant can now also # communicate with madwifi using the "WEXT" driver: mkdir -p $PKG/usr/include/madwifi for i in include net80211; do find $i -type f -name "*.h" -exec cp -a --parent {} $PKG/usr/include/madwifi \; done # Documentation mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a COPYRIGHT INSTALL README SNAPSHOT THANKS TODO $PKG/usr/doc/$PRGNAM-$VERSION || true cp -a hal/COPYRIGHT $PKG/usr/doc/$PRGNAM-$VERSION/COPYRIGHT.hal || true cp -a hal/README $PKG/usr/doc/$PRGNAM-$VERSION/README.hal || true cp -a patches/README $PKG/usr/doc/$PRGNAM-$VERSION/README.patches || true cp -a docs/WEP-HOWTO.txt docs/users-guide.pdf $PKG/usr/doc/$PRGNAM-$VERSION/ || true cp -a scripts $PKG/usr/doc/$PRGNAM-$VERSION/ || true chmod -R a-w $PKG/usr/doc/$PRGNAM-$VERSION/* # Compress the man pages [ -d $PKG/usr/man ] && find $PKG/usr/man -name "*.?" -type f -exec gzip -9f {} \; # Compress the kernel modules [ $PATCHLEVEL -eq 4 ] && find $PKG/lib/modules -name "*.?" -type f -exec gzip -9 {} \; # Add the slack-desc and doinst.sh files mkdir -p $PKG/install cat $SRCDIR/slack-desc > $PKG/install/slack-desc # Substitute correct kernel versions sed -i -e "s#\@\@KERNELVERS\@\@#${KVER}#g" $PKG/install/slack-desc # Write a doinst.sh [ $PATCHLEVEL -eq 4 ] && MODCONFFILE=modules.conf || MODCONFFILE=modprobe.conf cat <<-EEOOTT > $PKG/install/doinst.sh # Only run depmod on matching running kernel # Slackware will run depmod anyway on reboot): MYMODVER=$KVER MYKERNEL=\`uname -r\` if [ "\$MYKERNEL" = "\$MYMODVER" ]; then if [ -x sbin/depmod ]; then chroot . /sbin/depmod -a \$MYKERNEL 1> /dev/null 2> /dev/null fi fi EEOOTT # Strip binaries ( cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null ) # Permissions chmod -R o-w $PKG # Create the package cd $PKG makepkg -l y -c n $OUTPUT/$PRGNAM-${VERSION}_$(echo $KVER | tr - _)-$ARCH-$BUILD.tgz 2>&1 | tee $OUTPUT/makepkg-${PRGNAM}.log cd $OUTPUT md5sum $PRGNAM-${VERSION}_$(echo $KVER | tr - _)-$ARCH-$BUILD.tgz > $PRGNAM-${VERSION}_$(echo $KVER | tr - _)-$ARCH-$BUILD.tgz.md5 cd - cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/$PRGNAM-${VERSION}_$(echo $KVER | tr - _)-$ARCH-$BUILD.txt # Clean up the extra stuff: if [ "$P1" = "--cleanup" ]; then rm -rf $TMP/tmp-$PRGNAM rm -rf $PKG fi