[Slackbuilds-users] Updated SlackBuild for synaptics for latest -current
Yalla-One
yallaone at gmail.com
Sun Mar 18 20:54:21 UTC 2007
Hi all,
The SlackBuild for synaptics breaks in two places with modular X and the new
gcc. Here's an updated version of the script that checks /etc/X11/xorg.conf
for the correct Module path and then attempts to install the synaptics module
there:
-------------------------------------------------------------
#!/bin/sh
## Written by hollywoodb (hollywoodb at fastmail.fm)
# Modified by Yalla-One (yallaone at gmail.com)
# (modified for automatic X.org module directory detection)
#
# Verify script is being run by root user.
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root!"
exit
fi
NAME=synaptics
VERSION=0.14.6
ARCH=${ARCH:-i486}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
CWD=`pwd`
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$NAME
OUTPUT=${OUTPUT:-/tmp}
# Added 18MAR07:
XORGCONF=/etc/X11/xorg.conf
MODULEPATH=`awk '/ModulePath.*/{gsub("\"","",$0);print $2}' ${XORGCONF}`
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
rm -rf $PKG
mkdir -p $TMP $PKG
cd $TMP || exit 1
tar -jxvf $CWD/$NAME-$VERSION.tar.bz2 || exit 1
cd $NAME-$VERSION || exit 1
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
make -j3 || exit 1
# Install and strip binaries
install -D -m 0755 synclient $PKG/usr/bin/synclient
install -D -m 0755 syndaemon $PKG/usr/bin/syndaemon
strip --strip-unneeded $PKG/usr/bin/*
# Figure out where to install the driver (needs work, but it's fine for now)
# Modified 18MAR07:
if [ ! -d $MODULEPATH ]; then
echo "Couldn't determine directory to install Synaptics driver."
echo "MODULEPATH = ${MODULEPATH}"
echo "Please contact SlackBuild author."
exit 1
fi
# Modified 18MAR07:
install -D -m 444 synaptics_drv.so $PKG/$MODULEPATH/input/synaptics_drv.so
# Install and compress man pages
mkdir -p $PKG/usr/man/man{1,5}
cat manpages/synclient.1 | gzip -9c > $PKG/usr/man/man1/synclient.1.gz
cat manpages/syndaemon.1 | gzip -9c > $PKG/usr/man/man1/syndaemon.1.gz
cat manpages/synaptics.5 | gzip -9c > $PKG/usr/man/man5/synaptics.5.gz
mkdir -p $PKG/usr/doc/$NAME-$VERSION
cp -a \
COMPATIBILITY FILES INSTALL* LICENSE NEWS README* TODO trouble-shooting.txt
\
$PKG/usr/doc/$NAME-$VERSION
cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n -p $OUTPUT/$NAME-$VERSION-$ARCH-$BUILD$TAG.tgz
More information about the Slackbuilds-users
mailing list