summaryrefslogtreecommitdiffstats
path: root/multimedia/vkeybd/vkeybd.SlackBuild
diff options
context:
space:
mode:
author B. Watson2018-01-03 21:50:24 +0100
committer Willy Sudiarto Raharjo2018-01-06 00:55:43 +0100
commit984ecf58b2956a9d8fee3d79c4654c0f3130171b (patch)
tree6297b1f1a9a628da6cdaf8000061c27d9b52de86 /multimedia/vkeybd/vkeybd.SlackBuild
parent68bd4849be8f3c2ef9da5afe6e90e16dadd6967f (diff)
downloadslackbuilds-984ecf58b2956a9d8fee3d79c4654c0f3130171b.tar.gz
multimedia/vkeybd: Updated for version 0.1.18d, new maintainer.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'multimedia/vkeybd/vkeybd.SlackBuild')
-rw-r--r--multimedia/vkeybd/vkeybd.SlackBuild52
1 files changed, 31 insertions, 21 deletions
diff --git a/multimedia/vkeybd/vkeybd.SlackBuild b/multimedia/vkeybd/vkeybd.SlackBuild
index 409db3eb64..663056859c 100644
--- a/multimedia/vkeybd/vkeybd.SlackBuild
+++ b/multimedia/vkeybd/vkeybd.SlackBuild
@@ -2,12 +2,24 @@
# Slackware build script for vkeybd
-# Written by Luis Henrique <lmello.009@gmail.com>
+# Written by Luis Henrique <email removed>
# Thanks to the Ubuntu community for some tips on the vkeybd keymap settings!
# Check https://help.ubuntu.com/community/HowToVirtualKeyboardKeymapping for
# more information.
+# Now maintained by B. Watson <yalhcru@gmail.com>. Original version
+# of this script had no license. Modified version licensed under the
+# WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
+
+# 20180103 bkw:
+# - take over maintenance.
+# - i486 => i586.
+# - determine tcl version from system, instead of hardcoding.
+# - simplify script a bit.
+# - fix grammer in README and slack-desc.
+# - 'virtual keyboard' => 'virtual piano keyboard' in slack-desc.
+
PRGNAM=vkeybd
VERSION=${VERSION:-0.1.18d}
BUILD=${BUILD:-3}
@@ -15,7 +27,7 @@ TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
- i?86) ARCH=i486 ;;
+ i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@@ -26,8 +38,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
+if [ "$ARCH" = "i586" ]; then
+ SLKCFLAGS="-O2 -march=i586 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
@@ -40,34 +52,32 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM
-tar xvf $CWD/$PRGNAM\-$VERSION.tar.bz2
+tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
cd $PRGNAM
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 \
+ -exec chmod 755 {} \+ -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
+ -exec chmod 644 {} \+
+
+# make .desktop file validate
+sed -i -e '/^Encoding/d' -e '/^Cat/s,Application;,,' $PRGNAM.desktop
+
+# grab tcl version from the system
+TCLVER="$( basename $( readlink /usr/bin/tclsh|sed 's,tclsh,,' ) )"
make \
COPTFLAGS="$SLKCFLAGS" \
PREFIX=/usr \
MAN_DIR=/usr/man \
- TCL_VERSION=8.6
-make \
- PREFIX=/usr \
- MAN_DIR=/usr/man \
- TCL_VERSION=8.6 \
- install-all \
- DESTDIR=$PKG
-
-( cd $PKG/usr/share/pixmaps ; ln -s vkeybd_48x48.png vkeybd.png )
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+ TCL_VERSION=$TCLVER \
+ DESTDIR=$PKG \
+ all install-all
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
+gzip -9 $PKG/usr/man/man?/*.?
+strip $PKG/usr/bin/*
+ln -s ${PRGNAM}_48x48.png $PKG/usr/share/pixmaps/$PRGNAM.png
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a ChangeLog README $PKG/usr/doc/$PRGNAM-$VERSION