pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/games/scummvm-tools



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Oct 14 19:18:15 UTC 2019

Modified Files:
        pkgsrc/games/scummvm-tools: Makefile PLIST distinfo
        pkgsrc/games/scummvm-tools/patches: patch-configure
Removed Files:
        pkgsrc/games/scummvm-tools/patches: patch-Makefile.common
            patch-decompiler_refcounted.h patch-engines_gob_degob__script.cpp

Log Message:
scummvm-tools: updated to 2.1.0

2.1.0 (2019-10-13)
 - Fix bug 10559: Add workaround to compress_scumm_sou for non-VOC speech
   sample in monster.sou of Indiana Jones and the Fate of Atlantis.
 - Improve endianness handling of internal FLAC encoder.
 - Add tool to create HDFRAMES.DAT file for Blade Runner game.
 - Major rewrite of extract_prince tool.
 - Implement decompiler for Prince game scripts.
 - Rework the Mohawk engine tools.
 - Add tool to extract Hyperspace Delivery Boy! game archives.

2.0.0 (2017-12-17)
 - Fix handling of output path for the compress_touche tool.
 - Fix handling of input path for the extract_cine tool. It was only working
   when run from the directory that contains the game data.
 - Fix memory corruption that could cause random errors during extraction when
   using the extract_cine tool.

1.9.0 (2016-10-27)
 - Fix random crashes in the tool to convert Broken Sword 1 speech files.

1.8.0 (2016-03-04)
 - Add a tool to compress Tony Tough's ADP files.
 - Add extraction and packing tools for The Prince and the Coward.
 - Fix detection and decoding of BS1 big endian speech data in compress_sword1.
 - Fix inputs handling for extract_gob_stk.

1.7.0 (2014-07-21)
 - Add support for CGE 2 (Sfinx) in extract_cge and pack_cge tools.
 - Add option to run some of the tools in the GUI  on all the files with the same
   extension (e.g. run compress_scumm_san on all *.san files).
 - Improve support for sub-directory structure in Broken Sword 1 (e.g. when the
   files are in the Clusters, Music and Speech sub-directories).
 - Fix issue with output file name in compress_sword2 tool when specifying an
   output directory (the output file name was empty with only an extension).
 - Fix issue when trying to use compress_scumm_san more than once in the GUI
   tool.

1.6.0 (2013-05-31)
 - Fix crash when compiling with wxWidgets 2.9.
 - Add two tools to extract and repackage the Soltys game data.
 - Fix bug 3093138: "compress_tucker with ScummVM CLI Tools not working".
 - Fix bug 3280674: "ScummTools do not compress monster.sou of german fdd-version"
 - Fix various issues on case sensitive systems when looking for input files
   (e.g. in compress_tucker or compress_sword1 the sub-directories and input
   files needed to be all uppercase).
 - Improve tool detection and inputs handling for tools that require multiple
   input files or an input directory (in both the GUI and command line).
 - Add signature to compressed Tinsel .smp to match the one at the start of
   the .idx file. This ensures that no sound starts at offset 0, since that is
   interpreted as the sound missing. This fixes the first line of speech when
   Rincewind wakes up at the beginning of Discworld 1.
 - Fix too long help string for compression tools in the extra input file
   selection which made the file selection impossible because the widgets
   were outside the window.
 - Respect given output directory in compress_tinsel.


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 pkgsrc/games/scummvm-tools/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/games/scummvm-tools/PLIST
cvs rdiff -u -r1.8 -r1.9 pkgsrc/games/scummvm-tools/distinfo
cvs rdiff -u -r1.1 -r0 \
    pkgsrc/games/scummvm-tools/patches/patch-Makefile.common \
    pkgsrc/games/scummvm-tools/patches/patch-decompiler_refcounted.h \
    pkgsrc/games/scummvm-tools/patches/patch-engines_gob_degob__script.cpp
cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/scummvm-tools/patches/patch-configure

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/games/scummvm-tools/Makefile
diff -u pkgsrc/games/scummvm-tools/Makefile:1.52 pkgsrc/games/scummvm-tools/Makefile:1.53
--- pkgsrc/games/scummvm-tools/Makefile:1.52    Thu Aug 22 12:23:14 2019
+++ pkgsrc/games/scummvm-tools/Makefile Mon Oct 14 19:18:15 2019
@@ -1,21 +1,20 @@
-# $NetBSD: Makefile,v 1.52 2019/08/22 12:23:14 ryoon Exp $
-#
+# $NetBSD: Makefile,v 1.53 2019/10/14 19:18:15 adam Exp $
 
