diff options
author | Larry Hajali <larryhaja@gmail.com> | 2013-11-25 01:36:27 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2013-11-25 01:37:04 +0700 |
commit | bd71847b8978dbdc811746d8ac0815976f3610ff (patch) | |
tree | a414c72526a57a1e29ef0291c27c338030d9fa45 /network/airoscript | |
parent | f51527d34d0678edd2db51ccf35f37fde267e2dd (diff) | |
download | slackbuilds-bd71847b8978dbdc811746d8ac0815976f3610ff.tar.gz |
network/airoscript: Removed (Maintainer Request)
This version does not work with aircrack-ng > 1.0beta1
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/airoscript')
-rw-r--r-- | network/airoscript/Makefile.patch | 31 | ||||
-rw-r--r-- | network/airoscript/README | 5 | ||||
-rw-r--r-- | network/airoscript/airoscript.SlackBuild | 49 | ||||
-rw-r--r-- | network/airoscript/airoscript.info | 10 | ||||
-rw-r--r-- | network/airoscript/doinst.sh | 14 | ||||
-rw-r--r-- | network/airoscript/slack-desc | 19 |
6 files changed, 0 insertions, 128 deletions
diff --git a/network/airoscript/Makefile.patch b/network/airoscript/Makefile.patch deleted file mode 100644 index 1bece7e7d0..0000000000 --- a/network/airoscript/Makefile.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff -Naur airoscript.orig/Makefile airoscript.new/Makefile ---- airoscript.orig/Makefile 2009-02-05 12:41:57.000000000 +0000 -+++ airoscript.new/Makefile 2009-03-13 03:43:04.000000000 +0000 -@@ -7,14 +7,14 @@ -
-
- # Dirs
--PREF="/usr/local"
-+PREF="/usr"
- BINMODE="755"
- SBINDIR=$(DESTDIR)$(PREF)"/sbin"
- ETCDIR=$(DESTDIR)"/etc"
- SHAREDIR=$(DESTDIR)$(PREF)"/share/airoscript"
--LOCALEDIR=$(DESTDIR)$(PREF)"/share/locale/"
--MANDIR=$(DESTDIR)$(PREF)"/share/man/man1"
--DOCDIR=$(DESTDIR)$(PREF)"/share/doc/airoscript"
-+LOCALEDIR=$(DESTDIR)$(PREF)"/share/locale"
-+MANDIR=$(DESTDIR)$(PREF)"/man/man1"
-+DOCDIR=$(DESTDIR)$(PREF)"/doc/airoscript-2.1.1"
-
- install: airopdate
- @echo -en "Installing files into:$(BINDIR) $(ETCDIR) $(SHAREDIR) $(DOCDIR) $(SBINDIR) "
-@@ -23,7 +23,7 @@ - @cp -r $(CURDIR)/src/themes/* $(SHAREDIR)/themes/
- @chown $(UID):$(GID) $(SHAREDIR)/themes/*
- @chmod $(BINMODE) $(SHAREDIR)/themes/*.theme
-- @install -D -o $(UID) -g $(GID) -m $(BINMODE) $(CURDIR)/src/airoscript.conf $(ETCDIR)/airoscript.conf
-+ @install -D -o $(UID) -g $(GID) -m 644 $(CURDIR)/src/airoscript.conf $(ETCDIR)/airoscript.conf
- @install -o $(UID) -g $(GID) -m $(BINMODE) $(CURDIR)/src/airopdate.sh $(SHAREDIR)/airopdate
- @install -o $(UID) -g $(GID) -m $(BINMODE) $(CURDIR)/src/airoscfunc.sh $(SHAREDIR)/airoscfunc.sh
- @install -o $(UID) -g $(GID) -m $(BINMODE) $(CURDIR)/src/airoscfunc_screen.sh $(SHAREDIR)/airoscfunc_screen.sh
diff --git a/network/airoscript/README b/network/airoscript/README deleted file mode 100644 index 54dd0aab8b..0000000000 --- a/network/airoscript/README +++ /dev/null @@ -1,5 +0,0 @@ -Airoscript is a companion tool for aircrack-ng. -Cutom configuration settings can be made in -/etc/airoscript.conf. - -Note: must be run with root priveleges. diff --git a/network/airoscript/airoscript.SlackBuild b/network/airoscript/airoscript.SlackBuild deleted file mode 100644 index 2388a565e7..0000000000 --- a/network/airoscript/airoscript.SlackBuild +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh - -# Slackware build script for airoscript -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=airoscript -VERSION=${VERSION:-2.1.1} -ARCH=noarch -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -# Sed statement replaces /usr/local with /usr -sed -i "s:\=\"\/usr\/local:\=\"\/usr:g" src/airoscript.conf -# Cleans up the Makefile for easier compiling -patch -p1 < $CWD/Makefile.patch - -make install DESTDIR=$PKG -make slackware DESTDIR=$PKG - -# Let's not overwrite the config file if it already exists -mv $PKG/etc/$PRGNAM.conf $PKG/etc/$PRGNAM.conf.new - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/airoscript/airoscript.info b/network/airoscript/airoscript.info deleted file mode 100644 index 7a5f717d70..0000000000 --- a/network/airoscript/airoscript.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="airoscript" -VERSION="2.1.1" -HOMEPAGE="http://code.google.com/p/airoscript/" -DOWNLOAD="http://airoscript.googlecode.com/files/airoscript-2.1.1.tar.gz" -MD5SUM="c53698f51ae914586636183f79022051" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="aircrack-ng" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja [at] gmail [dot] com" diff --git a/network/airoscript/doinst.sh b/network/airoscript/doinst.sh deleted file mode 100644 index 60cb62a2cc..0000000000 --- a/network/airoscript/doinst.sh +++ /dev/null @@ -1,14 +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/airoscript.conf.new diff --git a/network/airoscript/slack-desc b/network/airoscript/slack-desc deleted file mode 100644 index e52b0d3eaa..0000000000 --- a/network/airoscript/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -airoscript: airoscript (A companion for aircrack-ng) -airoscript: -airoscript: Airoscript is a shell script designed to ease the use of aircrack-ng. -airoscript: It allows you to: scan, select and attack any detected access point. -airoscript: This is done by detecting encryption type and proposing attacks -airoscript: accordingly. Various attacks are available, such as: chopchop, -airoscript: fragmentation attack, fakeauth, deauth, dictionnary attacks and WPA -airoscript: cracking. -airoscript: -airoscript: Homepage: http://code.google.com/p/airoscript/ -airoscript: |