mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
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>
This commit is contained in:
parent
8053b8f1cf
commit
26069d6566
4 changed files with 122 additions and 0 deletions
16
desktop/transset-df/README
Normal file
16
desktop/transset-df/README
Normal file
|
@ -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 :)
|
19
desktop/transset-df/slack-desc
Normal file
19
desktop/transset-df/slack-desc
Normal file
|
@ -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:
|
77
desktop/transset-df/transset-df.SlackBuild
Normal file
77
desktop/transset-df/transset-df.SlackBuild
Normal file
|
@ -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}
|
||||
|
10
desktop/transset-df/transset-df.info
Normal file
10
desktop/transset-df/transset-df.info
Normal file
|
@ -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"
|
Loading…
Reference in a new issue