Hi, The GemRB project is celebrating its 20-year anniversary with the release 0.8.7. The main improvements appear to be for pathfinding.
Changelog: https://gemrb.org/2020/08/24/gemrb-0-8-7-released.html I tested it with a little gameplay in Planescape: Torment without problems. Notes: - Needed to add include dir ${LOCALBASE}/include so that iconv.h could be found. - Distfile and directory names got shuffled. - C++11 is now used for compiling. Removed COMPILER base-gcc therefore. cc Maintainer ok? Index: Makefile =================================================================== RCS file: /cvs/ports/games/gemrb/Makefile,v retrieving revision 1.15 diff -u -p -r1.15 Makefile --- Makefile 13 Dec 2019 08:24:26 -0000 1.15 +++ Makefile 6 Sep 2020 10:04:31 -0000 @@ -4,7 +4,9 @@ SHARED_LIBS += gemrb_core 0.0 COMMENT = open-source implementation of Bioware's Infinity Engine -DISTNAME = gemrb-0.8.6 +V = 0.8.7 +DISTNAME = gemrb-${V}-sources +PKGNAME = gemrb-${V} CATEGORIES = games emulators x11 @@ -20,7 +22,8 @@ MASTER_SITES = ${MASTER_SITE_SOURCEFORG WANTLIB += SDL SDL_mixer c freetype iconv m openal png pthread WANTLIB += vlc vorbisfile z ${MODPY_WANTLIB} ${COMPILER_LIBCXX} -COMPILER = base-clang ports-gcc base-gcc +# C++11 +COMPILER = base-clang ports-gcc MODULES = devel/cmake \ lang/python @@ -40,6 +43,11 @@ CONFIGURE_ARGS += -DSYSCONF_DIR=${SYSCON -DDISABLE_WERROR=1 NO_TEST = Yes + +WRKDIST = ${WRKDIR}/gemrb-${V} + +do-gen: + ${SUBST_CMD} ${WRKSRC}/CMakeLists.txt post-install: cd ${PREFIX}/share/gemrb/GUIScripts/ && find * -name \*.py \ Index: distinfo =================================================================== RCS file: /cvs/ports/games/gemrb/distinfo,v retrieving revision 1.4 diff -u -p -r1.4 distinfo --- distinfo 13 Dec 2019 08:24:26 -0000 1.4 +++ distinfo 6 Sep 2020 10:04:31 -0000 @@ -1,2 +1,2 @@ -SHA256 (gemrb-0.8.6.tar.gz) = dC12PoqkNaq+U5FHGer674P3z+BAo9oZPhZaP9gHlyw= -SIZE (gemrb-0.8.6.tar.gz) = 12421522 +SHA256 (gemrb-0.8.7-sources.tar.gz) = J2p79t0qmHyHUIgKend2TvUoEqz8U8Xj2QExI9b43cQ= +SIZE (gemrb-0.8.7-sources.tar.gz) = 12415301 Index: patches/patch-CMakeLists_txt =================================================================== RCS file: patches/patch-CMakeLists_txt diff -N patches/patch-CMakeLists_txt --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-CMakeLists_txt 6 Sep 2020 10:04:31 -0000 @@ -0,0 +1,14 @@ +$OpenBSD$ + +Index: CMakeLists.txt +--- CMakeLists.txt.orig ++++ CMakeLists.txt +@@ -6,6 +6,8 @@ endif(COMMAND cmake_policy) + + set(CMAKE_CXX_STANDARD 11) + ++include_directories( "${LOCALBASE}/include" ) ++ + # prevent in-source builds + IF(NOT INSOURCEBUILD AND (${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})) + MESSAGE(FATAL_ERROR " Index: patches/patch-gemrb_GemRB_cfg_sample_in =================================================================== RCS file: /cvs/ports/games/gemrb/patches/patch-gemrb_GemRB_cfg_sample_in,v retrieving revision 1.3 diff -u -p -r1.3 patch-gemrb_GemRB_cfg_sample_in --- patches/patch-gemrb_GemRB_cfg_sample_in 13 Dec 2019 08:24:27 -0000 1.3 +++ patches/patch-gemrb_GemRB_cfg_sample_in 6 Sep 2020 10:04:31 -0000 @@ -2,7 +2,7 @@ $OpenBSD: patch-gemrb_GemRB_cfg_sample_i Index: gemrb/GemRB.cfg.sample.in --- gemrb/GemRB.cfg.sample.in.orig +++ gemrb/GemRB.cfg.sample.in -@@ -171,7 +171,7 @@ GamePath=/mnt/windows/Programmi/Black Isle/BGII - SoA/ +@@ -173,7 +173,7 @@ GamePath=/mnt/windows/Programmi/Black Isle/BGII - SoA/ # Cache directory. # ##################################################### @@ -11,7 +11,7 @@ Index: gemrb/GemRB.cfg.sample.in ##################################################### # GemRB Save Path [String] # -@@ -208,7 +208,7 @@ CachePath=@DEFAULT_CACHE_DIR@ +@@ -214,7 +214,7 @@ GemRBPath=. # the 'GUIScript' subdirectory. # ##################################################### @@ -20,7 +20,7 @@ Index: gemrb/GemRB.cfg.sample.in ##################################################### # GemRB Plugins Path [String] # -@@ -222,7 +222,7 @@ CachePath=@DEFAULT_CACHE_DIR@ +@@ -228,7 +228,7 @@ GemRBPath=. # GemRB from source directory on Linux. # ##################################################### @@ -29,7 +29,7 @@ Index: gemrb/GemRB.cfg.sample.in ##################################################### # Custom Font Path [String] # -@@ -266,7 +266,7 @@ CachePath=@DEFAULT_CACHE_DIR@ +@@ -272,7 +272,7 @@ GemRBPath=. ##################################################### #GemRBOverridePath=@DATA_DIR@ Index: patches/patch-gemrb_core_System_Logging_h =================================================================== RCS file: patches/patch-gemrb_core_System_Logging_h diff -N patches/patch-gemrb_core_System_Logging_h --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-gemrb_core_System_Logging_h 6 Sep 2020 10:04:31 -0000 @@ -0,0 +1,15 @@ +$OpenBSD$ + +stdarg.h needed for type va_list + +Index: gemrb/core/System/Logging.h +--- gemrb/core/System/Logging.h.orig ++++ gemrb/core/System/Logging.h +@@ -28,6 +28,7 @@ + + #include "exports.h" + #include "win32def.h" ++#include <stdarg.h> + + namespace GemRB { + Index: pkg/PLIST =================================================================== RCS file: /cvs/ports/games/gemrb/pkg/PLIST,v retrieving revision 1.7 diff -u -p -r1.7 PLIST --- pkg/PLIST 13 Dec 2019 08:24:27 -0000 1.7 +++ pkg/PLIST 6 Sep 2020 10:04:31 -0000 @@ -4,50 +4,50 @@ bin/extend2da.py lib/gemrb/ @lib lib/gemrb/libgemrb_core.so.${LIBgemrb_core_VERSION} lib/gemrb/plugins/ -lib/gemrb/plugins/2DAImporter.so -lib/gemrb/plugins/ACMReader.so -lib/gemrb/plugins/AREImporter.so -lib/gemrb/plugins/BAMImporter.so -lib/gemrb/plugins/BIFImporter.so -lib/gemrb/plugins/BMPImporter.so -lib/gemrb/plugins/BMPWriter.so -lib/gemrb/plugins/CHUImporter.so -lib/gemrb/plugins/CREImporter.so -lib/gemrb/plugins/DLGImporter.so -lib/gemrb/plugins/DirectoryImporter.so -lib/gemrb/plugins/EFFImporter.so -lib/gemrb/plugins/FXOpcodes.so -lib/gemrb/plugins/GAMImporter.so -lib/gemrb/plugins/GUIScript.so -lib/gemrb/plugins/IDSImporter.so -lib/gemrb/plugins/INIImporter.so -lib/gemrb/plugins/ITMImporter.so -lib/gemrb/plugins/IWDOpcodes.so -lib/gemrb/plugins/KEYImporter.so -lib/gemrb/plugins/MOSImporter.so -lib/gemrb/plugins/MUSImporter.so -lib/gemrb/plugins/MVEPlayer.so -lib/gemrb/plugins/NullSound.so -lib/gemrb/plugins/NullSource.so -lib/gemrb/plugins/OGGReader.so -lib/gemrb/plugins/OpenALAudio.so -lib/gemrb/plugins/PLTImporter.so -lib/gemrb/plugins/PNGImporter.so -lib/gemrb/plugins/PROImporter.so -lib/gemrb/plugins/PSTOpcodes.so -lib/gemrb/plugins/SAVImporter.so -lib/gemrb/plugins/SDLAudio.so -lib/gemrb/plugins/SDLVideo.so -lib/gemrb/plugins/SPLImporter.so -lib/gemrb/plugins/STOImporter.so -lib/gemrb/plugins/TISImporter.so -lib/gemrb/plugins/TLKImporter.so -lib/gemrb/plugins/TTFImporter.so -lib/gemrb/plugins/VLCPlayer.so -lib/gemrb/plugins/WAVReader.so -lib/gemrb/plugins/WEDImporter.so -lib/gemrb/plugins/WMPImporter.so -lib/gemrb/plugins/ZLibManager.so +@so lib/gemrb/plugins/2DAImporter.so +@so lib/gemrb/plugins/ACMReader.so +@so lib/gemrb/plugins/AREImporter.so +@so lib/gemrb/plugins/BAMImporter.so +@so lib/gemrb/plugins/BIFImporter.so +@so lib/gemrb/plugins/BMPImporter.so +@so lib/gemrb/plugins/BMPWriter.so +@so lib/gemrb/plugins/CHUImporter.so +@so lib/gemrb/plugins/CREImporter.so +@so lib/gemrb/plugins/DLGImporter.so +@so lib/gemrb/plugins/DirectoryImporter.so +@so lib/gemrb/plugins/EFFImporter.so +@so lib/gemrb/plugins/FXOpcodes.so +@so lib/gemrb/plugins/GAMImporter.so +@so lib/gemrb/plugins/GUIScript.so +@so lib/gemrb/plugins/IDSImporter.so +@so lib/gemrb/plugins/INIImporter.so +@so lib/gemrb/plugins/ITMImporter.so +@so lib/gemrb/plugins/IWDOpcodes.so +@so lib/gemrb/plugins/KEYImporter.so +@so lib/gemrb/plugins/MOSImporter.so +@so lib/gemrb/plugins/MUSImporter.so +@so lib/gemrb/plugins/MVEPlayer.so +@so lib/gemrb/plugins/NullSound.so +@so lib/gemrb/plugins/NullSource.so +@so lib/gemrb/plugins/OGGReader.so +@so lib/gemrb/plugins/OpenALAudio.so +@so lib/gemrb/plugins/PLTImporter.so +@so lib/gemrb/plugins/PNGImporter.so +@so lib/gemrb/plugins/PROImporter.so +@so lib/gemrb/plugins/PSTOpcodes.so +@so lib/gemrb/plugins/SAVImporter.so +@so lib/gemrb/plugins/SDLAudio.so +@so lib/gemrb/plugins/SDLVideo.so +@so lib/gemrb/plugins/SPLImporter.so +@so lib/gemrb/plugins/STOImporter.so +@so lib/gemrb/plugins/TISImporter.so +@so lib/gemrb/plugins/TLKImporter.so +@so lib/gemrb/plugins/TTFImporter.so +@so lib/gemrb/plugins/VLCPlayer.so +@so lib/gemrb/plugins/WAVReader.so +@so lib/gemrb/plugins/WEDImporter.so +@so lib/gemrb/plugins/WMPImporter.so +@so lib/gemrb/plugins/ZLibManager.so @man man/man6/gemrb.6 share/applications/gemrb.desktop share/doc/gemrb/ @@ -68,17 +68,6 @@ share/doc/gemrb/en/Engine/Projectile.txt share/doc/gemrb/en/Engine/Triggers.txt share/doc/gemrb/en/Engine/Usability.txt share/doc/gemrb/en/EngineChanges.txt -share/doc/gemrb/en/GUIScript/ -share/doc/gemrb/en/GUIScript/accessing_gui_controls.txt -share/doc/gemrb/en/GUIScript/bit_operation.txt -share/doc/gemrb/en/GUIScript/console.txt -share/doc/gemrb/en/GUIScript/controls.txt -share/doc/gemrb/en/GUIScript/data_exchange.txt -share/doc/gemrb/en/GUIScript/doc_template.txt -share/doc/gemrb/en/GUIScript/index.txt -share/doc/gemrb/en/GUIScript/reserved_functions.txt -share/doc/gemrb/en/GUIScript/start.txt -share/doc/gemrb/en/Release.md share/doc/gemrb/en/Tables/ share/doc/gemrb/en/Tables/HPBARB.txt share/doc/gemrb/en/Tables/ability.txt @@ -141,6 +130,7 @@ share/doc/gemrb/en/gemrb_ini.txt share/doc/pkg-readmes/${PKGSTEM} share/examples/gemrb/ @sample ${SYSCONFDIR}/gemrb/ +share/examples/gemrb/GemRB.cfg share/examples/gemrb/GemRB.cfg.noinstall.sample share/examples/gemrb/GemRB.cfg.sample @sample ${SYSCONFDIR}/gemrb/GemRB.cfg @@ -705,6 +695,7 @@ share/gemrb/unhardcoded/bg1/polish.ini share/gemrb/unhardcoded/bg1/proftype.2da share/gemrb/unhardcoded/bg1/qslots.2da share/gemrb/unhardcoded/bg1/races.2da +share/gemrb/unhardcoded/bg1/racethac.2da share/gemrb/unhardcoded/bg1/randitem.2da share/gemrb/unhardcoded/bg1/restmov.2da share/gemrb/unhardcoded/bg1/savegame.2da @@ -833,6 +824,7 @@ share/gemrb/unhardcoded/bg2/lightbnb.pro share/gemrb/unhardcoded/bg2/magesch.2da share/gemrb/unhardcoded/bg2/modal.2da share/gemrb/unhardcoded/bg2/monkbon.2da +share/gemrb/unhardcoded/bg2/moverate.2da share/gemrb/unhardcoded/bg2/overlay.2da share/gemrb/unhardcoded/bg2/pathfind.2da share/gemrb/unhardcoded/bg2/pdolls.2da @@ -841,6 +833,7 @@ share/gemrb/unhardcoded/bg2/proftype.2da share/gemrb/unhardcoded/bg2/qslot2.2da share/gemrb/unhardcoded/bg2/qslots.2da share/gemrb/unhardcoded/bg2/races.2da +share/gemrb/unhardcoded/bg2/racethac.2da share/gemrb/unhardcoded/bg2/randitem.2da share/gemrb/unhardcoded/bg2/rest.spl share/gemrb/unhardcoded/bg2/restmov.2da @@ -858,7 +851,9 @@ share/gemrb/unhardcoded/bg2/spfdeath.pro share/gemrb/unhardcoded/bg2/spfirewl.pro share/gemrb/unhardcoded/bg2/spgenhla.pro share/gemrb/unhardcoded/bg2/spholymt.pro +share/gemrb/unhardcoded/bg2/splbrdkn.2da share/gemrb/unhardcoded/bg2/splspec.2da +share/gemrb/unhardcoded/bg2/splwizkn.2da share/gemrb/unhardcoded/bg2/spscorch.pro share/gemrb/unhardcoded/bg2/spscoric.pro share/gemrb/unhardcoded/bg2/spshield.vvc @@ -892,6 +887,7 @@ share/gemrb/unhardcoded/how/alterap.pro share/gemrb/unhardcoded/how/alteras.pro share/gemrb/unhardcoded/how/alterh.pro share/gemrb/unhardcoded/how/altert.pro +share/gemrb/unhardcoded/how/amshelc.vvc share/gemrb/unhardcoded/how/area1np.pro share/gemrb/unhardcoded/how/area1p.pro share/gemrb/unhardcoded/how/area2.pro @@ -942,7 +938,6 @@ share/gemrb/unhardcoded/how/cfelemh.pro share/gemrb/unhardcoded/how/cfelemx.pro share/gemrb/unhardcoded/how/cfog.pro share/gemrb/unhardcoded/how/cgraceh.pro -share/gemrb/unhardcoded/how/cgtable.2da share/gemrb/unhardcoded/how/chant.pro share/gemrb/unhardcoded/how/chromorb.pro share/gemrb/unhardcoded/how/clabdrui.2da @@ -957,7 +952,6 @@ share/gemrb/unhardcoded/how/cloudkil.pro share/gemrb/unhardcoded/how/cloudks.pro share/gemrb/unhardcoded/how/clowncol.2da share/gemrb/unhardcoded/how/clskills.2da -share/gemrb/unhardcoded/how/clssplab.2da share/gemrb/unhardcoded/how/clwounh.pro share/gemrb/unhardcoded/how/cmdamah.pro share/gemrb/unhardcoded/how/cmwounh.pro @@ -966,6 +960,7 @@ share/gemrb/unhardcoded/how/cobonh1.pro share/gemrb/unhardcoded/how/cobonh2.pro share/gemrb/unhardcoded/how/cocold.pro share/gemrb/unhardcoded/how/cocoldh.pro +share/gemrb/unhardcoded/how/cofearc.vvc share/gemrb/unhardcoded/how/cofire.pro share/gemrb/unhardcoded/how/coldh.pro share/gemrb/unhardcoded/how/colrspry.pro @@ -1045,6 +1040,7 @@ share/gemrb/unhardcoded/how/gender.2da share/gemrb/unhardcoded/how/golcloud.pro share/gemrb/unhardcoded/how/grease.pro share/gemrb/unhardcoded/how/gshout.pro +share/gemrb/unhardcoded/how/gsolac1.vvc share/gemrb/unhardcoded/how/guibtact.2da share/gemrb/unhardcoded/how/guils.chu share/gemrb/unhardcoded/how/harmh.pro @@ -1084,6 +1080,7 @@ share/gemrb/unhardcoded/how/malison.pro share/gemrb/unhardcoded/how/mfmiss.pro share/gemrb/unhardcoded/how/mfmiss2.pro share/gemrb/unhardcoded/how/mfmissh.pro +share/gemrb/unhardcoded/how/mgoinvc.vvc share/gemrb/unhardcoded/how/mmagich.pro share/gemrb/unhardcoded/how/mmissile.pro share/gemrb/unhardcoded/how/moelda.pro @@ -1093,6 +1090,7 @@ share/gemrb/unhardcoded/how/mspore.pro share/gemrb/unhardcoded/how/msumm1.pro share/gemrb/unhardcoded/how/msumm1h.pro share/gemrb/unhardcoded/how/msumm1x.pro +share/gemrb/unhardcoded/how/msumm1x.vvc share/gemrb/unhardcoded/how/msumm2h.pro share/gemrb/unhardcoded/how/msumm3h.pro share/gemrb/unhardcoded/how/msumm4h.pro @@ -1105,11 +1103,13 @@ share/gemrb/unhardcoded/how/necroh.pro share/gemrb/unhardcoded/how/necrot.pro share/gemrb/unhardcoded/how/npoisoh.pro share/gemrb/unhardcoded/how/ofsphe.pro +share/gemrb/unhardcoded/how/orsphec.vvc share/gemrb/unhardcoded/how/overlay.2da share/gemrb/unhardcoded/how/paralh.pro share/gemrb/unhardcoded/how/pathfind.2da share/gemrb/unhardcoded/how/pdolls.2da share/gemrb/unhardcoded/how/pfire.pro +share/gemrb/unhardcoded/how/pfnmisc.vvc share/gemrb/unhardcoded/how/pictures.2da share/gemrb/unhardcoded/how/poisimm.spl share/gemrb/unhardcoded/how/poisonh.pro @@ -1130,6 +1130,7 @@ share/gemrb/unhardcoded/how/pwstun.pro share/gemrb/unhardcoded/how/pwstunh.pro share/gemrb/unhardcoded/how/qslots.2da share/gemrb/unhardcoded/how/races.2da +share/gemrb/unhardcoded/how/racethac.2da share/gemrb/unhardcoded/how/rad100.pro share/gemrb/unhardcoded/how/rad250.pro share/gemrb/unhardcoded/how/randitem.2da @@ -1148,6 +1149,7 @@ share/gemrb/unhardcoded/how/schargh.pro share/gemrb/unhardcoded/how/script.2da share/gemrb/unhardcoded/how/seater.pro share/gemrb/unhardcoded/how/seaterh.pro +share/gemrb/unhardcoded/how/seyesc1.vvc share/gemrb/unhardcoded/how/sgrowth.pro share/gemrb/unhardcoded/how/shout.pro share/gemrb/unhardcoded/how/shroud.pro @@ -1156,8 +1158,10 @@ share/gemrb/unhardcoded/how/skills.2da share/gemrb/unhardcoded/how/sleep.pro share/gemrb/unhardcoded/how/slivinh.pro share/gemrb/unhardcoded/how/slottype.2da +share/gemrb/unhardcoded/how/soflamc.vvc share/gemrb/unhardcoded/how/soflamh.pro share/gemrb/unhardcoded/how/sohope.pro +share/gemrb/unhardcoded/how/solatc1.vvc share/gemrb/unhardcoded/how/sooneh.pro share/gemrb/unhardcoded/how/sopain.pro share/gemrb/unhardcoded/how/sparbknp.pro @@ -1213,6 +1217,7 @@ share/gemrb/unhardcoded/how/spoisoh.pro share/gemrb/unhardcoded/how/spscorch.pro share/gemrb/unhardcoded/how/spscoric.pro share/gemrb/unhardcoded/how/spwrath.pro +share/gemrb/unhardcoded/how/sshellc.vvc share/gemrb/unhardcoded/how/ssorbh.pro share/gemrb/unhardcoded/how/ssswarm.pro share/gemrb/unhardcoded/how/sstone.pro @@ -1237,6 +1242,7 @@ share/gemrb/unhardcoded/how/uward.pro share/gemrb/unhardcoded/how/uwardh.pro share/gemrb/unhardcoded/how/vcremap.2da share/gemrb/unhardcoded/how/vspherh.pro +share/gemrb/unhardcoded/how/walksnd.2da share/gemrb/unhardcoded/how/wdeath1.pro share/gemrb/unhardcoded/how/wdeath2.pro share/gemrb/unhardcoded/how/weapprof.2da @@ -1268,6 +1274,7 @@ share/gemrb/unhardcoded/iwd/alterap.pro share/gemrb/unhardcoded/iwd/alteras.pro share/gemrb/unhardcoded/iwd/alterh.pro share/gemrb/unhardcoded/iwd/altert.pro +share/gemrb/unhardcoded/iwd/amshelc.vvc share/gemrb/unhardcoded/iwd/area1np.pro share/gemrb/unhardcoded/iwd/area1p.pro share/gemrb/unhardcoded/iwd/area2.pro @@ -1317,7 +1324,6 @@ share/gemrb/unhardcoded/iwd/cfelemh.pro share/gemrb/unhardcoded/iwd/cfelemx.pro share/gemrb/unhardcoded/iwd/cfog.pro share/gemrb/unhardcoded/iwd/cgraceh.pro -share/gemrb/unhardcoded/iwd/cgtable.2da share/gemrb/unhardcoded/iwd/chant.pro share/gemrb/unhardcoded/iwd/chromorb.pro share/gemrb/unhardcoded/iwd/clabdrui.2da @@ -1332,7 +1338,6 @@ share/gemrb/unhardcoded/iwd/cloudkil.pro share/gemrb/unhardcoded/iwd/cloudks.pro share/gemrb/unhardcoded/iwd/clowncol.2da share/gemrb/unhardcoded/iwd/clskills.2da -share/gemrb/unhardcoded/iwd/clssplab.2da share/gemrb/unhardcoded/iwd/clwounh.pro share/gemrb/unhardcoded/iwd/cmdamah.pro share/gemrb/unhardcoded/iwd/cmwounh.pro @@ -1341,6 +1346,7 @@ share/gemrb/unhardcoded/iwd/cobonh1.pro share/gemrb/unhardcoded/iwd/cobonh2.pro share/gemrb/unhardcoded/iwd/cocold.pro share/gemrb/unhardcoded/iwd/cocoldh.pro +share/gemrb/unhardcoded/iwd/cofearc.vvc share/gemrb/unhardcoded/iwd/cofire.pro share/gemrb/unhardcoded/iwd/coldh.pro share/gemrb/unhardcoded/iwd/colrspry.pro @@ -1418,6 +1424,7 @@ share/gemrb/unhardcoded/iwd/gender.2da share/gemrb/unhardcoded/iwd/golcloud.pro share/gemrb/unhardcoded/iwd/grease.pro share/gemrb/unhardcoded/iwd/gshout.pro +share/gemrb/unhardcoded/iwd/gsolac1.vvc share/gemrb/unhardcoded/iwd/guibtact.2da share/gemrb/unhardcoded/iwd/guils.chu share/gemrb/unhardcoded/iwd/harmh.pro @@ -1456,6 +1463,7 @@ share/gemrb/unhardcoded/iwd/malison.pro share/gemrb/unhardcoded/iwd/mfmiss.pro share/gemrb/unhardcoded/iwd/mfmiss2.pro share/gemrb/unhardcoded/iwd/mfmissh.pro +share/gemrb/unhardcoded/iwd/mgoinvc.vvc share/gemrb/unhardcoded/iwd/mmagich.pro share/gemrb/unhardcoded/iwd/mmissile.pro share/gemrb/unhardcoded/iwd/moelda.pro @@ -1466,6 +1474,7 @@ share/gemrb/unhardcoded/iwd/mspore.pro share/gemrb/unhardcoded/iwd/msumm1.pro share/gemrb/unhardcoded/iwd/msumm1h.pro share/gemrb/unhardcoded/iwd/msumm1x.pro +share/gemrb/unhardcoded/iwd/msumm1x.vvc share/gemrb/unhardcoded/iwd/msumm2h.pro share/gemrb/unhardcoded/iwd/msumm3h.pro share/gemrb/unhardcoded/iwd/msumm4h.pro @@ -1478,11 +1487,13 @@ share/gemrb/unhardcoded/iwd/necroh.pro share/gemrb/unhardcoded/iwd/necrot.pro share/gemrb/unhardcoded/iwd/npoisoh.pro share/gemrb/unhardcoded/iwd/ofsphe.pro +share/gemrb/unhardcoded/iwd/orsphec.vvc share/gemrb/unhardcoded/iwd/overlay.2da share/gemrb/unhardcoded/iwd/paralh.pro share/gemrb/unhardcoded/iwd/pathfind.2da share/gemrb/unhardcoded/iwd/pdolls.2da share/gemrb/unhardcoded/iwd/pfire.pro +share/gemrb/unhardcoded/iwd/pfnmisc.vvc share/gemrb/unhardcoded/iwd/pictures.2da share/gemrb/unhardcoded/iwd/poisonh.pro share/gemrb/unhardcoded/iwd/pomab.2da @@ -1502,6 +1513,7 @@ share/gemrb/unhardcoded/iwd/pwstun.pro share/gemrb/unhardcoded/iwd/pwstunh.pro share/gemrb/unhardcoded/iwd/qslots.2da share/gemrb/unhardcoded/iwd/races.2da +share/gemrb/unhardcoded/iwd/racethac.2da share/gemrb/unhardcoded/iwd/rad100.pro share/gemrb/unhardcoded/iwd/rad250.pro share/gemrb/unhardcoded/iwd/randitem.2da @@ -1520,6 +1532,7 @@ share/gemrb/unhardcoded/iwd/schargh.pro share/gemrb/unhardcoded/iwd/script.2da share/gemrb/unhardcoded/iwd/seater.pro share/gemrb/unhardcoded/iwd/seaterh.pro +share/gemrb/unhardcoded/iwd/seyesc1.vvc share/gemrb/unhardcoded/iwd/sgrowth.pro share/gemrb/unhardcoded/iwd/shout.pro share/gemrb/unhardcoded/iwd/shroud.pro @@ -1528,8 +1541,10 @@ share/gemrb/unhardcoded/iwd/skills.2da share/gemrb/unhardcoded/iwd/sleep.pro share/gemrb/unhardcoded/iwd/slivinh.pro share/gemrb/unhardcoded/iwd/slottype.2da +share/gemrb/unhardcoded/iwd/soflamc.vvc share/gemrb/unhardcoded/iwd/soflamh.pro share/gemrb/unhardcoded/iwd/sohope.pro +share/gemrb/unhardcoded/iwd/solatc1.vvc share/gemrb/unhardcoded/iwd/sooneh.pro share/gemrb/unhardcoded/iwd/sopain.pro share/gemrb/unhardcoded/iwd/sparbknp.pro @@ -1585,6 +1600,7 @@ share/gemrb/unhardcoded/iwd/spoisoh.pro share/gemrb/unhardcoded/iwd/spscorch.pro share/gemrb/unhardcoded/iwd/spscoric.pro share/gemrb/unhardcoded/iwd/spwrath.pro +share/gemrb/unhardcoded/iwd/sshellc.vvc share/gemrb/unhardcoded/iwd/ssorbh.pro share/gemrb/unhardcoded/iwd/ssswarm.pro share/gemrb/unhardcoded/iwd/sstone.pro @@ -1608,6 +1624,7 @@ share/gemrb/unhardcoded/iwd/uward.pro share/gemrb/unhardcoded/iwd/uwardh.pro share/gemrb/unhardcoded/iwd/vcremap.2da share/gemrb/unhardcoded/iwd/vspherh.pro +share/gemrb/unhardcoded/iwd/walksnd.2da share/gemrb/unhardcoded/iwd/wdeath1.pro share/gemrb/unhardcoded/iwd/wdeath2.pro share/gemrb/unhardcoded/iwd/weapprof.2da @@ -1728,7 +1745,6 @@ share/gemrb/unhardcoded/iwd2/cfelemh.pro share/gemrb/unhardcoded/iwd2/cfelemx.pro share/gemrb/unhardcoded/iwd2/cfog.pro share/gemrb/unhardcoded/iwd2/cgraceh.pro -share/gemrb/unhardcoded/iwd2/cgtable.2da share/gemrb/unhardcoded/iwd2/chant.pro share/gemrb/unhardcoded/iwd2/chromorb.pro share/gemrb/unhardcoded/iwd2/classes.2da @@ -2142,7 +2158,6 @@ share/gemrb/unhardcoded/pst/classes.2da share/gemrb/unhardcoded/pst/cloud.pro share/gemrb/unhardcoded/pst/cloudkil.pro share/gemrb/unhardcoded/pst/clskills.2da -share/gemrb/unhardcoded/pst/clssplab.2da share/gemrb/unhardcoded/pst/cocold.pro share/gemrb/unhardcoded/pst/colrspry.pro share/gemrb/unhardcoded/pst/comment.2da @@ -2280,6 +2295,7 @@ share/gemrb/unhardcoded/pst/races.2da share/gemrb/unhardcoded/pst/randitem.2da share/gemrb/unhardcoded/pst/rdead.pro share/gemrb/unhardcoded/pst/rdead.spl +share/gemrb/unhardcoded/pst/restmov.2da share/gemrb/unhardcoded/pst/rock.pro share/gemrb/unhardcoded/pst/rotorm.pro share/gemrb/unhardcoded/pst/rune.2da @@ -2393,7 +2409,9 @@ share/gemrb/unhardcoded/shared/avprefg.2 share/gemrb/unhardcoded/shared/avprefix.2da share/gemrb/unhardcoded/shared/axeflm.pro share/gemrb/unhardcoded/shared/bardsong.spl +share/gemrb/unhardcoded/shared/cgtable.2da share/gemrb/unhardcoded/shared/chinese.ini +share/gemrb/unhardcoded/shared/clssplab.2da share/gemrb/unhardcoded/shared/comment.2da share/gemrb/unhardcoded/shared/containr.2da share/gemrb/unhardcoded/shared/cow.pro @@ -2410,6 +2428,7 @@ share/gemrb/unhardcoded/shared/findtrap. share/gemrb/unhardcoded/shared/flmstrk.pro share/gemrb/unhardcoded/shared/gemact.ids share/gemrb/unhardcoded/shared/gemtrig.ids +share/gemrb/unhardcoded/shared/german.ini share/gemrb/unhardcoded/shared/invtrav.pro share/gemrb/unhardcoded/shared/itemspec.2da share/gemrb/unhardcoded/shared/japanese.ini @@ -2418,6 +2437,7 @@ share/gemrb/unhardcoded/shared/korean.in share/gemrb/unhardcoded/shared/modal.2da share/gemrb/unhardcoded/shared/numwslot.2da share/gemrb/unhardcoded/shared/panic.spl +share/gemrb/unhardcoded/shared/polish.ini share/gemrb/unhardcoded/shared/polystat.2da share/gemrb/unhardcoded/shared/redholy.pro share/gemrb/unhardcoded/shared/sanctuc.vvc @@ -2459,7 +2479,9 @@ share/gemrb/unhardcoded/shared/spboom1.p share/gemrb/unhardcoded/shared/spboom2.pro share/gemrb/unhardcoded/shared/spboom3.pro share/gemrb/unhardcoded/shared/spdimdr.pro +share/gemrb/unhardcoded/shared/splbrdkn.2da share/gemrb/unhardcoded/shared/spldisp.2da +share/gemrb/unhardcoded/shared/splwizkn.2da share/gemrb/unhardcoded/shared/spmagmis.pro share/gemrb/unhardcoded/shared/spsmkjet.pro share/gemrb/unhardcoded/shared/spsmold.pro
