From 1d0a8f399f8bab57456fb39fba1542d384d31ee1 Mon Sep 17 00:00:00 2001 From: orbea Date: Sun, 9 Feb 2020 08:38:48 -0800 Subject: games/bsnes-libretro: Removed. Please use bsnes-mercury instead. Signed-off-by: orbea --- games/bsnes-libretro/README | 62 ------------------ games/bsnes-libretro/bsnes-libretro.SlackBuild | 91 -------------------------- games/bsnes-libretro/bsnes-libretro.info | 10 --- games/bsnes-libretro/slack-desc | 19 ------ 4 files changed, 182 deletions(-) delete mode 100644 games/bsnes-libretro/README delete mode 100644 games/bsnes-libretro/bsnes-libretro.SlackBuild delete mode 100644 games/bsnes-libretro/bsnes-libretro.info delete mode 100644 games/bsnes-libretro/slack-desc diff --git a/games/bsnes-libretro/README b/games/bsnes-libretro/README deleted file mode 100644 index 26e7dd93f2..0000000000 --- a/games/bsnes-libretro/README +++ /dev/null @@ -1,62 +0,0 @@ -Libretro fork of bsnes. As close to upstream as possible. - -bsnes is a Super Nintendo emulator that began development on 2004-10-14. It -focuses on accuracy and clean code above all else. It never uses speed or -compatibilty hacks. As a result, the minimum system requirements are greater -than with other emulators. bsnes comes in three different profiles (accuracy, -balance and performance) which contain minor differences in the PPU (graphics) -emulation. - -bsnes requires the following BIOS image files under the system directory for -operation: - -* dsp1.data.rom (DSP1 DATA) (CRC: c8347cbd) -* dsp1.program.rom (DSP1 PROGRAM) (CRC: db9a4c92) -* dsp1b.data.rom (DSP1B DATA) (CRC: 37a252c6) -* dsp1b.program.rom (DSP1B PROGRAM)) (CRC: 66a73998) -* dsp2.data.rom (DSP2 DATA) (CRC: b3893c70) -* dsp2.program.rom (DSP2 PROGRAM) (CRC: 0c1cf838) -* dsp3.data.rom (DSP3 DATA) (CRC: 8b41a2bd) -* dsp3.program.rom (DSP3 PROGRAM) (CRC: f29be51c) -* dsp4.data.rom (DSP4 DATA) (CRC: efa8b9b2) -* dsp4.program.rom (DSP4 PROGRAM) (CRC: 14b77ae3) -* cx4.data.rom (Cx4 DATA) (CRC: b6e76a6a) -* st010.data.rom (ST-0010 DATA) (CRC: 216081b2) -* st010.program.rom (ST-0010 PROGRAM) (CRC: 691cbb4f) -* st011.data.rom (ST-0011 DATA) (CRC: 803256a7) -* st011.program.rom (ST-0011 PROGRAM) (CRC: a741e9fb) -* st018.data.rom (ST-0018 DATA) (CRC: b5255459) -* st018.program.rom (ST-0018 PROGRAM) (CRC: f73d5e10) -* sgb.boot.rom (SGB BOOT PROGRAM) (CRC: ec8a83b9 [1]) - -[1] This is the boot rom only, you need the correct cart image to load SGB -games. - -===== - -Super Gameboy is supported via the subsystem API. In RetroArch the API is -already implemented but only available via CLI. For SGB support you need both -sgb.boot.rom and the SGB rom. To launch SGB games launch RetroArch like this: - - retroarch -L {path to bsnes core} {path to snes rom} \ - --subsystem sgb {path to gb rom} - -Tested snes roms [2]: -* Super Game Boy (Japan, USA) (Rev 1).sfc (CRC: 27a03c98)[3] -* Super Game Boy (World) (Rev 2).sfc (CRC: 8a4a174f) -* Super Game Boy 2 (Japan).sfc (CRC: cb176e45) - -[2] Savestates are broken in this implementation. -[3] Some games don't work with this rom, try version SGB v2 for best results. - -===== - -By default, this SlackBuild will build the bsnes accuracy core. -To build the balanced or performance cores, choose any desired cores: - CORE="accuracy balanced performance" ./bsnes-libretro.SlackBuild - -Or to build all three cores, "all" can be used: - CORE="all" ./bsnes-libretro.SlackBuild - -To build the debugging symbols use: - DEBUG=1 ./bsnes-libretro.SlackBuild diff --git a/games/bsnes-libretro/bsnes-libretro.SlackBuild b/games/bsnes-libretro/bsnes-libretro.SlackBuild deleted file mode 100644 index fd51d061a3..0000000000 --- a/games/bsnes-libretro/bsnes-libretro.SlackBuild +++ /dev/null @@ -1,91 +0,0 @@ -#!/bin/sh - -# Slackware build script for bsnes-libretro - -# Copyright 2016-2018 Hunter Sezen -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRGNAM=bsnes-libretro -LIBNAM=$(echo $PRGNAM | cut -f1 -d"-") -VERSION=${VERSION:-2018.08.15_c6e90dd} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -LIBDIRSUFFIX= -[ "$ARCH" = x86_64 ] && LIBDIRSUFFIX=64 - -set -eu - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.xz -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -[ "${DEBUG:=0}" != 0 ] && DEBUG=1 - -case "$ARCH" in - arm) CORE="${CORE:-performance}" ;; - *) CORE="${CORE:-accuracy}" ;; -esac - -[ "$CORE" = all ] && CORE='accuracy balanced performance' - -for PROFILE in $CORE; do - CORENAM="${LIBNAM}_${PROFILE}_libretro" - make profile="$PROFILE" DEBUG=$DEBUG GIT_VERSION="${VERSION#*_}" - install -Dm0644 out/$CORENAM.so $PKG/usr/lib${LIBDIRSUFFIX}/libretro/$CORENAM.so - install -Dm0644 $CORENAM.info $PKG/usr/lib${LIBDIRSUFFIX}/libretro/info/$CORENAM.info -done - -if [ $DEBUG = 0 ]; then - find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -fi - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING $PKG/usr/doc/$PRGNAM-$VERSION -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/bsnes-libretro/bsnes-libretro.info b/games/bsnes-libretro/bsnes-libretro.info deleted file mode 100644 index 2f09212edd..0000000000 --- a/games/bsnes-libretro/bsnes-libretro.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="bsnes-libretro" -VERSION="2018.08.15_c6e90dd" -HOMEPAGE="https://www.libretro.com/" -DOWNLOAD="http://slackless.raccoons.tech/src/libretro/bsnes-libretro-2018.08.15_c6e90dd.tar.xz" -MD5SUM="8ef40fd875b5d9e1f4ef9b93a3b506aa" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="RetroArch" -MAINTAINER="Hunter Sezen" -EMAIL="orbea@riseup.net" diff --git a/games/bsnes-libretro/slack-desc b/games/bsnes-libretro/slack-desc deleted file mode 100644 index 79515747a0..0000000000 --- a/games/bsnes-libretro/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -bsnes-libretro: bsnes-libretro (libretro fork of bsnes) -bsnes-libretro: -bsnes-libretro: bsnes is a Super Nintendo video game system emulator that can be -bsnes-libretro: used as a libretro core. -bsnes-libretro: -bsnes-libretro: Homepage: https://www.libretro.com/ -bsnes-libretro: -bsnes-libretro: -bsnes-libretro: -bsnes-libretro: -bsnes-libretro: -- cgit v1.2.3