Browse Source

accessibility/unclutter-xfixes: Added (X11 tool).

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
pull/26/head
B. Watson 9 years ago
committed by Willy Sudiarto Raharjo
parent
commit
0ee1533429
No known key found for this signature in database GPG Key ID: 887B8374D7333381
  1. 20
      accessibility/unclutter-xfixes/README
  2. 19
      accessibility/unclutter-xfixes/slack-desc
  3. 73
      accessibility/unclutter-xfixes/unclutter-xfixes.SlackBuild
  4. 10
      accessibility/unclutter-xfixes/unclutter-xfixes.info

20
accessibility/unclutter-xfixes/README

@ -0,0 +1,20 @@
unclutter-xfixes (x11 tool for removing mouse clutter from the screen)
Hides the mouse pointer when the mouse isn't moving.
This is a rewrite of the popular tool unclutter, but using the x11-xfixes
extension. This means that this rewrite doesn't use fake windows or
pointer grabbing and hence causes less problems with window managers
and/or applications.
Notes:
- The binary is called unclutter, not unclutter-xfixes.
- This build conflicts with the regular unclutter build. Only one should
be installed, either unclutter or unclutter-xfixes.
- The usual way to start unclutter is from ~/.xinitrc.
- The options are different (--timeout and --jitter, not -idle and
-jitter), make sure you read the man page.

19
accessibility/unclutter-xfixes/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 ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
unclutter-xfixes: unclutter-xfixes (x11 tool for removing mouse clutter)
unclutter-xfixes:
unclutter-xfixes: Hides the mouse pointer when the mouse isn't moving.
unclutter-xfixes:
unclutter-xfixes: This is a rewrite of the popular tool unclutter, but using the
unclutter-xfixes: x11-xfixes extension. This means that this rewrite doesn't use fake
unclutter-xfixes: windows or pointer grabbing and hence causes less problems with
unclutter-xfixes: window managers and/or applications.
unclutter-xfixes:
unclutter-xfixes:
unclutter-xfixes:

73
accessibility/unclutter-xfixes/unclutter-xfixes.SlackBuild

@ -0,0 +1,73 @@
#!/bin/sh
# Slackware build script for unclutter-xfixes
# Written by B. Watson (yalhcru@gmail.com)
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
PRGNAM=unclutter-xfixes
VERSION=${VERSION:-1.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -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 || tar xvf $CWD/v$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
# SBo libev has event.h in nonstandard dir
sed -i "/-Wall/s,\$, $SLKCFLAGS -I/usr/include/libev," Makefile
# note non-standard use of PREFIX here!
make
make install PREFIX=$PKG/usr/bin MANDIR=$PKG/usr/man/man1
strip $PKG/usr/bin/*
gzip $PKG/usr/man/man?/*.?
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a LICENSE README.md $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
accessibility/unclutter-xfixes/unclutter-xfixes.info

@ -0,0 +1,10 @@
PRGNAM="unclutter-xfixes"
VERSION="1.2"
HOMEPAGE="https://github.com/Airblader/unclutter-xfixes"
DOWNLOAD="https://github.com/Airblader/unclutter-xfixes/archive/v1.2.tar.gz"
MD5SUM="b586db65d3601688ea0580aa087177e9"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="libev"
MAINTAINER="B. Watson"
EMAIL="yalhcru@gmail.com"
Loading…
Cancel
Save