summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:08:59 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:08:59 +0200
commit636b88d6b92274ac38db796e369a268627a1732b (patch)
tree61a38519aff71f7a1a83f4ecfb22e93928be9b43 /network
parente439f6ebf3c02a36a2eeb5fa108fa617ed47998f (diff)
downloadslackbuilds-636b88d6b92274ac38db796e369a268627a1732b.tar.gz
slackbuilds-636b88d6b92274ac38db796e369a268627a1732b.tar.xz
network/tork: Removed from 13.0 repository
Diffstat (limited to 'network')
-rw-r--r--network/tork/README3
-rw-r--r--network/tork/doinst.sh19
-rw-r--r--network/tork/slack-desc19
-rw-r--r--network/tork/tork.SlackBuild90
-rw-r--r--network/tork/tork.info8
5 files changed, 0 insertions, 139 deletions
diff --git a/network/tork/README b/network/tork/README
deleted file mode 100644
index f4d973c3a5..0000000000
--- a/network/tork/README
+++ /dev/null
@@ -1,3 +0,0 @@
-torK is a gui for KDE3 to configure tor and privoxy. It is also
-capable of switching kde to anonymous use as well as firefox,
-opera, pidgin, et cetera. \ No newline at end of file
diff --git a/network/tork/doinst.sh b/network/tork/doinst.sh
deleted file mode 100644
index fbe2733454..0000000000
--- a/network/tork/doinst.sh
+++ /dev/null
@@ -1,19 +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...
-}
-
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1
-fi
-
-config etc/kde/tork-tsocks.conf.new
-
diff --git a/network/tork/slack-desc b/network/tork/slack-desc
deleted file mode 100644
index d11c9b32d6..0000000000
--- a/network/tork/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--------------------------------------------------------|
-tork: tork (tor/privoxy configuration gui)
-tork:
-tork: torK is a gui for KDE3 to configure tor and privoxy. It is also capable
-tork: of switching kde to anonymous use as well as firefox, opera, pidgin,
-tork: et cetera.
-tork:
-tork: Homepage: http://tork.sourceforge.net
-tork:
-tork:
-tork:
-tork:
diff --git a/network/tork/tork.SlackBuild b/network/tork/tork.SlackBuild
deleted file mode 100644
index 53e9315768..0000000000
--- a/network/tork/tork.SlackBuild
+++ /dev/null
@@ -1,90 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for tork
-
-# Copyright 2008-2009 Heinz Wiesinger <pprkut@liwjatan.at>
-# 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.
-
-PRGNAM=tork
-VERSION=0.31
-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"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find . \
- \( -perm 777 -o -perm 775 -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 {} \;
-
-KDEPREF=$(kde-config --prefix) || true
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=$KDEPREF \
- --sysconfdir=/etc/kde \
- --localstatedir=/var \
- --mandir=/usr/man \
- --build=$ARCH-slackware-linux
-
-make
-make install-strip DESTDIR=$PKG
-
-mv $PKG/etc/kde/tork-tsocks.conf $PKG/etc/kde/tork-tsocks.conf.new
-
-( 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 AUTHORS ChangeLog COPYING INSTALL NEWS PACKAGING README 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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
diff --git a/network/tork/tork.info b/network/tork/tork.info
deleted file mode 100644
index e2d022ee34..0000000000
--- a/network/tork/tork.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="tork"
-VERSION="0.31"
-HOMEPAGE="http://tork.sourceforge.net"
-DOWNLOAD="http://downloads.sourceforge.net/tork/tork-0.31.tar.bz2"
-MD5SUM="43533181c760d083a3630919d9e95684"
-MAINTAINER="ppr:kut"
-EMAIL="pprkut@liwjatan.at"
-APPROVED="michiel"