From c8b50cc49a3c440183968ea8e14285bab01415c3 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Wed, 21 Apr 2021 21:39:40 -0500 Subject: games/beetle-psx-libretro: Removed (no maintainer) --- games/beetle-psx-libretro/README | 39 --------- .../beetle-psx-libretro.SlackBuild | 98 ---------------------- games/beetle-psx-libretro/beetle-psx-libretro.info | 10 --- games/beetle-psx-libretro/slack-desc | 19 ----- 4 files changed, 166 deletions(-) delete mode 100644 games/beetle-psx-libretro/README delete mode 100644 games/beetle-psx-libretro/beetle-psx-libretro.SlackBuild delete mode 100644 games/beetle-psx-libretro/beetle-psx-libretro.info delete mode 100644 games/beetle-psx-libretro/slack-desc (limited to 'games/beetle-psx-libretro') diff --git a/games/beetle-psx-libretro/README b/games/beetle-psx-libretro/README deleted file mode 100644 index 8f9444318fec..000000000000 --- a/games/beetle-psx-libretro/README +++ /dev/null @@ -1,39 +0,0 @@ -Mednafen PSX (Beetle PSX) is a Sony PlayStation1 video game system -emulator that can be used as a libretro core. It is a libretro port of -Mednafen PlayStation. - -Mednafen-PSX requires the following BIOS image files for operation: - -* scph5500.bin (MD5 sum: 8dd7d5296a650fac7319bce665a6a53c) NTSC-J -* scph5501.bin (MD5 sum: 490f666e1afb15b7362b406ed1cea246) NTSC-U -* scph5502.bin (MD5 sum: 32736f17079d0b2b7024407c39bd3050) PAL - -The bios names are case sensitive. - -The scph7003.bin BIOS image is the same as scph5501.bin, but will need -to be renamed to scph5501.bin to be used. - -Mednafen can load CD-ROM games from a ripped/dumped copy of the -disc such as CUE+BIN, CloneCD "CCD/IMG/SUB" rips and cdrdao "TOC" -files. For games with more than one CD create a M3U file(plain-text, -".m3u" extension) and enter the filenames of the CUE/TOC/CCD files. - -Beetle PSX can use an OpenGL or Vulkan renderer instead of the -accurate software renderer. This will require support in the libretro -frontend, video card and driver. - -To switch between OpenGL and Vulkan renderers configure the video -driver in RetroArch. This can be done in the menu at 'Settings > -Drivers > Video Driver'. - -To build the OpenGL renderer use: - OPENGL=1 ./beetle-psx-libretro.SlackBuild - -To build the Vulkan renderer use: - VULKAN=1 ./beetle-psx-libretro.SlackBuild - -To build both the OpenGL and Vulkan renderers use: - HW=1 ./beetle-psx-libretro.SlackBuild - -To build the debugging symbols use: - DEBUG=1 ./beetle-psx-libretro.SlackBuild diff --git a/games/beetle-psx-libretro/beetle-psx-libretro.SlackBuild b/games/beetle-psx-libretro/beetle-psx-libretro.SlackBuild deleted file mode 100644 index 6a91d9c3c918..000000000000 --- a/games/beetle-psx-libretro/beetle-psx-libretro.SlackBuild +++ /dev/null @@ -1,98 +0,0 @@ -#!/bin/sh - -# Slackware build script for beetle-psx-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=beetle-psx-libretro -LIBNAM=mednafen_psx_libretro -VERSION=${VERSION:-2020.02.03_e5e83cd} -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 -[ "${HW:-0}" != 0 ] && { OPENGL=1; VULKAN=1; } -[ "${OPENGL:=0}" != 0 ] && OPENGL=1 -[ "${VULKAN:=0}" != 0 ] && VULKAN=1 - -if [ $OPENGL != 0 ] || [ $VULKAN != 0 ]; then - LIBNAM="$(printf %s "$LIBNAM" | sed 's/psx/psx_hw/')" -fi - -make \ - DEBUG=$DEBUG \ - VULKAN_DEBUG=$DEBUG \ - HAVE_OPENGL=$OPENGL \ - HAVE_VULKAN=$VULKAN \ - GIT_VERSION="${VERSION#*_}" - -install -Dm0644 $LIBNAM.so $PKG/usr/lib${LIBDIRSUFFIX}/libretro/$LIBNAM.so -install -Dm0644 $LIBNAM.info $PKG/usr/lib${LIBDIRSUFFIX}/libretro/info/$LIBNAM.info - -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/parallel-psx -for DOCDIR in . parallel-psx; do - for DOC in COPYING README.md; do - cp -a $DOCDIR/$DOC $PKG/usr/doc/$PRGNAM-$VERSION/$DOCDIR - done -done -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/beetle-psx-libretro/beetle-psx-libretro.info b/games/beetle-psx-libretro/beetle-psx-libretro.info deleted file mode 100644 index 07c89fa49d1a..000000000000 --- a/games/beetle-psx-libretro/beetle-psx-libretro.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="beetle-psx-libretro" -VERSION="2020.02.03_e5e83cd" -HOMEPAGE="https://www.libretro.com/" -DOWNLOAD="http://slackless.raccoons.tech/src/libretro/beetle-psx-libretro-2020.02.03_e5e83cd.tar.xz" -MD5SUM="cb0c354662b1b1676eb3169f10b365f6" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="RetroArch" -MAINTAINER="orphaned - no maintainer" -EMAIL="nobody@nowhere.com" diff --git a/games/beetle-psx-libretro/slack-desc b/games/beetle-psx-libretro/slack-desc deleted file mode 100644 index c4d2bc1506a3..000000000000 --- a/games/beetle-psx-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------------------------------------------------------| -beetle-psx-libretro: beetle-psx-libretro (libretro fork of Mednafen PSX) -beetle-psx-libretro: -beetle-psx-libretro: Mednafen PSX (Beetle PSX) is a Sony PlayStation1 video game system -beetle-psx-libretro: emulator that can be used as a libretro core. It is a libretro port -beetle-psx-libretro: of Mednafen PlayStation. -beetle-psx-libretro: -beetle-psx-libretro: Homepage: https://www.libretro.com/ -beetle-psx-libretro: -beetle-psx-libretro: -beetle-psx-libretro: -beetle-psx-libretro: -- cgit v1.2.3