#!/bin/sh # Heavily based on the Slackware 12.0 SlackBuild # http://bochs.sourceforge.net/ # Packager Vincenzi Loris - slacky@slacky.it NAME=bochs VERSION=2.3.5 BUILD=1sl CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-$NAME CHOST=i486 ARCH=${ARCH:-i486} rm -rf $PKG mkdir -p $PKG if [ "$ARCH" = "i386" ]; then SLKCFLAGS="-O2 -march=i386 -mcpu=i686" elif [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "s390" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi cd $TMP tar xzvf $CWD/$NAME-$VERSION.tar.gz cd $NAME-$VERSION find . \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) -exec chmod 755 {} \; find . \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; chown -R root:root . CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/man \ --enable-plugins \ --enable-x86-64 \ --enable-smp \ --enable-ne2000 \ --enable-pci \ --enable-usb \ --enable-pnic \ --enable-guest2host-tlb \ --enable-repeat-speedups \ --enable-icache \ --enable-show-ips \ --enable-save-restore \ --enable-magic-breakpoints \ --enable-instrumentation \ --enable-raw-serial \ --enable-3dnow \ --enable-sb16=linux \ --enable-gameport \ --build=$CHOST-slackware-linux read make -j4 || exit 1 make install DESTDIR=$PKG || exit 1 mv $PKG/usr/share/doc $PKG/usr/doc mv $PKG/usr/doc/bochs $PKG/usr/doc/$NAME-$VERSION cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi