summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2011-04-03 09:26:41 -0500
committer Robby Workman <rworkman@slackbuilds.org>2011-04-03 09:35:36 -0500
commitbeaa195c89b7173234220b1c50d2b8c35853d4b5 (patch)
treebc43b1bace7b3da6372f64b35a8ef45d9b4d0bcf /games
parent79db7d5e9651ef36ae7f7139a222878c24640422 (diff)
downloadslackbuilds-beaa195c89b7173234220b1c50d2b8c35853d4b5.tar.gz
slackbuilds-beaa195c89b7173234220b1c50d2b8c35853d4b5.tar.xz
games/gens-gs: Removed (build failure)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r--games/gens-gs/README10
-rw-r--r--games/gens-gs/gens-gs.SlackBuild102
-rw-r--r--games/gens-gs/gens-gs.info10
-rw-r--r--games/gens-gs/slack-desc19
4 files changed, 0 insertions, 141 deletions
diff --git a/games/gens-gs/README b/games/gens-gs/README
deleted file mode 100644
index f58b1f9095..0000000000
--- a/games/gens-gs/README
+++ /dev/null
@@ -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.
diff --git a/games/gens-gs/gens-gs.SlackBuild b/games/gens-gs/gens-gs.SlackBuild
deleted file mode 100644
index ca6ea41e7f..0000000000
--- a/games/gens-gs/gens-gs.SlackBuild
+++ /dev/null
@@ -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}
diff --git a/games/gens-gs/gens-gs.info b/games/gens-gs/gens-gs.info
deleted file mode 100644
index ed9656de7e..0000000000
--- a/games/gens-gs/gens-gs.info
+++ /dev/null
@@ -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"
diff --git a/games/gens-gs/slack-desc b/games/gens-gs/slack-desc
deleted file mode 100644
index c1f767522e..0000000000
--- a/games/gens-gs/slack-desc
+++ /dev/null
@@ -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: