summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author dsomero2010-05-21 03:45:29 +0200
committer David Somero2010-05-21 07:43:17 +0200
commitc6706862140806891647e10e82adf7c038c897a3 (patch)
treec892b11428ad7aa4389995eb8ff51987104fe00e /network
parentcc799f06f898961079f749077d10b334924485fd (diff)
downloadslackbuilds-c6706862140806891647e10e82adf7c038c897a3.tar.gz
network/kismet: Removed (build failure)
Diffstat (limited to 'network')
-rw-r--r--network/kismet/README7
-rw-r--r--network/kismet/doinst.sh17
-rw-r--r--network/kismet/kismet.SlackBuild78
-rw-r--r--network/kismet/kismet.info10
-rw-r--r--network/kismet/slack-desc19
5 files changed, 0 insertions, 131 deletions
diff --git a/network/kismet/README b/network/kismet/README
deleted file mode 100644
index 9dc850eff4..0000000000
--- a/network/kismet/README
+++ /dev/null
@@ -1,7 +0,0 @@
-Kismet is an 802.11 layer2 wireless network detector, sniffer, and intrusion
-detection system. Kismet will work with any wireless card which supports raw
-monitoring (rfmon) mode, and can sniff 802.11b, 802.11a, and 802.11g traffic.
-
-Kismet identifies networks by passively collecting packets and detecting
-standard named networks, detecting (and given time, decloaking) hidden
-networks, and inferring the presence of nonbeaconing networks via data traffic.
diff --git a/network/kismet/doinst.sh b/network/kismet/doinst.sh
deleted file mode 100644
index 358655b439..0000000000
--- a/network/kismet/doinst.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-config etc/kismet/kismet.conf.new
-config etc/kismet/kismet_ui.conf.new
-config etc/kismet/kismet_drone.conf.new
-config etc/kismet/client_manuf.new
-config etc/kismet/ap_manuf.new
diff --git a/network/kismet/kismet.SlackBuild b/network/kismet/kismet.SlackBuild
deleted file mode 100644
index 95cf0a2028..0000000000
--- a/network/kismet/kismet.SlackBuild
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for kismet
-# Written by Audrius Kažukauskas <neobug@tornado.ktu.lt>
-# Modified by Robby Workman <rworkman@slackbuilds.org>
-
-PRGNAM=kismet
-VERSION=2008_05_R1
-SRCVER=$(echo $VERSION | tr _ -)
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-fi
-
-set -e # Exit on most errors
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$SRCVER
-tar xvf $CWD/$PRGNAM-$SRCVER.tar.gz
-cd $PRGNAM-$SRCVER
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc/kismet \
- --localstatedir=/var \
- --mandir=/usr/man \
- --build=$ARCH-slackware-linux
-
-make
-make install MANGRP=root DESTDIR=$PKG
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a CHANGELOG CHANGELOG-OLD GPL README TIMESTAMP TODO \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-mv $PKG/etc/kismet/kismet.conf $PKG/etc/kismet/kismet.conf.new
-mv $PKG/etc/kismet/kismet_ui.conf $PKG/etc/kismet/kismet_ui.conf.new
-mv $PKG/etc/kismet/kismet_drone.conf $PKG/etc/kismet/kismet_drone.conf.new
-mv $PKG/etc/kismet/ap_manuf $PKG/etc/kismet/ap_manuf.new
-mv $PKG/etc/kismet/client_manuf $PKG/etc/kismet/client_manuf.new
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/network/kismet/kismet.info b/network/kismet/kismet.info
deleted file mode 100644
index 1cf6738e9d..0000000000
--- a/network/kismet/kismet.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="kismet"
-VERSION="2008_05_R1"
-HOMEPAGE="http://kismetwireless.net/"
-DOWNLOAD="http://kismetwireless.net/code/kismet-2008-05-R1.tar.gz"
-MD5SUM="6ee365d36354b4dee4945e67f8149294"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Audrius Kazukauskas"
-EMAIL="neobug@tornado.ktu.lt"
-APPROVED="rworkman"
diff --git a/network/kismet/slack-desc b/network/kismet/slack-desc
deleted file mode 100644
index fbab13af34..0000000000
--- a/network/kismet/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description. Line
-# up the first '|' above the ':' following the base package name, and the '|'
-# on the right side marks the last column you can put a character in. You must
-# make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':'.
-
- |-----handy-ruler------------------------------------------------------|
-kismet: Kismet (wireless network detector)
-kismet:
-kismet: Kismet is an 802.11 layer2 wireless network detector, sniffer, and
-kismet: intrusion detection system. Kismet will work with any wireless card
-kismet: which supports raw monitoring (rfmon) mode, and can sniff 802.11b,
-kismet: 802.11a, and 802.11g traffic.
-kismet:
-kismet: Homepage: http://kismetwireless.net/
-kismet:
-kismet:
-kismet: