diff options
author | Steven Voges <svoges.sbo@gmail.com> | 2023-04-14 22:29:55 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-04-15 07:15:29 +0700 |
commit | 55c94b63289cce00f0120987edd059f6d08d2c38 (patch) | |
tree | a76a85f6e54c0bcfe1535887c777e2e8fd07ad51 /system | |
parent | 66973fedd06152f83562c70e1656fb84a96e0bc9 (diff) |
system/gsplus: Added (Apple IIgs emulator)
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/gsplus/README | 1 | ||||
-rw-r--r-- | system/gsplus/doinst.sh | 9 | ||||
-rw-r--r-- | system/gsplus/gsplus.SlackBuild | 119 | ||||
-rw-r--r-- | system/gsplus/gsplus.desktop | 12 | ||||
-rw-r--r-- | system/gsplus/gsplus.info | 14 | ||||
-rw-r--r-- | system/gsplus/slack-desc | 19 |
6 files changed, 174 insertions, 0 deletions
diff --git a/system/gsplus/README b/system/gsplus/README new file mode 100644 index 000000000000..70fca067c71e --- /dev/null +++ b/system/gsplus/README @@ -0,0 +1 @@ +Modern cross-platform Apple IIgs emulator and tools based on KEGS diff --git a/system/gsplus/doinst.sh b/system/gsplus/doinst.sh new file mode 100644 index 000000000000..65c7e2eeb9aa --- /dev/null +++ b/system/gsplus/doinst.sh @@ -0,0 +1,9 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/system/gsplus/gsplus.SlackBuild b/system/gsplus/gsplus.SlackBuild new file mode 100644 index 000000000000..be9414db7387 --- /dev/null +++ b/system/gsplus/gsplus.SlackBuild @@ -0,0 +1,119 @@ +#!/bin/bash + +# Slackware build script for gsplus + +# Copyright 2023 Steven Voges <Oregon, 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. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=gsplus +VERSION=${VERSION:-20190816_4805720} +SRCVER=${SRCVER:-480572054518112647c8fae5d7ea7046a6d6ecfb} +ATBRIDGE=${ATBRIDGE:-OFF} +NET=${NET:-OFF} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$SRCVER +tar xvf $CWD/$PRGNAM-$SRCVER.tar.gz +cd $PRGNAM-$SRCVER + +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 {} \; + +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DWITH_ATBRIDGE=$ATBRIDGE \ + -DWITH_RAWNET=$NET \ + -DCMAKE_BUILD_TYPE=Release .. + make +cd .. + +install -vDm0755 $TMP/$PRGNAM-$SRCVER/build/bin/GSplus $PKG/usr/bin/${PRGNAM} +install -vDm0644 $CWD/${PRGNAM}.desktop $PKG/usr/share/applications/$PRGNAM.desktop +for name in ROM1 ROM3; do + install -vDm0644 $CWD/ROM1 $PKG/usr/share/$PRGNAM/${name} +done +for i in 16 32 64 128 256 512 1024; do + install -vDm0644 $TMP/$PRGNAM-$SRCVER/assets/gsp_icon_${i}.png \ + $PKG/usr/share/icons/hicolor/${i}x${i}/apps/${PRGNAM}.png +done + +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 + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + COPYRIGHT.txt LICENSE.txt README.md doc/gsplusmanual.pdf \ + $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 +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/system/gsplus/gsplus.desktop b/system/gsplus/gsplus.desktop new file mode 100644 index 000000000000..ae9e0e196a4d --- /dev/null +++ b/system/gsplus/gsplus.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=gsplus +Comment=Modern cross-platform Apple IIgs emulator +Exec=gsplus %f +Icon=gsplus +Path=/$HOME/.local/share/gsplus +Terminal=false +Categories=System; +MimeType=application/x-gsplus; +Keywords=apple,simulator;
\ No newline at end of file diff --git a/system/gsplus/gsplus.info b/system/gsplus/gsplus.info new file mode 100644 index 000000000000..7c8d9784d4ed --- /dev/null +++ b/system/gsplus/gsplus.info @@ -0,0 +1,14 @@ +PRGNAM="gsplus" +VERSION="20190816_4805720" +HOMEPAGE="https://apple2.gs/plus" +DOWNLOAD="https://github.com/digarok/gsplus/archive/480572054518112647c8fae5d7ea7046a6d6ecfb/gsplus-480572054518112647c8fae5d7ea7046a6d6ecfb.tar.gz \ + https://apple2.gs/downloads/ROM1 \ + https://apple2.gs/downloads/ROM3" +MD5SUM="e74b0c287cfb34f0e7b1702c0db3d0ee \ + 20a0334c447cb069a040ae5be1d938df \ + ba89edf2729a28a17cd9e0f7a0ac9a39" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Steven Voges" +EMAIL="svoges.sbo@gmail.com" diff --git a/system/gsplus/slack-desc b/system/gsplus/slack-desc new file mode 100644 index 000000000000..54cd791e4636 --- /dev/null +++ b/system/gsplus/slack-desc @@ -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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +gsplus: gsplus (Apple IIgs emulator) +gsplus: +gsplus: Modern cross-platform Apple IIgs emulator and tools based on KEGS +gsplus: +gsplus: Homepage: https://apple2.gs/plus +gsplus: +gsplus: +gsplus: +gsplus: +gsplus: +gsplus: |