#!/bin/bash # windowmaker.SlackBuild # Heavily based on the original Slackware build scripts, # Modified by Stuart Winter # 22-Nov-2004 # Record toolchain & other info for the build log: slackbuildinfo # Paths to skeleton port's source & real Slackware source tree: export CWD=$SLACKSOURCE/$PKGSERIES/$PKGNAM export PORTCWD=$PWD # Temporary build locations: export TMPBUILD=$TMP/build-$PKGNAM export PKG=$TMP/package-$PKGNAM mkpkgdirs # Delete & re-create temporary directories then cd into $TMPBUILD # Determine the CFLAGS for the known architectures: case $ARCH in arm) export SLKCFLAGS="-O2 -march=armv4t" export LIBDIRSUFFIX="" ;; *) export SLKCFLAGS="-O2" ;; esac ########### Build Window Maker ############################### # Extract source: tar xvvf $CWD/WindowMaker-$VERSION.tar.?z* cd WindowMaker-* || exit 1 slackhousekeeping # This should be non-interactive where possible. zcat $CWD/wmaker.inst.diff.gz | patch -p1 --verbose || failpatch zcat $CWD/windowmaker.no-mmx.diff.gz | patch -p1 -F 3 || exit 1 # Use newer PNG: zcat $CWD/windowmaker.png.1.4.0.diff.gz | patch -p1 --verbose || exit 1 # Configure: sh autogen.sh LINGUAS="$(cd po ; /bin/ls *.po | sed 's/.po//g')" \ GNUSTEP_LOCAL_ROOT=/usr/lib${LIBDIRSUFFIX}/GNUstep \ CFLAGS="$SLKCFLAGS" \ NLSDIR=/usr/share/locale \ ./configure \ --prefix=/usr \ --mandir=/usr/man \ --sysconfdir=/etc/X11 \ --enable-gnome \ --enable-kde \ --enable-usermenu \ --with-appspath=/usr/lib/GNUstep/Applications \ --build=$ARCH-slackware-linux-gnueabi || failconfig # Build: (NLS bugs like -i) make -i $NUMJOBS || failmake # Change /usr/local/GNUstep to /usr/lib/GNUstep in the WMRootMenu: sed -i -e "s#/usr/local/GNUstep/Applications/WPrefs.app/#/usr/lib${LIBDIRSUFFIX}/GNUstep/Applications/WPrefs.app/#" \ $(grep -lr '/usr/local/GNUstep/Applications/WPrefs.app/' *) # Install: make -i install DESTDIR=$PKG || failinstall # Copy docs: mkdir -p $PKG/usr/doc/WindowMaker-$VERSION cp -a AUTHORS BUGFORM BUGS COPYING COPYING.WTFPL FAQ FAQ.I18N FAQ.I18N.cs FAQ.I18N.sk \ INSTALL INSTALL.cs INSTALL.es INSTALL.fr INSTALL.pt INSTALL.sk MIRRORS NEWS README \ README.definable-cursor README.pt TODO \ $PKG/usr/doc/WindowMaker-$VERSION ########### Build Window Maker extras ####################### # Extract source: cd $TMPBUILD tar xvvf $CWD/WindowMaker-extra-0.1.tar.gz cd WindowMaker-extra-* || exit 1 # Configure: CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --with-iconsdir=/usr/share/pixmaps \ --build=$ARCH-slackware-linux-gnueabi || failconfig # Build: make $NUMJOBS || failmake # Install: make install DESTDIR=$PKG || failinstall # Install the Window Maker xinit script: mkdir -vpm755 $PKG/etc/X11/xinit zcat $CWD/xinitrc.wmaker.gz > $PKG/etc/X11/xinit/xinitrc.wmaker chmod 0755 $PKG/etc/X11/xinit/xinitrc.wmaker ############################################################## # If necessary, start the fakeroot server so we can set file/dir ownerships: start_fakeroot # Apply generic Slackware packaging policies: cd $PKG slackstripall # strip all .a archives and all ELFs 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 slackmp # run makepkg -l y -c n # Perform any final checks on the package: cd $PKG slackhlinks # search for any hard links