mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
network/madwifi-tools: Initial import
This commit is contained in:
parent
338430e9a7
commit
2cc630e38f
4 changed files with 97 additions and 0 deletions
22
network/madwifi-tools/README
Normal file
22
network/madwifi-tools/README
Normal file
|
@ -0,0 +1,22 @@
|
|||
MadWifi - a Linux kernel device driver for Wireless LAN chipsets from Atheros.
|
||||
|
||||
NOTE: MadWifi 0.9.2.1 and earlier do NOT compile against kernel 2.6.19 and
|
||||
higher. MadWifi 0.9.3 will address this issue. SlackBuilds for
|
||||
madwifi-tools and madwifi-driver will be updated when 0.9.3 is
|
||||
released.
|
||||
|
||||
A wireless card compatibility matrix is available at:
|
||||
http://madwifi.org/wiki/Compatibility
|
||||
|
||||
This SlackBuild builds the madwifi tools, not the kernel module. You will
|
||||
need to use the "madwifi-driver" SlackBuild to build the madwifi module for
|
||||
your kernel version.
|
||||
|
||||
Requirements for configuring the wireless card:
|
||||
iwconfig -- part of "wireless-tools" package in /n for Slackware 11.0
|
||||
wpa_supplicant -- if you use WPA encryption.
|
||||
-- Available in /testing for Slackware 11.0
|
||||
|
||||
NOTE: You can place the SlackBuild and slack-desc.{tools,driver} files
|
||||
in the same directory without conflicts, and then you only have to
|
||||
keep one copy of the madwifi source code around...
|
61
network/madwifi-tools/madwifi-tools.SlackBuild
Normal file
61
network/madwifi-tools/madwifi-tools.SlackBuild
Normal file
|
@ -0,0 +1,61 @@
|
|||
#!/bin/sh
|
||||
|
||||
## Slackware build script for madwifi-tools
|
||||
|
||||
## Written by hollywoodb (hollywoodb@fastmail.fm)
|
||||
## Modified by the SlackBuilds.org project
|
||||
|
||||
## Feel free to use, modify, redistribute this script.
|
||||
## If you make changes please modify the "Written by"
|
||||
## so that I don't recieve emails about a script I
|
||||
## did not write. Thanks.
|
||||
|
||||
if [ "$(id -u)" != "0" ]; then
|
||||
echo "This script must be run as root!"
|
||||
exit
|
||||
fi
|
||||
|
||||
NAME=madwifi
|
||||
VERSION=0.9.2.1
|
||||
ARCHIVE=tar.bz2
|
||||
PKG_NAME=madwifi-tools
|
||||
|
||||
ARCH=${ARCH:-i486}
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=${PKG:-$TMP/package-$NAME}
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP || exit 1
|
||||
rm -rf $NAME-$VERSION
|
||||
tar jxvf $CWD/$NAME-$VERSION.$ARCHIVE || exit 1
|
||||
cd $NAME-$VERSION || exit 1
|
||||
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
sed -i 's|/usr/local|/usr|g' tools/Makefile
|
||||
make tools || exit 1
|
||||
make install-tools DESTDIR=$PKG || exit 1
|
||||
|
||||
find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/doc/$NAME-$VERSION
|
||||
cp -a {COPYRIGHT,INSTALL,README,THANKS} \
|
||||
$PKG/usr/doc/$NAME-$VERSION/
|
||||
cp -a {docs/WEP-HOWTO.txt,docs/users-guide.pdf,docs/users-guide.tex} \
|
||||
$PKG/usr/doc/$NAME-$VERSION/
|
||||
cat $CWD/$PKG_NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc.tools > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n -p $OUTPUT/$PKG_NAME-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
network/madwifi-tools/madwifi-tools.info
Normal file
8
network/madwifi-tools/madwifi-tools.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="madwifi-tools"
|
||||
VERSION="0.9.2.1"
|
||||
HOMEPAGE="http://madwifi.org/"
|
||||
DOWNLOAD="http://dl.sourceforge.net/madwifi/madwifi-0.9.2.1.tar.bz2"
|
||||
MD5SUM="bf5509fccd3852e22551826063b1b61e"
|
||||
MAINTAINER="hollywoodb"
|
||||
EMAIL="hollywoodb@fastmail.fm"
|
||||
APPROVED="alien,robw810"
|
6
network/madwifi-tools/slack-desc.tools
Normal file
6
network/madwifi-tools/slack-desc.tools
Normal file
|
@ -0,0 +1,6 @@
|
|||
|-----handy-ruler--------------------------------------------------------|
|
||||
madwifi-tools: madwifi-tools (tools for the madwifi wireless NIC driver)
|
||||
madwifi-tools:
|
||||
madwifi-tools: This package includes the madwifi tools for the madwifi driver for
|
||||
madwifi-tools: Atheros chipsets. The kernel module itself must be built seperately.
|
||||
madwifi-tools:
|
Loading…
Reference in a new issue