-DISTNAME=              scummvm-tools-1.4.0
-PKGREVISION=           38
-CATEGORIES=            games
-MASTER_SITES=          ${MASTER_SITE_SOURCEFORGE:=scummvm/}
-EXTRACT_SUFX=          .tar.bz2
+DISTNAME=      scummvm-tools-2.1.0
+CATEGORIES=    games
+MASTER_SITES=  https://www.scummvm.org/frs/scummvm-tools/${PKGVERSION_NOREV}/
+EXTRACT_SUFX=  .tar.xz
 
-MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=              http://scummvm.sourceforge.net/
-COMMENT=               Conversion and compression tools for ScummVM
-LICENSE=               gnu-gpl-v2
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      http://scummvm.sourceforge.net/
+COMMENT=       Conversion and compression tools for ScummVM
+LICENSE=       gnu-gpl-v2
 
 USE_LANGUAGES=         c c++
 USE_TOOLS+=            gmake
 HAS_CONFIGURE=         yes
-CONFIGURE_ARGS+=       --prefix=${PREFIX}
+CONFIGURE_ARGS=                --prefix=${PREFIX}
+CONFIGURE_ARGS+=       --with-wx-prefix=${PREFIX}
 
 INSTALLATION_DIRS=     bin
 
@@ -27,5 +26,5 @@ INSTALLATION_DIRS=    bin
 .include "../../devel/zlib/buildlink3.mk"
 .include "../../graphics/png/buildlink3.mk"
 .include "../../graphics/freetype2/buildlink3.mk"
-.include "../../x11/wxGTK28/buildlink3.mk"
+.include "../../x11/wxGTK30/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/games/scummvm-tools/PLIST
diff -u pkgsrc/games/scummvm-tools/PLIST:1.3 pkgsrc/games/scummvm-tools/PLIST:1.4
--- pkgsrc/games/scummvm-tools/PLIST:1.3        Sun Aug 12 22:00:34 2012
+++ pkgsrc/games/scummvm-tools/PLIST    Mon Oct 14 19:18:15 2019
@@ -1,11 +1,11 @@
-@comment $NetBSD: PLIST,v 1.3 2012/08/12 22:00:34 wiz Exp $
+@comment $NetBSD: PLIST,v 1.4 2019/10/14 19:18:15 adam Exp $
 bin/construct_mohawk
 bin/create_sjisfnt
 bin/decine
 bin/decompile
 bin/degob
 bin/dekyra
-bin/deriven
+bin/deprince
 bin/descumm
 bin/desword2
 bin/extract_mohawk

Index: pkgsrc/games/scummvm-tools/distinfo
diff -u pkgsrc/games/scummvm-tools/distinfo:1.8 pkgsrc/games/scummvm-tools/distinfo:1.9
--- pkgsrc/games/scummvm-tools/distinfo:1.8     Thu Dec 15 23:53:38 2016
+++ pkgsrc/games/scummvm-tools/distinfo Mon Oct 14 19:18:15 2019
@@ -1,10 +1,7 @@
-$NetBSD: distinfo,v 1.8 2016/12/15 23:53:38 joerg Exp $
+$NetBSD: distinfo,v 1.9 2019/10/14 19:18:15 adam Exp $
 
