diff options
author | Steven Pledger <piratesmack@ymail.com> | 2010-05-13 00:58:09 +0200 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-05-13 00:58:09 +0200 |
commit | 6b44d356ab541c4f128edf7b5d6638943e603327 (patch) | |
tree | 1c2cfb7cf97acfdee1d71f1e380c0d3aaed59d23 | |
parent | fa3f7f98d2af3e385be632aa3bc9a5a1e0e17dcc (diff) | |
download | slackbuilds-6b44d356ab541c4f128edf7b5d6638943e603327.tar.gz |
games/gens-gs: Added to 13.0 repository
-rw-r--r-- | games/gens-gs/README | 10 | ||||
-rw-r--r-- | games/gens-gs/gens-gs.SlackBuild | 94 | ||||
-rw-r--r-- | games/gens-gs/gens-gs.info | 10 | ||||
-rw-r--r-- | games/gens-gs/slack-desc | 19 |
4 files changed, 133 insertions, 0 deletions
diff --git a/games/gens-gs/README b/games/gens-gs/README new file mode 100644 index 0000000000..f58b1f9095 --- /dev/null +++ b/games/gens-gs/README @@ -0,0 +1,10 @@ +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. diff --git a/games/gens-gs/gens-gs.SlackBuild b/games/gens-gs/gens-gs.SlackBuild new file mode 100644 index 0000000000..a49b72121d --- /dev/null +++ b/games/gens-gs/gens-gs.SlackBuild @@ -0,0 +1,94 @@ +#!/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} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-4} +TAG=${TAG:-_SBo} + +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" +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 + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "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} diff --git a/games/gens-gs/gens-gs.info b/games/gens-gs/gens-gs.info new file mode 100644 index 0000000000..51bc76d8af --- /dev/null +++ b/games/gens-gs/gens-gs.info @@ -0,0 +1,10 @@ +PRGNAM="gens-gs" +VERSION="r7" +HOMEPAGE="http://info.sonicretro.org/Gens/GS" +DOWNLOAD="http://info.sonicretro.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" diff --git a/games/gens-gs/slack-desc b/games/gens-gs/slack-desc new file mode 100644 index 0000000000..85961fde02 --- /dev/null +++ b/games/gens-gs/slack-desc @@ -0,0 +1,19 @@ +# 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://info.sonicretro.org/Gens/GS +gens-gs: +gens-gs: |