summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author orbea2019-12-15 00:03:28 +0100
committer Willy Sudiarto Raharjo2019-12-15 11:06:32 +0100
commite760c863ed4f0f84787f9b214fff84b41c6b686e (patch)
tree27cd666bdd9f27ff9a7eac9971e13d139bfb0373
parentbb505d2425b2acac90bbfa1167f2de1d103b2a92 (diff)
downloadslackbuilds-e760c863ed4f0f84787f9b214fff84b41c6b686e.tar.gz
games/nSide-libretro: Removed.
Please use games/higan-libretro instead. Signed-off-by: orbea <orbea@riseup.net>
-rw-r--r--games/nSide-libretro/README6
-rw-r--r--games/nSide-libretro/nSide-libretro.SlackBuild91
-rw-r--r--games/nSide-libretro/nSide-libretro.info10
-rw-r--r--games/nSide-libretro/openmp.patch.gzbin427 -> 0 bytes
-rw-r--r--games/nSide-libretro/slack-desc19
5 files changed, 0 insertions, 126 deletions
diff --git a/games/nSide-libretro/README b/games/nSide-libretro/README
deleted file mode 100644
index b915232196..0000000000
--- a/games/nSide-libretro/README
+++ /dev/null
@@ -1,6 +0,0 @@
-Standalone port of nSide to libretro which is a fork of byuu's higan
-that restructures Famicom emulator. This provides the higan_sfc
-balanced profile as a libretro core.
-
-To build the debugging symbols use:
- DEBUG=1 ./nSide-libretro.SlackBuild
diff --git a/games/nSide-libretro/nSide-libretro.SlackBuild b/games/nSide-libretro/nSide-libretro.SlackBuild
deleted file mode 100644
index 919a018e9e..0000000000
--- a/games/nSide-libretro/nSide-libretro.SlackBuild
+++ /dev/null
@@ -1,91 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for nSide-libretro
-
-# Copyright 2017 Hunter Sezen California, USA
-# 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=nSide-libretro
-LIBNAM=higan_sfc_balanced_libretro
-VERSION=${VERSION:-2017.11.30_ae3e75d}
-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:=optimize}" != optimize ] && DEBUG=debug
-
-# Use the gcc OpenMP implementation since clang in Slackware-14.2 does
-# not include OpenMP.
-zcat $CWD/openmp.patch.gz | patch -p1
-
-# clang++ avoids crashes when loading content for the second time
-make -C ${PRGNAM%%-*} \
- binary=library \
- compiler=clang++ \
- target=libretro \
- build=$DEBUG
-
-install -Dm0644 nSide/out/$LIBNAM.so $PKG/usr/lib${LIBDIRSUFFIX}/libretro/$LIBNAM.so
-install -Dm0644 $LIBNAM.info $PKG/usr/lib${LIBDIRSUFFIX}/libretro/info/$LIBNAM.info
-
-if [ $DEBUG = optimize ]; 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 README.txt gpl-3.0.txt $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/nSide-libretro/nSide-libretro.info b/games/nSide-libretro/nSide-libretro.info
deleted file mode 100644
index 4571bf79cf..0000000000
--- a/games/nSide-libretro/nSide-libretro.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="nSide-libretro"
-VERSION="2017.11.30_ae3e75d"
-HOMEPAGE="https://github.com/libretro/nSide"
-DOWNLOAD="http://slackware.uk/sbosrcarch/by-name/games/nSide-libretro/nSide-libretro-2017.11.30_ae3e75d.tar.xz"
-MD5SUM="4ad28d14ffa3c29cafe9d57ef56914b1"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="RetroArch"
-MAINTAINER="Hunter Sezen"
-EMAIL="orbea@riseup.net"
diff --git a/games/nSide-libretro/openmp.patch.gz b/games/nSide-libretro/openmp.patch.gz
deleted file mode 100644
index f180298ac1..0000000000
--- a/games/nSide-libretro/openmp.patch.gz
+++ /dev/null
Binary files differ
diff --git a/games/nSide-libretro/slack-desc b/games/nSide-libretro/slack-desc
deleted file mode 100644
index b2c4b39e1c..0000000000
--- a/games/nSide-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------------------------------------------------------|
-nSide-libretro: nSide-libretro (Restructured libretro fork of higan_sfc)
-nSide-libretro:
-nSide-libretro: Fork of byuu's higan that restructures Famicom emulator.
-nSide-libretro:
-nSide-libretro: Homepage: https://github.com/libretro/nSide
-nSide-libretro:
-nSide-libretro:
-nSide-libretro:
-nSide-libretro:
-nSide-libretro:
-nSide-libretro: