#!/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 ARCH_CFLAGS="-O2 -march=armv4 -mtune=xscale" ;; powerpc) export ARCH_CFLAGS="-O2" ;; sparc) export ARCH_CFLAGS="-O2" ;; *) export ARCH_CFLAGS="-O2" ;; esac ########### Build Window Maker ############################### # Extract source: tar xvvf $CWD/WindowMaker-$VERSION.tar.bz2 cd WindowMaker-* 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 # Configure: sh autogen.sh LINGUAS="`cd po ; /bin/ls *.po | sed 's/.po//g'`" \ GNUSTEP_LOCAL_ROOT=/usr/lib/GNUstep \ CFLAGS="$ARCH_CFLAGS" \ 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 || failconfig # Build: (NLS bugs like -i) make -i $NUMJOBS || failmake # Change /usr/local/GNUstep to /usr/lib/GNUstep in the WMRootMenu: zcat $CWD/windowmaker.wmrootmenu.diff.gz | patch -p1 --verbose || failpatch # 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-* # Configure: CFLAGS="$ARCH_CFLAGS" \ ./configure \ --prefix=/usr \ --with-iconsdir=/usr/share/pixmaps \ --build=$ARCH-slackware-linux || failconfig # Build: make $NUMJOBS || failmake # Install: make install DESTDIR=$PKG || failinstall # Install the Window Maker xinit script: mkdir -vpm755 $PKG/etc/X11/xinit install -vpm755 $CWD/xinitrc.wmaker $PKG/etc/X11/xinit ############################################################## # 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