summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Felix Pfeifer2013-02-24 08:25:04 +0100
committer Robby Workman2013-02-24 17:23:11 +0100
commitcbe203f05b9b0ee49e7674c3d81be8f4d9f4526d (patch)
tree3554b7b212a510f5c32dd3b31bc3329a1fba017f /desktop
parent341b4c4d2cdf56c7b9129406b23f6f4f402e5a43 (diff)
downloadslackbuilds-cbe203f05b9b0ee49e7674c3d81be8f4d9f4526d.tar.gz
desktop/transset-df: Removed (obsolete)
All the features of transset-df are now included in X.org's original transset. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/transset-df/README16
-rw-r--r--desktop/transset-df/slack-desc19
-rw-r--r--desktop/transset-df/transset-df.SlackBuild77
-rw-r--r--desktop/transset-df/transset-df.info10
4 files changed, 0 insertions, 122 deletions
diff --git a/desktop/transset-df/README b/desktop/transset-df/README
deleted file mode 100644
index 3e8544acef..0000000000
--- a/desktop/transset-df/README
+++ /dev/null
@@ -1,16 +0,0 @@
-transset-df
-
-This is a patched version of xorg's transset I wanted to integrate
-transset into my windowmanager and to be able to set and unset
-transparency by just pressing a key. To make that possible I added
-several different 'select methods'. The first one was 'select by
-pointing' which lets the user run transset directly on the window
-currently under the cursor without having to click. Later select by name
-and id was added after inspiration from other transset patches.
-
-In the future I guess it's meant for the windowmanagers to handle
-transparency. Then we will hopefully see these functions and many
-other now imposible function. This will however require you to wait
-untill this is implemented in your favorite wm. This patch is a way of
-"scratching where it itches", by creating a usefull integration with every
-windowmanager without changing any wm-code. The "unix way" of doing it :)
diff --git a/desktop/transset-df/slack-desc b/desktop/transset-df/slack-desc
deleted file mode 100644
index 88994be8a9..0000000000
--- a/desktop/transset-df/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------------------------------------------------------|
-transset-df: transset-df (patched version of xorg's transset)
-transset-df:
-transset-df: This is a patched version of xorg's transset. Several different
-transset-df: 'select methods' are added: 'select by pointing' which lets the
-transset-df: user run transset directly on the window currently under the
-transset-df: cursor without having to click and 'select by name or id'.
-transset-df:
-transset-df: homepage: http://www.forchheimer.se/transset-df/
-transset-df:
-transset-df:
-transset-df:
diff --git a/desktop/transset-df/transset-df.SlackBuild b/desktop/transset-df/transset-df.SlackBuild
deleted file mode 100644
index 0775fb7be8..0000000000
--- a/desktop/transset-df/transset-df.SlackBuild
+++ /dev/null
@@ -1,77 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for transset-df
-
-# Written by Felix Pfeifer (pfeifer [dot] felix [at] googlemail [dot] com)
-
-PRGNAM=transset-df
-VERSION=${VERSION:-6}
-BUILD=${BUILD:-1}
-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}
-
-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"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-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 .
-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 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-make
-
-mkdir -p $PKG/usr/bin
-cp transset-df $PKG/usr/bin
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- [RC]* \
- $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/desktop/transset-df/transset-df.info b/desktop/transset-df/transset-df.info
deleted file mode 100644
index 1d158d1114..0000000000
--- a/desktop/transset-df/transset-df.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="transset-df"
-VERSION="6"
-HOMEPAGE="http://www.forchheimer.se/transset-df/"
-DOWNLOAD="http://www.forchheimer.se/transset-df/transset-df-6.tar.gz"
-MD5SUM="3375d570adc9d875d7fc476d1a50d5a5"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Felix Pfeifer"
-EMAIL="pfeifer [dot] felix [at] googlemail [dot] com"