games/gens-gs: Removed (build failure)

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Robby Workman 2011-04-03 09:26:41 -05:00
parent 79db7d5e96
commit beaa195c89
4 changed files with 0 additions and 141 deletions

View file

@ -1,10 +0,0 @@
Gens/GS is a Sega Genesis/CD/32x emulator forked from Gens.
The project's main goal is to clean up the source code and combine features
of the various Gens forks, as well as improve portability to other platforms.
To build without OpenGL, run the script with OPENGL=no.
To build with the yasm assembler instead of nasm, run the script with NASM=no.
To play RAR-compressed ROMs, rar and unrar are
required.

View file

@ -1,102 +0,0 @@
#!/bin/sh
# Slackware build script for gens-gs
# Written by Steven Pledger <piratesmack@ymail.com>
#
# rev 2:
# -SlackBuild doesn't fail when ARCH is set to i686 anymore
# -Added --disable-debugger
PRGNAM=gens-gs
VERSION=${VERSION:-r7}
BUILD=${BUILD:-4}
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
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
# I don't think this builds on a pure 64-Bit system
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
# Extra configure options:
CFGOPTS=""
# Pass OPENGL=no to the script to build without opengl:
OPENGL=${OPENGL:-yes}
if [ "$OPENGL" = "no" ]; then
CFGOPTS="--without-opengl "
fi
# Pass NASM=no to the script to use the yasm assembler instead:
NASM=${NASM:-yes}
if [ "$NASM" = "no" ]; then
CFGOPTS="${CFGOPTS}--with-nasm=yasm"
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/Gens-gs-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--sysconfdir=/etc \
--localstatedir=/var \
--docdir=/usr/doc/$PRGNAM-$VERSION \
--disable-static \
--disable-debugger \
$CFGOPTS
make
make install DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
# No man pages
# Documentation was installed by "make install"
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -1,10 +0,0 @@
PRGNAM="gens-gs"
VERSION="r7"
HOMEPAGE="http://segaretro.org/Gens/GS"
DOWNLOAD="http://segaretro.org/images/6/6d/Gens-gs-r7.tar.gz"
MD5SUM="bcb17b49774aa318a224c741028aabc3"
DOWNLOAD_x86_64="UNSUPPORTED"
MD5SUM_x86_64=""
MAINTAINER="Steven Pledger"
EMAIL="piratesmack@ymail.com"
APPROVED="Erik Hanson"

View file

@ -1,19 +0,0 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|' on
# the right side marks the last column you can put a character in. You must make
# exactly 11 lines for the formatting to be correct. It's also customary to
# leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
gens-gs: gens-gs (sega genesis/cd/32x emulator)
gens-gs:
gens-gs: Gens/GS is a fork of Gens maintained by GerbilSoft.
gens-gs:
gens-gs: The main goal of the project is to clean up the source code and
gens-gs: combine features from various forks of Gens as well as improve
gens-gs: portability to other platforms.
gens-gs:
gens-gs: Homepage: http://segaretro.org/Gens/GS
gens-gs:
gens-gs: