summaryrefslogtreecommitdiffstats
path: root/system/xautomation/xautomation.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'system/xautomation/xautomation.SlackBuild')
-rw-r--r--system/xautomation/xautomation.SlackBuild39
1 files changed, 24 insertions, 15 deletions
diff --git a/system/xautomation/xautomation.SlackBuild b/system/xautomation/xautomation.SlackBuild
index cd97394508..c6a399473f 100644
--- a/system/xautomation/xautomation.SlackBuild
+++ b/system/xautomation/xautomation.SlackBuild
@@ -2,14 +2,23 @@
# Slackware build script for xautomation.
-# Written by V'yacheslav Stetskevych
-# Modified by B. Watson
+# Originally written by V'yacheslav Stetskevych. Modified by
+# B. Watson. Original version had no license. Modified version
+# released under the WTFPL. See http://www.wtfpl.net/txt/copying/
+# for details.
+
+# 20210809 bkw: BUILD=2
+# - make README validate (no >=72 char lines)
+# - fix typos and grammar in man pages
+# - don't install useless INSTALL in doc dir
+# - *do* install ChangeLog in doc dir
+# - use https URLs in .info file
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=xautomation
VERSION=${VERSION:-1.09}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -21,9 +30,6 @@ if [ -z "$ARCH" ]; then
esac
fi
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0
@@ -56,15 +62,19 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$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 {} \;
+find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
+ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
+
+sed -i '/set of/s,\(command line\)s,\1,' $PRGNAM.7
+sed -i 's,^\\&\. *,&\n,' visgrep.1
+sed -i 's,occured,occured,' visgrep.1
+sed -i 's,charactes,characters,' xte.1
+
+# patch comes from Debian
+patch -p1 < $CWD/030_xmousepos-add-xautomation-manpage.patch
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
-LDFLAGS="-lX11" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
@@ -80,11 +90,10 @@ make
# regular make install is OK, strip them afterwards.
make install DESTDIR=$PKG
strip $PKG/usr/bin/*
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
+gzip -9 $PKG/usr/man/man?/*.?
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING INSTALL README $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a AUTHORS COPYING README ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install