summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Audrius Kažukauskas2010-08-28 20:44:51 +0200
committer Erik Hanson2010-08-29 22:32:15 +0200
commit681a94659de0771ebae1aa2cf61f4a33fb1307be (patch)
treeec4499e258fee15658c2af31157416e5cbe2cd53 /system
parent728d8f1a341276cccebd4cbf3e5f1de5c5678165 (diff)
downloadslackbuilds-681a94659de0771ebae1aa2cf61f4a33fb1307be.tar.gz
network/spambayes: Miscellaneous cleanups and moved from system.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/spambayes/README6
-rw-r--r--system/spambayes/slack-desc19
-rw-r--r--system/spambayes/spambayes.SlackBuild55
-rw-r--r--system/spambayes/spambayes.info10
4 files changed, 0 insertions, 90 deletions
diff --git a/system/spambayes/README b/system/spambayes/README
deleted file mode 100644
index 179ca058b7..0000000000
--- a/system/spambayes/README
+++ /dev/null
@@ -1,6 +0,0 @@
-SpamBayes uses a different set of algorithm to most statistical spam filters,
-which enables to dramatically lower the number of legitimate mail classified as
-spam, through the introduction of an 'unsure' category.
-
-SpamBayes can be used as a POP3 or an IMAP proxy, as well as a simple mail
-filter for use with procmail.
diff --git a/system/spambayes/slack-desc b/system/spambayes/slack-desc
deleted file mode 100644
index 7d1061511c..0000000000
--- a/system/spambayes/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------------------------------------------------------|
-spambayes: spambayes (Python-based spam filter using statistical analysis)
-spambayes:
-spambayes: SpamBayes uses a different set of algorithm to most statistical spam
-spambayes: filters, which enables to dramatically lower the number of
-spambayes: legitimate mail classified as spam, through the introduction of an
-spambayes: 'unsure' category.
-spambayes:
-spambayes: SpamBayes can be used as a POP3 or an IMAP proxy, as well as a
-spambayes: simple mail filter for use with procmail.
-spambayes:
-spambayes: Homepage: http://spambayes.sourceforge.net/
diff --git a/system/spambayes/spambayes.SlackBuild b/system/spambayes/spambayes.SlackBuild
deleted file mode 100644
index 46bfa318ee..0000000000
--- a/system/spambayes/spambayes.SlackBuild
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for spambayes
-# Written by Audrius Kažukauskas <audrius@neutrino.lt>
-
-PRGNAM=spambayes
-VERSION=${VERSION:-1.0.4}
-BUILD=${BUILD:-3}
-TAG=${TAG:-_SBo}
-
-# Automatically determine the architecture we're building on:
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- # Unless $ARCH is already set, use uname -m for all other archs:
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-set -eu
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+rw,go+r-w,a-s .
-
-# Eliminate deprecation warning for sets module with Python 2.6
-sed -i 's/from sets import Set/Set = set/' \
- spambayes/{classifier.py,TestDriver.py,tokenizer.py,ProxyUI.py}
-
-python setup.py install --root=$PKG
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- CHANGELOG.txt LICENSE.txt NEWTRICKS.txt POP3PROXY.txt \
- README-DEVEL.txt README.txt TESTING.txt WHAT_IS_NEW.txt \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a contrib $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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/system/spambayes/spambayes.info b/system/spambayes/spambayes.info
deleted file mode 100644
index 53596aa208..0000000000
--- a/system/spambayes/spambayes.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="spambayes"
-VERSION="1.0.4"
-HOMEPAGE="http://spambayes.sourceforge.net/"
-DOWNLOAD="http://downloads.sourceforge.net/spambayes/spambayes-1.0.4.tar.gz"
-MD5SUM="78c33e79888d410711ff3c7dd7e98d79"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Audrius Kazukauskas"
-EMAIL="audrius@neutrino.lt"
-APPROVED="dsomero"