games/gens-gs: Added to 13.0 repository
This commit is contained in:
parent
fa3f7f98d2
commit
6b44d356ab
|
@ -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.
|
|
@ -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}
|
|
@ -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"
|
|
@ -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:
|
Loading…
Reference in New Issue