games/stella: Updated for version 6.0.2, update man page.

Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
B. Watson 2019-12-02 09:02:51 -05:00 committed by Willy Sudiarto Raharjo
parent bad3717093
commit 7eec90c13c
No known key found for this signature in database
GPG Key ID: 887B8374D7333381
4 changed files with 644 additions and 2456 deletions

File diff suppressed because it is too large Load Diff

View File

@ -8,6 +8,10 @@
# Now maintained by B. Watson <yalhcru@gmail.com>
# 20191201 bkw:
# - update for 6.0.2.
# - replace my outdated man page with the up-to-date one from Debian.
# 20180611 bkw: update for 5.1.3, move binary to /usr/games
# 20180206 bkw: update for 5.1
# 20170821 bkw: update for 5.0.2
@ -37,7 +41,7 @@
# - StartupNotify=false in .desktop
PRGNAM=stella
VERSION=${VERSION:-5.1.3}
VERSION=${VERSION:-6.0.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -76,16 +80,12 @@ cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION-src.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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
# 20170620 bkw: configure checks for gcc 4.7, 5.x, or 6.x. Fails on -current
# because we have 7.x.
sed -i 's,\[5-6\],[5-9],g' configure
#sed -i 's,\[5-6\],[5-9],g' configure
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
@ -105,7 +105,7 @@ ln -s \
../icons/hicolor/128x128/apps/$PRGNAM.png \
$PKG/usr/share/pixmaps/$PRGNAM.png
# Man page written for this build.
# Man page borrowed from Debian.
# Upstream said he'd be shipping a man page starting with 4.7, so I could
# quit including one here, but so far it hasn't happened...
mkdir -p $PKG/usr/man/man6

View File

@ -1,8 +1,8 @@
PRGNAM="stella"
VERSION="5.1.3"
VERSION="6.0.2"
HOMEPAGE="https://stella-emu.github.io/"
DOWNLOAD="https://github.com/stella-emu/stella/releases/download/5.1.3/stella-5.1.3-src.tar.xz"
MD5SUM="f7cccdf4761b7183a235ffeef136e180"
DOWNLOAD="https://github.com/stella-emu/stella/releases/download/6.0.2/stella-6.0.2-src.tar.xz"
MD5SUM="43f71246d9ab256687bce4ddc6e63965"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="SDL2"

File diff suppressed because it is too large Load Diff