diff options
author | B. Watson <yalhcru@gmail.com> | 2012-12-21 13:37:03 +0100 |
---|---|---|
committer | Matteo Bernardini <ponce@slackbuilds.org> | 2012-12-21 21:27:26 +0100 |
commit | 6a8338fa7ee8bb1623fedcbd697c2c2726e48354 (patch) | |
tree | a8cd703af6c70a48cf065e246bcd9aaeed920d21 /games/xroar/xroar.SlackBuild | |
parent | 79ab4c7bc855c82b3ed37b78b67fa93aea522c5a (diff) | |
download | slackbuilds-6a8338fa7ee8bb1623fedcbd697c2c2726e48354.tar.gz |
games/xroar: Updated for version 0.28.1, cleanups.
Noted the optional dependency gtkglext
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'games/xroar/xroar.SlackBuild')
-rw-r--r-- | games/xroar/xroar.SlackBuild | 40 |
1 files changed, 27 insertions, 13 deletions
diff --git a/games/xroar/xroar.SlackBuild b/games/xroar/xroar.SlackBuild index 2322ae6a02..e2b253ccb8 100644 --- a/games/xroar/xroar.SlackBuild +++ b/games/xroar/xroar.SlackBuild @@ -1,20 +1,29 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for xroar # Written by B. Watson (yalhcru@gmail.com) +# Licensed under the WTFPL. See http://sam.zoy.org/wtfpl/ for details. + +# 20121218 bkw: +# - update for 0.28.1 +# - change download link to my own server, since upstream changes their URL +# for every release +# - include missing .png file for HTML doc +# - add patch to prefer ALSA over OSS +# - LDFLAGS=-lm (wasn't needed for old version) +# - mention gtkglext in README as an optional dep + PRGNAM=xroar -VERSION=${VERSION:-0.23b} +VERSION=${VERSION:-0.28.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -38,16 +47,14 @@ else LIBDIRSUFFIX="" fi -SRCVER=0.23 - set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $PRGNAM-$SRCVER +rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$SRCVER +cd $PRGNAM-$VERSION chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -55,6 +62,14 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# Have the emulator try ALSA before OSS. This prevents the emu from +# taking over the ALSA device when using OSS emulation (stops other +# apps from making any sound at all!) +patch -p1 < $CWD/alsa_first.diff + +# fix underlinking via LDFLAGS instead of a .diff + +LDFLAGS="-lm" \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -97,8 +112,9 @@ if [ ! -e $PKG/usr/share/$PRGNAM/roms/d32.rom ]; then ln -s mini-dragon.rom $PKG/usr/share/$PRGNAM/roms/d32.rom fi +# Man page written for this SlackBuild mkdir -p $PKG/usr/man/man6 -gzip -9c < $CWD/$PRGNAM.6 > $PKG/usr/man/man6/$PRGNAM.6.gz +sed "s,@VERSION@,$VERSION,g" < $CWD/$PRGNAM.6 | gzip -9c > $PKG/usr/man/man6/$PRGNAM.6.gz # Icon taken from Fedora package here: # ftp://mirror.switch.ch/pool/3/mirror/rpmfusion/free/fedora/updates/8/i386/xroar-0.21-2.fc8.i386.rpm @@ -110,13 +126,11 @@ cp $CWD/*.desktop $PKG/usr/share/applications mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION # Don't bother with the README: it's only about installation, not usage -cp -a \ - COPYING* ChangeLog \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a COPYING* ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION # HTML version of the info page, for those who hate info pages... make doc/$PRGNAM.html -mv doc/$PRGNAM.html $PKG/usr/doc/$PRGNAM-$VERSION +cp doc/$PRGNAM.html doc/*png $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |