From d5f2235f687e31ab09c32e9c92889e01d0eff1fe Mon Sep 17 00:00:00 2001 From: Andrew Brouwers Date: Tue, 11 May 2010 19:46:36 +0200 Subject: system/qemu: Updated for version 0.9.1 --- system/qemu/qemu.SlackBuild | 103 +++++++++++++++++++------------------------- 1 file changed, 44 insertions(+), 59 deletions(-) (limited to 'system/qemu/qemu.SlackBuild') diff --git a/system/qemu/qemu.SlackBuild b/system/qemu/qemu.SlackBuild index ff00d26222..eb12a0225b 100644 --- a/system/qemu/qemu.SlackBuild +++ b/system/qemu/qemu.SlackBuild @@ -1,74 +1,59 @@ #!/bin/sh -## Written by hollywoodb (hollywoodb@fastmail.fm) -## Feel free to use, modify, redistribute this script. -## If you make changes please modify the "Written by" -## so that I don't recieve emails about a script I -## did not write. Thanks. - -## Modified by the SlackBuilds.org project - -if [ "$(id -u)" != "0" ]; then - echo "This script must be run as root!" - exit -fi - -NAME=qemu -VERSION=0.8.2 -ARCHIVE=tar.gz - -ARCH=${ARCH:-i486} -CWD=`pwd` +# Slackware build script for qemu-bin + +# Copyright 2006 Andrew Brouwers +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS 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 AUTHOR 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. + +# Modified by the SlackBuilds.org project + +PRGNAM=qemu +VERSION=0.9.1 +ARCH=i386 # Leave be for binary +BUILD=${BUILD:-2} +TAG=${TAG:-_SBo} +CWD=$(pwd) TMP=${TMP:-/tmp/SBo} -PKG=${PKG:-$TMP/package-$NAME} +PKG=${PKG:-/tmp/SBo/package-$PRGNAM} OUTPUT=${OUTPUT:-/tmp} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -rm -rf $PKG $TMP/$NAME-$VERSION +rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT -cd $TMP -tar zxvf $CWD/$NAME-$VERSION.$ARCHIVE || exit 1 -cd $NAME-$VERSION - +cd $PKG || exit 1 +tar xvfz $CWD/$PRGNAM-$VERSION-$ARCH.tar.gz || exit 1 chown -R root:root . chmod -R u+w,go+r-w,a-s . -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -fi - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --enable-kqemu \ - --enable-alsa \ - --enable-system \ - --enable-user \ - || exit 1 - -make || exit 1 -make install DESTDIR=$PKG || exit 1 - -find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - -mv $PKG/usr/share/man $PKG/usr/ -rm -rf $PKG/usr/share/man -find $PKG/usr/man -type f -exec gzip -9 {} \; -for i in `find $PKG/usr/man -type l` ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +mv $PKG/usr/local/share/man $PKG/usr/man +mv $PKG/usr/local/bin $PKG/usr/bin +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +mv $PKG/usr/local/share/doc/qemu/* $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README.Slackware +mv $PKG/usr/local/share $PKG/usr/share +rm -rf $PKG/usr/local $PKG/usr/share/doc -mkdir -p $PKG/usr/doc/$NAME-$VERSION -mv -v $PKG/usr/share/doc/$NAME/* $PKG/usr/doc/$NAME-$VERSION -rm -rf $PKG/usr/share/doc -cp -a {COPYING*,LICENSE,README*,TODO,VERSION} $PKG/usr/doc/$NAME-$VERSION -cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild +gzip -9 $PKG/usr/man/man?/* mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG -/sbin/makepkg -l y -c n -p $OUTPUT/$NAME-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz -- cgit v1.2.3