diff options
author | Felix Pfeifer <pfeifer [dot] felix [at] googlemail [dot] com> | 2010-10-24 22:02:36 -0400 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-10-25 07:55:09 -0500 |
commit | 26069d65664d1c94e24dec86abbea93cf640e86e (patch) | |
tree | 0c0237de8c0162025b25ce12e3ff104326e8d5c3 | |
parent | 8053b8f1cffaa1c2ba320439bc2cc85d9a72f050 (diff) | |
download | slackbuilds-26069d65664d1c94e24dec86abbea93cf640e86e.tar.gz |
desktop/transset-df: Added (patched version of xorg's transset)
Please enter the commit message for your changes. Lines starting
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
-rw-r--r-- | desktop/transset-df/README | 16 | ||||
-rw-r--r-- | desktop/transset-df/slack-desc | 19 | ||||
-rw-r--r-- | desktop/transset-df/transset-df.SlackBuild | 77 | ||||
-rw-r--r-- | desktop/transset-df/transset-df.info | 10 |
4 files changed, 122 insertions, 0 deletions
diff --git a/desktop/transset-df/README b/desktop/transset-df/README new file mode 100644 index 0000000000..3e8544acef --- /dev/null +++ b/desktop/transset-df/README @@ -0,0 +1,16 @@ +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 new file mode 100644 index 0000000000..88994be8a9 --- /dev/null +++ b/desktop/transset-df/slack-desc @@ -0,0 +1,19 @@ +# 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 new file mode 100644 index 0000000000..0775fb7be8 --- /dev/null +++ b/desktop/transset-df/transset-df.SlackBuild @@ -0,0 +1,77 @@ +#!/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 new file mode 100644 index 0000000000..4070c13580 --- /dev/null +++ b/desktop/transset-df/transset-df.info @@ -0,0 +1,10 @@ +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="" +MAINTAINER="Felix Pfeifer" +EMAIL="pfeifer [dot] felix [at] googlemail [dot] com" +APPROVED="dsomero" |