system/xautolock: Removed from 13.0 repository

This commit is contained in:
Heinz Wiesinger 2010-05-13 00:09:33 +02:00
parent 89411eb387
commit db56b0cdeb
4 changed files with 0 additions and 91 deletions

View File

@ -1,13 +0,0 @@
Xautolock monitors console activity under the X window system, and
fires up a program of your choice if nothing happens during a
user configurable period of time. You can use this to automatically
start up a screen locker in case you tend to forget to do so manually
before having a coffee break.
Xautolock will typically be used to lock the screen but it really
doesn't care what program you make it start. The only real assumption
made by xautolock is that a new countdown starts as soon as the
locker exits.
One suggested use of autolock is like this:
xautolock -time 10 -locker xlock

View File

@ -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------------------------------------------------------|
xautolock: xautolock (Xautolock monitors console activity)
xautolock:
xautolock: Xautolock monitors console activity under the X window system, and
xautolock: fires up a program of your choice if nothing happens during a
xautolock: user configurable period of time. You can use this to automatically
xautolock: start up a screen locker in case you tend to forget to do so
xautolock: manually before having a coffee break.
xautolock:
xautolock: Xautolock will typically be used to lock the screen but it really
xautolock: doesn't care what program you make it start.
xautolock:

View File

@ -1,51 +0,0 @@
#!/bin/sh
# Slackware build script for xautolock
# Written by Jick Nan (jick.nan@gmail.com)
# Modified by the SlackBuilds.org project
# Assumed to be public domain per our submission policy
PRGNAM=xautolock
VERSION=2.2
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP || exit 1
rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/$PRGNAM-$VERSION.tgz || exit 1
cd $PRGNAM-$VERSION || exit 1
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
xmkmf || exit 1
make || exit 1
make install DESTDIR=$PKG || exit 1
make install.man DESTDIR=$PKG || exit 1
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
gzip -9 $PKG/usr/man/man1/xautolock.1x || exit 1
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a Changelog Readme VMS.notes Todo $PKG/usr/doc/$PRGNAM-$VERSION
( cd $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PRGNAM.SlackBuild
ln -s /usr/lib/X11/doc/html/xautolock.1.html xautolock.1.html
)
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.tgz

View File

@ -1,8 +0,0 @@
PRGNAM="xautolock"
VERSION="2.2"
HOMEPAGE="http://freshmeat.net/projects/xautolock/"
DOWNLOAD="http://www.ibiblio.org/pub/Linux/X11/screensavers/xautolock-2.2.tgz"
MD5SUM="9526347a202694ad235d731d9d3de91f"
MAINTAINER="Jick Nan"
EMAIL="jick.nan@gmail.com"
APPROVED="rworkman"