-SHA1 (scummvm-tools-1.4.0.tar.bz2) = 44a422872180f8aea3eb57e0462d930e22c533ba
-RMD160 (scummvm-tools-1.4.0.tar.bz2) = baabb1d8fb99be72c5eafb186aa132b797edc58d
-SHA512 (scummvm-tools-1.4.0.tar.bz2) = 0997bf4f7cea27af6fd8821303fc08029cb6c57d4291eede9b7e2bcddff3512c101f886b1b776217b231efd12a6828593a592915690ea724f33348345bdff0a4
-Size (scummvm-tools-1.4.0.tar.bz2) = 943697 bytes
-SHA1 (patch-Makefile.common) = d296c951793facfc35835a250b652cedc25b949b
-SHA1 (patch-configure) = cf5da2584ec2fa05fb81faa115f8de0616dd04f7
-SHA1 (patch-decompiler_refcounted.h) = 509b95e42fa52a1f2c1892dbcfae829a9b7c92f6
-SHA1 (patch-engines_gob_degob__script.cpp) = 6bd377ea818076bc12da69b4d1c2588fa5ead449
+SHA1 (scummvm-tools-2.1.0.tar.xz) = 8ce9007d7fe6797339c85958cdb6e76048688005
+RMD160 (scummvm-tools-2.1.0.tar.xz) = d87c8ed99cc87fa312ce5c6ddad3456b7b8f54a5
+SHA512 (scummvm-tools-2.1.0.tar.xz) = 40e0b1a545257922dd1846d520ef0c18ef7a2682a3d7bb1709bcd49b1338ed7cefea438958941586329271d84e01bf189a14e31f5758e500df607d162ee9cc15
+Size (scummvm-tools-2.1.0.tar.xz) = 710124 bytes
+SHA1 (patch-configure) = 5e6054f9a998d7cdf8522e449199b91f6e58392b

Index: pkgsrc/games/scummvm-tools/patches/patch-configure
diff -u pkgsrc/games/scummvm-tools/patches/patch-configure:1.1 pkgsrc/games/scummvm-tools/patches/patch-configure:1.2
--- pkgsrc/games/scummvm-tools/patches/patch-configure:1.1      Sat Aug 18 07:42:29 2012
+++ pkgsrc/games/scummvm-tools/patches/patch-configure  Mon Oct 14 19:18:15 2019
@@ -1,11 +1,37 @@
-$NetBSD: patch-configure,v 1.1 2012/08/18 07:42:29 marino Exp $
+$NetBSD: patch-configure,v 1.2 2019/10/14 19:18:15 adam Exp $
 
-Add DragonFly support
+Fix wx detection.
+Add DragonFly support.
 
---- configure.orig     2011-11-03 18:13:41.000000000 +0000
+--- configure.orig     2019-10-04 21:44:09.000000000 +0000
 +++ configure
-@@ -886,6 +886,9 @@ case $_host_os in
-       android | beos* | bsd* | darwin* | freebsd* | gph-linux | haiku* | hpux* | iphone | irix* | linux* | mint* | netbsd* | openbsd* | solaris* | sunos* | uclinux* | webos)
+@@ -365,6 +365,7 @@ Optional Libraries:
+   --disable-png            disable libpng (compression) support [autodetect]
+ 
+   --with-wx-prefix=DIR     Prefix where wxwidgets is installed (optional)
++  --with-wx-config=DIR     Prefix where wx-config is installed (optional)
+   --disable-wxwidgets      disable wxwidgets (GUI) support [autodetect]
+ 
+   --disable-iconv          disable iconv (Japanese font) support [autodetect]
+@@ -447,7 +448,15 @@ for ac_option in $@; do
+               ;;
+       --with-wx-prefix=*)
+               arg=`echo $ac_option | cut -d '=' -f 2`
+-              _wxpath="$arg:$arg/bin"
++              _wxpath="$arg"
++              ;;
++      --with-wx-config=*)
++              arg=`echo $ac_option | cut -d '=' -f 2`
++              _wxconfig="$arg"
++              ;;
++      --with-wx-version=*)
++              arg=`echo $ac_option | cut -d '=' -f 2`
++              # ignore
+               ;;
+       --with-boost-prefix=*)
+               arg=`echo $ac_option | cut -d '=' -f 2`
+@@ -1326,6 +1335,9 @@ case $_host_os in
+       android | beos* | bsd* | darwin* | freebsd* | gph-linux | haiku* | hpux* | iphone | irix* | linux* | mint* | netbsd* | openbsd* | riscos | solaris* | sunos* | uclinux* | webos)
                _posix=yes
                ;;
 +      dragonfly*)
@@ -14,3 +40,14 @@ Add DragonFly support
        os2-emx*)
                _posix=yes      # FIXME: Really???
                ;;
+@@ -1665,7 +1677,9 @@ echo "$_iconv"
+ #
+ if test "$_wxwidgets" = auto ; then
+       _wxwidgets=no
+-      find_wxconfig
++      if test -z "$_wxconfig"; then
++              find_wxconfig
++      fi
+       if test -n "$_wxconfig"; then
+               _wxwidgets=yes
+       fi



Home | Main Index | Thread Index | Old Index