#!/bin/bash # tigervnc.SlackBuild # Heavily based on the original Slackware build scripts, # Modified by Stuart Winter for Slackware ARM. # # Copyright 2010, 2011, 2012, 2013 Eric Hameleers, Eindhoven. NL # All rights reserved. # # Permission to use, copy, modify, and distribute this software for # any purpose with or without fee is hereby granted, provided that # the above copyright notice and this permission notice appear in all # copies. # # THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. # IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # Record toolchain & other info for the build log: slackbuildinfo # Paths to skeleton port's source & real Slackware source tree: slackset_var_cwds # Temporary build locations: export TMPBUILD=$TMP/build-$PKGNAM export PKG=$TMP/package-$PKGNAM mkpkgdirs # Delete & re-create temporary directories then cd into $TMPBUILD # Add -fPIC to CFLAGS: case $ARCH in arm|aarch64) export SLKCFLAGS="$SLKCFLAGS -fPIC" export LIBDIRSUFFIX="" ;; *) export SLKCFLAGS="-O2" ;; esac # Do we build the java applet (needs jdk)? DO_APPLET=${DO_APPLET:-"NO"} # TigerVNC needs to use source of the X.Org server whose version matches # that of your installed X.Org package: XORG=${XORG:-$(X -version 2>&1 | grep "^X.Org X Server " | cut -f4 -d' ')} MAXPATCHVER="$(echo $XORG | cut -f1,2 -d. | tr -d '.')" # ******************** # # HACK for 14.2 patch: MAXPATCHVER=120 # ******************** # # OS Stamp into the binaries: OSNAME="$(head -1 /etc/slackware-version)" OSVENDOR="Slackware Linux Project" BUILDER="Built by MoZes on $(date -u)" # This covers most filenames you'd want as documentation. Change if needed. DOCS="BUILDING.txt LICENCE.TXT README.txt doc/TODO doc/*.txt doc/*.odt" DOCS_XORG="COPYING ChangeLog" case "$ARCH" in arm*) TARGET=${SLK_ARCH_BUILDTARGET} ;; *) TARGET=${SLK_ARCH_BUILDTARGET} ;; esac # Create some build framework: mkdir -p $TMPBUILD/deps/usr # Extract source: tar xvvf $CWD/sources/$PKGNAM-$VERSION.tar.?z* || exit 1 tar xvvf $CWD/sources/xorg-server-${XORG}.tar.?z* || exit 1 #tar xvvf $SLACKSOURCE/x/x11/src/xserver/xorg-server-${XORG}*z slackhousekeeping ### BEGIN PATCHES FROM source/x/x11/patch ( cd xorg-server-${XORG} zcat $CWD/patches/xorg-server/x11.startwithblackscreen.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.combo.mouse.keyboard.layout.patch.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-10971.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-10972.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-13721.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-13723.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-12176.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-12177.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-12178.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-12179_p1.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-12179_p2.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-12180_12181_12182.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-12183.diff.gz | patch -p1 --verbose || exit 1 zcat $CWD/patches/xorg-server/xorg-server.CVE-2017-12184_12185_12186_12187.diff.gz | patch -p1 --verbose || exit 1 ) || exit 1 ### END PATCHES FROM source/x/x11/patch export LDFLAGS="$SLKLDFLAGS" export CXXFLAGS="$SLKCFLAGS" export CFLAGS="$SLKCFLAGS" cat < $PKG/usr/share/applications/tigervnc.desktop [Desktop Entry] Encoding=UTF-8 Name=TigerVNC Viewer GenericName=VNCViewer (RFB Client) Comment=Connect to remote desktop SwallowExec= Exec=vncviewer MimeType= Icon=tigervnc Path= TerminalOptions= Terminal=false Type=Application Categories=Network; StartupWMClass=VNC Viewer: Connection Details EOT # Add this to the doinst.sh: ! [ -d $PKG/install ] && mkdir -p $PKG/install cat <> $PKG/install/doinst.sh # Handle the incoming configuration files: config() { for infile in \$1; do NEW="\$infile" OLD="\`dirname \$NEW\`/\`basename \$NEW .new\`" # If there's no config file by that name, mv it over: if [ ! -r \$OLD ]; then mv \$NEW \$OLD elif [ "\`cat \$OLD | md5sum\`" = "\`cat \$NEW | md5sum\`" ]; then # toss the redundant copy rm \$NEW fi # Otherwise, we leave the .new copy for the admin to consider... done } config etc/X11/xorg.conf.d/10-libvnc.conf.new # Update the desktop database: if [ -x usr/bin/update-desktop-database ]; then chroot . /usr/bin/update-desktop-database usr/share/applications 1>/dev/null 2>&1 fi # Update the mime database: if [ -x usr/bin/update-mime-database ]; then chroot . /usr/bin/update-mime-database usr/share/mime 1>/dev/null 2>&1 fi # Update hicolor theme cache: if [ -d usr/share/icons/hicolor ]; then if [ -x usr/bin/gtk-update-icon-cache ]; then chroot . /usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2> /dev/null fi fi EOT # Add documentation: # First, remove files which were misplaced: rm -f $PKG/usr/doc/* 2> /dev/null cd $TMPBUILD/${PKGNAM}-${VERSION} || exit 1 mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION cp -a $DOCS $PKG/usr/doc/$PKGNAM-$VERSION || true for FIL in $(echo $DOCS_XORG); do cp -a build/unix/xserver/$FIL $PKG/usr/doc/$PKGNAM-$VERSION/${FIL}.xorg ; done || true #cat $CWD/$(basename $0) > $PKG/usr/doc/$PKGNAM-$VERSION/$PKGNAM.SlackBuild # Apply generic Slackware packaging policies: cd $PKG slackstripall # strip all .a archives and all ELFs #slackstriprpaths # strip rpaths slack_delete_lafiles # delete usr/lib{,64}/*.la slackgzpages -i # compress man & info pages and delete usr/info/dir slackslack # chown -R root:root, chmod -R og-w, slackchown, slack644docs slackdesc # install slack-desc and doinst.sh # /extra has packages in separate dirs: export PKGSERIES=$PKGSERIES/$PKGNAM slackmp # run makepkg -l y -c n # Perform any final checks on the package: cd $PKG slackhlinks # search for any hard links