# HG changeset patch # User Hans-G?nter Theisgen # Date 1641998529 -3600 # Node ID 0817aa6c98ce24450762fd45b9654cc2899770a0 # Parent 818db3c96a1557f593c06a45b5f4de2f0889d97c updated scummvm (2.1.2 -> 2.5.1) diff -r 818db3c96a15 -r 0817aa6c98ce scummvm/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scummvm/description.txt Wed Jan 12 15:42:09 2022 +0100 @@ -0,0 +1,15 @@ +ScummVM is a program which allows you to run certain classic graphical +adventure and role-playing games, provided you already have their data +files. +The clever part about this: ScummVM just replaces the executables +shipped with the games, allowing you to play them on systems for which +they were never designed! +ScummVM is a complete rewrite of these games' executables and is not an +emulator. + +ScummVM supports a huge library of adventures with over 250 games in total. +It supports many classics published by legendary studios like LucasArts, +Sierra On-Line, Revolution Software, Cyan, Inc. and Westwood Studios. +Next to ground-breaking titles like the Monkey Island series, Broken Sword, +Myst, Blade Runner and countless other games you will find some really +obscure adventures and truly hidden gems to explore. diff -r 818db3c96a15 -r 0817aa6c98ce scummvm/receipt --- a/scummvm/receipt Tue Jan 11 18:14:39 2022 +0000 +++ b/scummvm/receipt Wed Jan 12 15:42:09 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="scummvm" -VERSION="2.1.2" +VERSION="2.5.1" CATEGORY="games" SHORT_DESC="A 'virtual machine' for several classic graphical point-and-click adventure games." MAINTAINER="admin@trixarian.net" @@ -11,8 +11,8 @@ TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="${WEB_SITE}frs/$PACKAGE/$VERSION/$TARBALL" -DEPENDS="alsa-lib flac gcc-lib-base libmad libmpeg2 libogg libsdl2 libvorbis zlib" -BUILD_DEPENDS="alsa-lib-dev flac-dev libmad-dev libmpeg2-dev libogg-dev \ +DEPENDS="alsa-lib flac gcc83-lib-base libmad libmpeg2 libogg libsdl2 libvorbis zlib" +BUILD_DEPENDS="alsa-lib-dev flac-dev gcc83 libmad-dev libmpeg2-dev libogg-dev libsdl2-dev libvorbis-dev zlib-dev" CROSS="bug: Doesn't support --build." @@ -20,6 +20,9 @@ # Rules to configure and make the package. compile_rules() { + export CC=gcc-83 + export CXX=g++-83 + ./configure \ --prefix=/usr \ --datadir=/usr/games/scummvm \ @@ -32,7 +35,7 @@ make install && { mkdir -p $DESTDIR/usr/share/applications - cp -a dists/scummvm.desktop $DESTDIR/usr/share/applications + cp -a dists/scummvm.desktop $DESTDIR/usr/share/applications } }