diff options
author | B. Watson <urchlay@slackware.uk> | 2023-04-18 03:48:21 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-04-22 11:38:36 +0700 |
commit | 48bd8b0010b1bd4a522c94ec774538b3bf89ce82 (patch) | |
tree | 38583c27b17d5cdd05902d793e22d017717a96f8 | |
parent | d944e377acc690fbec45db351cf1d7658ca54406 (diff) |
system/sdltrs: Updated for version 1.2.27, new maintainer.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | system/sdltrs/README | 13 | ||||
-rw-r--r-- | system/sdltrs/doinst.sh | 5 | ||||
-rw-r--r-- | system/sdltrs/sdltrs.SlackBuild | 124 | ||||
-rw-r--r-- | system/sdltrs/sdltrs.desktop | 10 | ||||
-rw-r--r-- | system/sdltrs/sdltrs.info | 12 | ||||
-rw-r--r-- | system/sdltrs/sdltrs.png | bin | 362 -> 0 bytes | |||
-rw-r--r-- | system/sdltrs/slack-desc | 6 |
7 files changed, 102 insertions, 68 deletions
diff --git a/system/sdltrs/README b/system/sdltrs/README index 8b6f1c72f83c..773428d84711 100644 --- a/system/sdltrs/README +++ b/system/sdltrs/README @@ -1,8 +1,15 @@ +sdltrs (Radio Shack TRS-80 Model I/III/4/4P Emulator) + sdltrs is a Radio Shack TRS-80 Model I/III/4/4P emulator for Macintosh OSX, Windows and Linux. It has been ported from the excellent X Window Unix emulator xtrs. Instead of using the X-Window system for graphics, it uses the portable SDL library. -A simple sdltrs.desktop file is included that will start sdltrs -with the default options. Read the included documentation after -installation for more information. +Note: When you start up sdltrs for the first time, it attempts to boot +from floppy disk. If you didn't give "-disk0 /path/to/image.dsk" +on the command line (or if you launched it from your desktop's +application menu), it will "hang" with a black screen. Press Alt+D to +enter the emulator's disk menu and either select a bootable floppy +image or disable the floppy disk controller, or else run sdltrs +with the -nofloppy option. See the man page and the documentation at +/usr/doc/sdltrs-1.2.27/html/index.html for further details. diff --git a/system/sdltrs/doinst.sh b/system/sdltrs/doinst.sh index 4e8ba7071dea..3e5691a052b5 100644 --- a/system/sdltrs/doinst.sh +++ b/system/sdltrs/doinst.sh @@ -2,3 +2,8 @@ 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 usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/system/sdltrs/sdltrs.SlackBuild b/system/sdltrs/sdltrs.SlackBuild index 3ce93a807e58..65b34869c4a2 100644 --- a/system/sdltrs/sdltrs.SlackBuild +++ b/system/sdltrs/sdltrs.SlackBuild @@ -4,6 +4,7 @@ # the Radio Shack TRS-80 Model I/III/4/4p emulator # Copyright 2009-2010, 2012 Niels Horn, Rio de Janeiro, Brazil +# Copyright 2023, B. Watson # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,13 +24,28 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# revision date 2012/08/09 +# 20230418 bkw: +# - new maintainer. +# - update for v1.2.27 (make => meson, for one thing). +# - patch to support system-wide ROM directory (which is shared +# with xtrs). +# - remove disk images from package (they're in trs80-roms now). +# - use upstream's icon and .desktop. +# - include man page in package. +# - new version defaults to enabling the floppy drive, which causes +# it to wait for a disk boot. add a README note explaining the +# situation. + +# 20230418 bkw: Note: the default build is for SDL 2. It's still +# possible to build with SDL 1, but I haven't bothered adding an +# option for that. If you *really* need SDL 1 for some reason, let +# me know. cd $(dirname $0) ; CWD=$(pwd) PRGNAM=sdltrs -VERSION=${VERSION:-1.1.0} -BUILD=${BUILD:-3} +VERSION=${VERSION:-1.2.27} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -41,11 +57,6 @@ if [ -z "$ARCH" ]; then esac fi -SRCVERSION=$(echo $VERSION | tr . _) - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -58,61 +69,82 @@ OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i586" ]; then SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" - ARCHQUADLET="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" LIBDIRSUFFIX="" - ARCHQUADLET="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" - ARCHQUADLET="" else SLKCFLAGS="-O2" LIBDIRSUFFIX="" - ARCHQUADLET="" fi set -e -rm -rf $TMP/${PRGNAM}_$SRCVERSION $PKG +rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT +rm -rf $TMP/$PRGNAM-$VERSION cd $TMP -tar xvf $CWD/${PRGNAM}_$SRCVERSION.tar.gz -cd ${PRGNAM}_$SRCVERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +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 {} \; - -# include -lX11 in the Makefile (sw-14.0) -sed "/^LIBS/s/= /= -lX11 /" -i src/linux/Makefile - -# the Makefile is in the src/linux directory -make INCS="$SLKCFLAGS" -C src/linux - -# sdltrs does not have a "make install" option, so we'll do it manually -mkdir -p $PKG/usr/bin -cp -a src/linux/sdltrs $PKG/usr/bin -strip --strip-unneeded $PKG/usr/bin/sdltrs - -# Copy icon & desktop file to package -mkdir -p $PKG/usr/share/{applications,pixmaps} -cat $CWD/sdltrs.desktop > $PKG/usr/share/applications/sdltrs.desktop -cat $CWD/sdltrs.png > $PKG/usr/share/pixmaps/sdltrs.png - -# Make a directory for the ROMs (not included) and copy included images -mkdir -p $PKG/usr/share/sdltrs -cp -a diskimages/* $PKG/usr/share/sdltrs - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html -cp -a BUILDING README $PKG/usr/doc/$PRGNAM-$VERSION -cp -a docs/* $PKG/usr/doc/$PRGNAM-$VERSION/html/ -find $PKG/usr/doc/$PRGNAM-$VERSION/ -type f -exec chmod 644 {} \; +# upstream permissions are wonky, do not revert to template. +find . -type f -a -exec chmod 644 {} + -o \ + -type d -a -exec chmod 755 {} + + +# 20230417 bkw: Look in system-wide ROM directory by default. +sed -i '/strcpy(romfile/s, ", "/usr/share/trs80-roms/,' src/trs_sdl_interface.c + +mkdir build +cd build + CFLAGS="$SLKCFLAGS" \ + CXXFLAGS="$SLKCFLAGS" \ + meson .. \ + --buildtype=release \ + --infodir=/usr/info \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --localstatedir=/var \ + --mandir=/usr/man \ + --prefix=/usr \ + --sysconfdir=/etc \ + -Dstrip=true + "${NINJA:=ninja}" -v + install -D -m0755 -s $PRGNAM $PKG/usr/games/$PRGNAM +cd .. + +# 20230418 bkw: use upstream's man page, but section 6. +mkdir -p $PKG/usr/man/man6 +sed -e '/^\.TH/s, 1 , 6 ,' \ + -e '/^\.TH/s,$, SlackBuilds.org,' \ + src/$PRGNAM.1 \ + | gzip -9c > $PKG/usr/man/man6/$PRGNAM.6.gz + +# 20230418 bkw: upstream's .desktop lacks categories. +echo 'Categories=System;Emulator;' >> $PRGNAM.desktop +install -D -m0644 $PRGNAM.desktop $PKG/usr/share/applications/$PRGNAM.desktop + +# 20230418 bkw: use upstream's icon, but pre-resized. +HICOLOR=$PKG/usr/share/icons/hicolor +SVGICON=icons/$PRGNAM.svg + +for px in 16 22 32 48 64 96 128; do + size=${px}x${px} + dir=$HICOLOR/$size/apps + mkdir -p $dir + rsvg-convert -w $px -h $px -o $dir/$PRGNAM.png $SVGICON +done + +mkdir -p $HICOLOR/scalable/apps +cp -a $SVGICON $HICOLOR/scalable/apps/$PRGNAM.svg + +mkdir -p $PKG/usr/share/pixmaps +ln -s ../icons/hicolor/48x48/apps/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png + +PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION +mkdir -p $PKGDOC +cp -a CHANGELOG.md README.md *LICENSE utilities html $PKGDOC cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -chmod 755 $PKG/usr/doc/$PRGNAM-$VERSION/html/images/ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc diff --git a/system/sdltrs/sdltrs.desktop b/system/sdltrs/sdltrs.desktop deleted file mode 100644 index cb4197b28f15..000000000000 --- a/system/sdltrs/sdltrs.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Version=1.0 -Type=Application -Name=sdltrs -Comment=Emulator for TRS-80 -Categories=System; -Exec=sdltrs -Icon=sdltrs -Terminal=false -StartupNotify=false diff --git a/system/sdltrs/sdltrs.info b/system/sdltrs/sdltrs.info index 9533a9570a94..1c5d6c16ac10 100644 --- a/system/sdltrs/sdltrs.info +++ b/system/sdltrs/sdltrs.info @@ -1,10 +1,10 @@ PRGNAM="sdltrs" -VERSION="1.1.0" +VERSION="1.2.27" HOMEPAGE="http://sdltrs.sourceforge.net" -DOWNLOAD="http://downloads.sourceforge.net/sdltrs/sdltrs_1_1_0.tar.gz" -MD5SUM="528ef3a6b491ce7858c2d24341494a40" +DOWNLOAD="https://gitlab.com/jengun/sdltrs/-/archive/1.2.27/sdltrs-1.2.27.tar.bz2" +MD5SUM="2db333ea038ae81788fd73d812b6c21f" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Niels Horn" -EMAIL="niels.horn@gmail.com" +REQUIRES="trs80-roms" +MAINTAINER="B. Watson" +EMAIL="urchlay@slackware.uk" diff --git a/system/sdltrs/sdltrs.png b/system/sdltrs/sdltrs.png Binary files differdeleted file mode 100644 index 6f28450c5237..000000000000 --- a/system/sdltrs/sdltrs.png +++ /dev/null diff --git a/system/sdltrs/slack-desc b/system/sdltrs/slack-desc index 51f059c87367..a8cb6ad9e01b 100644 --- a/system/sdltrs/slack-desc +++ b/system/sdltrs/slack-desc @@ -9,11 +9,11 @@ sdltrs: sdltrs (Radio Shack TRS-80 Model I/III/4/4P Emulator) sdltrs: sdltrs: sdltrs is a Radio Shack TRS-80 Model I/III/4/4P emulator for -sdltrs: Macintosh OSX, Windows and Linux. It has been ported from the -sdltrs: excellent X-Windows Unix emulator xtrs. Instead of using the +sdltrs: Macintosh OSX, Windows and Linux. It has been ported from the +sdltrs: excellent X-Windows Unix emulator xtrs. Instead of using the sdltrs: X-Window system for graphics, it uses the portable SDL library. sdltrs: -sdltrs: http://sdltrs.sourceforge.net/ +sdltrs: sdltrs: sdltrs: sdltrs: |