summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Heinz Wiesinger2010-05-11 17:59:13 +0200
committer Heinz Wiesinger2010-05-11 17:59:13 +0200
commita7633ae4f69abce9538a05ba40c68be0c2c240ac (patch)
tree710db32b439057540b3e9000e01a285b304df081 /network
parentfc61b8d888c17d6e6d58714d3cbfdc074fda8f9e (diff)
downloadslackbuilds-a7633ae4f69abce9538a05ba40c68be0c2c240ac.tar.gz
network/ipw3945: Removed from 12.0 repository
Diffstat (limited to 'network')
-rw-r--r--network/ipw3945/README13
-rw-r--r--network/ipw3945/ipw3945.SlackBuild105
-rw-r--r--network/ipw3945/ipw3945.info8
-rw-r--r--network/ipw3945/slack-desc8
4 files changed, 0 insertions, 134 deletions
diff --git a/network/ipw3945/README b/network/ipw3945/README
deleted file mode 100644
index 7c6c56dc8e..0000000000
--- a/network/ipw3945/README
+++ /dev/null
@@ -1,13 +0,0 @@
-Intel PRO/Wireless 3945ABG Driver for Linux
-Open source 802.11a/b/g driver for the Intel PRO/Wireless 3945ABG card
-
-This package consists of three source packages:
- 1 - the opensource driver
- 2 - the microcode
- 3 - the binary userspace blob
-
-Note that only the first download is actually listed in the ipw3945.info file,
-but you should also grab the other two. Here are their URLs:
-DOWNLOAD[2]=http://bughost.org/ipw3945/ucode/ipw3945-ucode-1.14.2.tgz
-DOWNLOAD[3]=http://bughost.org/ipw3945/daemon/ipw3945d-1.7.22.tgz
-
diff --git a/network/ipw3945/ipw3945.SlackBuild b/network/ipw3945/ipw3945.SlackBuild
deleted file mode 100644
index 101fd1556f..0000000000
--- a/network/ipw3945/ipw3945.SlackBuild
+++ /dev/null
@@ -1,105 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for Intel 3945 Wireless Card driver
-
-# Copyright 2006,2007 by Yalla-One <yallaone@gmail.com>
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS 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 AUTHOR 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.
-
-# Modified by the SlackBuilds.org Project
-
-PRGNAM=ipw3945
-VERSION=1.2.0
-UCODEVERSION=1.14.2
-BINARYVERSION=1.7.22
-
-# You should not need changing anything below here...
-
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-CWD=`pwd`
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-UCODENAM=${PRGNAM}-ucode-${UCODEVERSION}
-BINARYNAM=${PRGNAM}d-${BINARYVERSION}
-
-UCODEDIR=$(sed -ne "s:^FIRMWARE_DIR=\([^, ]*\).*:\1:p" \
- /etc/hotplug/firmware.agent)
-KVER=${KVER:-`uname -r`}
-KMDIR=/lib/modules/${KVER}/kernel/drivers/net/wireless/
-DOCDIR=${PKG}/usr/doc/${PRGNAM}-${VERSION}
-
-# Prepare and unpack the archives
-rm -rf $PKG
-mkdir -p $TMP $PKG
-cd $TMP
-tar -xzvf $CWD/${PRGNAM}-${VERSION}.tgz || exit 1
-tar -xzvf $CWD/${UCODENAM}.tgz || exit 1
-tar -xzvf $CWD/${BINARYNAM}.tgz || exit 1
-
-# Create directory structure and extract files from archives
-mkdir -p ${PKG}/etc/modprobe.d ${PKG}/sbin ${PKG}${UCODEDIR} ${PKG}${KMDIR} ${DOCDIR}
-
-#Start building
-cd ${TMP}/${PRGNAM}-${VERSION}
-make || exit 1
-
-# Install files
-cp ${TMP}/${PRGNAM}-${VERSION}/${PRGNAM}.ko ${PKG}${KMDIR}
-cp ${TMP}/${UCODENAM}/${PRGNAM}.ucode ${PKG}${UCODEDIR}
-cp ${TMP}/${BINARYNAM}/x86/${PRGNAM}d ${PKG}/sbin
-
-# Install the auto-loader of the module with correct parameters
-cat <<EOT > $PKG/etc/modprobe.d/ipw3945
-# Module parameter initialization for ipw3945.
-# The loop is required for the binary daemon to load in case
-# /var is located on a separate partition, which is mounted
-# after the modules are probed.
-install ipw3945 /sbin/modprobe --ignore-install ipw3945 && \\
-{ \\
-while [ ! -d /var/run ]; do \\
- sleep 1; \\
-done; \\
-until [ -e /var/run/ipw3945d.pid ]; do \\
- /sbin/ipw3945d --quiet; \\
- sleep 1; \\
-done; \\
-} &
-remove ipw3945 /sbin/ipw3945d --kill ; /sbin/modprobe -r --ignore-remove ipw3945
-EOT
-
-# Copy documents
-cd $TMP/${PRGNAM}-${VERSION}
-cp CHANGES LICENSE README* INSTALL ISSUES $DOCDIR/
-cd $TMP/${UCODENAM}
-cp LICENSE.* README.* $DOCDIR/
-cd $TMP/${BINARYNAM}
-cp LICENSE.* README.* $DOCDIR/
-
-# Add slack-desc and SlackBuild
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/${PRGNAM}.SlackBuild > ${DOCDIR}/${PRGNAM}.SlackBuild
-
-# Build the package...
-cd ${PKG}
-/sbin/makepkg -l y -c n $OUTPUT/${PRGNAM}-${VERSION}_${KVER}-$ARCH-$BUILD$TAG.tgz
-
diff --git a/network/ipw3945/ipw3945.info b/network/ipw3945/ipw3945.info
deleted file mode 100644
index e45e85a773..0000000000
--- a/network/ipw3945/ipw3945.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="ipw3945"
-VERSION="1.2.0"
-HOMEPAGE="http://ipw3945.sourceforge.net/"
-DOWNLOAD="http://dl.sourceforge.net/sourceforge/ipw3945/ipw3945-1.2.0.tgz"
-MD5SUM="fd4cc3b52b8e1d4d1e303d30c9dcd31b"
-MAINTAINER="Yalla-One"
-EMAIL="yallaone@gmail.com"
-APPROVED="alien"
diff --git a/network/ipw3945/slack-desc b/network/ipw3945/slack-desc
deleted file mode 100644
index 9f046c2c02..0000000000
--- a/network/ipw3945/slack-desc
+++ /dev/null
@@ -1,8 +0,0 @@
-ipw3945: ipw3945 (Intel PRO/Wireless 3945ABG Driver for Linux)
-ipw3945:
-ipw3945: This project was created by Intel to enable support for the
-ipw3945: Intel PRO/Wireless 3945ABG Network Connection adapter.
-ipw3945:
-ipw3945: This package requires a closed source regularatory daemon binary
-ipw3945: blob and the microcode to function.
-ipw3945: