summaryrefslogtreecommitdiffstats
path: root/desktop/xtrlock/xtrlock.SlackBuild
blob: bb589ec7228672863e474692de003375e5e3bc7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/bin/bash

# Slackware build script for xtrlock

# Written by B. Watson (urchlay@slackware.uk)

# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.

# 20250121 bkw: updated for v2.16, which has actual new features.
# - build with XInput (multitouch) support.
# - build with capabilities (libcap) support.
# - fix formatting in man page.
# - silence compiler warnings.

# 20210219 bkw: updated for v2.15.
# 20201208 bkw: updated for v2.14, although the only changes
# since 2.13 are in the debian packaging (which we don't/can't
# use). Basically just updating it to avoid people asking for it to
# be updated.

cd $(dirname $0) ; CWD=$(pwd)

PRGNAM=xtrlock
VERSION=${VERSION:-2.16}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}

if [ -z "$ARCH" ]; then
  case "$( uname -m )" in
    i?86) ARCH=i586 ;;
    arm*) ARCH=arm ;;
       *) ARCH=$( uname -m ) ;;
  esac
fi

if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
  echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
  exit 0
fi

TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

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
  SLKCFLAGS="-O2 -fPIC"
else
  SLKCFLAGS="-O2"
fi

set -e

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/${PRGNAM}_$VERSION.tar.xz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L .  -perm /111 -a \! -perm 755 -a -exec chmod 755 {} + -o \
        \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} +

# work around slack 14.2 bug (only happens when upgrading from 14.2):
touch host.def

# 20250121 bkw: fix formatting of new -F option in man page.
patch -p1 < $CWD/manpage.diff

# 20250121 bkw: build with capabilities and "multitouch" (XInput
# extension), which attempts to grab multitouch devices which are not
# intercepted via XGrabPointer. Matches how Debian packages it.
sed -i '/^SingleProgramTarget/s,-lX11,& -lcap -lXi,' Imakefile
OPTS="$SLKCFLAGS -DSHADOW_PWD -DLIBCAP -DMULTITOUCH"

xmkmf -a

# 20250121 bkw: get rid of deprecation warnings caused by xmkmf.
sed -i -e 's/-D_BSD_SOURCE//g' \
       -e 's/-D_SVID_SOURCE/-D_DEFAULT_SOURCE/g' \
       Makefile

make
make install install.man DESTDIR=$PKG CCOPTIONS="$OPTS"

i=$PKG/usr/bin/$PRGNAM
strip $i
chown root:shadow $i
chmod 2751 $i

gzip -9 $PKG/usr/man/man1/$PRGNAM.1x

mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a *.txt debian/changelog $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