From owner-svn-ports-head@FreeBSD.ORG Wed May 13 18:19:19 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D66E6140; Wed, 13 May 2015 18:19:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C38AE11C9; Wed, 13 May 2015 18:19:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4DIJJue027581; Wed, 13 May 2015 18:19:19 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4DIJHRn027571; Wed, 13 May 2015 18:19:17 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201505131819.t4DIJHRn027571@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 13 May 2015 18:19:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386235 - in head/games/wargus: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 May 2015 18:19:19 -0000 Author: amdmi3 Date: Wed May 13 18:19:17 2015 New Revision: 386235 URL: https://svnweb.freebsd.org/changeset/ports/386235 Log: - Update to 2.3.0 Added: head/games/wargus/files/patch-rip__music_unix.cpp (contents, props changed) head/games/wargus/files/patch-xmi2mid.cpp (contents, props changed) Deleted: head/games/wargus/files/patch-wargus.c head/games/wargus/files/patch-wartool.c head/games/wargus/files/wargus.in Modified: head/games/wargus/Makefile head/games/wargus/distinfo head/games/wargus/files/pkg-message.in head/games/wargus/pkg-descr head/games/wargus/pkg-plist Modified: head/games/wargus/Makefile ============================================================================== --- head/games/wargus/Makefile Wed May 13 18:19:09 2015 (r386234) +++ head/games/wargus/Makefile Wed May 13 18:19:17 2015 (r386235) @@ -2,12 +2,10 @@ # $FreeBSD$ PORTNAME= wargus -PORTVERSION= 2.2.5.5 -PORTREVISION= 3 +PORTVERSION= 2.3.0 CATEGORIES= games -MASTER_SITES= http://launchpadlibrarian.net/59493162/ -DISTNAME= ${PORTNAME}_${PORTVERSION} -EXTRACT_SUFX= .orig.tar.gz +MASTER_SITES= http://launchpadlibrarian.net/200671642/ +DISTNAME= ${PORTNAME}_${PORTVERSION}.orig MAINTAINER= amdmi3@FreeBSD.org COMMENT= Warcraft 2 mod that allows you to play Warcraft 2 with Stratagus @@ -15,29 +13,32 @@ COMMENT= Warcraft 2 mod that allows you LICENSE= GPLv2 # or later LICENSE_FILE= ${WRKSRC}/COPYING +RUN_DEPENDS= stratagus:${PORTSDIR}/games/stratagus \ + ffmpeg2theora:${PORTSDIR}/multimedia/ffmpeg2theora \ + cdparanoia:${PORTSDIR}/audio/cdparanoia +BUILD_DEPENDS= stratagus:${PORTSDIR}/games/stratagus LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png -RUN_DEPENDS= stratagus:${PORTSDIR}/games/stratagus -NOT_FOR_ARCHS= sparc64 -USES= pathfix gmake pkgconfig +USES= cmake pkgconfig +CMAKE_ARGS= -DGAMEDIR:STRING="bin" \ + -DSHAREDIR:STRING="${DATADIR_REL}" +USE_X11= x11 USE_GNOME= gtk20 -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -SUB_FILES= ${PORTNAME} pkg-message +SUB_FILES= pkg-message -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +PORTDOCS= * -post-patch: - @${REINPLACE_CMD} \ - -e '/^CFLAGS/s|-O2|${CPPFLAGS} ${CFLAGS}|' \ - -e '/^CXXFLAGS/s|$$| ${CXXFLAGS}|' \ - -e '/^LDFLAGS/s|$$| ${LDFLAGS}|' \ - -e '/^GTKFLAGS/s/gtk+-2.0/& x11/' \ - ${WRKSRC}/Makefile -do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - cd ${WRKSRC} && ${COPYTREE_SHARE} "campaigns contrib maps scripts" ${STAGEDIR}${DATADIR} - ${INSTALL_PROGRAM} ${WRKSRC}/wartool ${STAGEDIR}${DATADIR} - ${INSTALL_SCRIPT} ${WRKSRC}/build.sh ${STAGEDIR}${DATADIR} +OPTIONS_DEFINE= DOCS -.include +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000 +BROKEN= does not build +.endif + +post-install: + cd ${WRKSRC}/doc && ${INSTALL_MAN} *.6 ${STAGEDIR}${MAN6PREFIX}/man/man6/ + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + +.include Modified: head/games/wargus/distinfo ============================================================================== --- head/games/wargus/distinfo Wed May 13 18:19:09 2015 (r386234) +++ head/games/wargus/distinfo Wed May 13 18:19:17 2015 (r386235) @@ -1,2 +1,2 @@ -SHA256 (wargus_2.2.5.5.orig.tar.gz) = 561d0ac5e88abcd5663fca1f7793ee20739aa0d641420bf0a6b7424ebd4ab14f -SIZE (wargus_2.2.5.5.orig.tar.gz) = 3605444 +SHA256 (wargus_2.3.0.orig.tar.gz) = 9b8def814a8c7135653ae95bb1ff836627d39d5f8242a436f486c59701eaeee7 +SIZE (wargus_2.3.0.orig.tar.gz) = 45006918 Added: head/games/wargus/files/patch-rip__music_unix.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/wargus/files/patch-rip__music_unix.cpp Wed May 13 18:19:17 2015 (r386235) @@ -0,0 +1,45 @@ +--- rip_music_unix.cpp.orig 2015-03-19 18:36:34 UTC ++++ rip_music_unix.cpp +@@ -39,7 +39,12 @@ + #include + #include + +-#include ++#if defined(__linux__) ++# include ++#elif defined(__FreeBSD__) ++# include ++# include ++#endif + + #include "rip_music.h" + +@@ -140,6 +145,7 @@ static char * find_mnt_dir(const char * + + static char * find_dev(const char * mnt_dir) { + ++#if defined(__linux__) + struct mntent * mnt; + char * dev = NULL; + FILE * file; +@@ -167,6 +173,20 @@ static char * find_dev(const char * mnt_ + endmntent(file); + + return dev; ++#elif defined(__FreeBSD__) ++ struct statfs sfs; ++ ++ if ( statfs(mnt_dir, &sfs) != 0 ) { ++ ++ fprintf(stderr, "Error: Cannot get mounted device: %s\n", strerror(errno)); ++ return NULL; ++ ++ } ++ ++ return strdup(sfs.f_mntfromname); ++#else ++ return NULL; ++#endif + + } + Added: head/games/wargus/files/patch-xmi2mid.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/wargus/files/patch-xmi2mid.cpp Wed May 13 18:19:17 2015 (r386235) @@ -0,0 +1,10 @@ +--- xmi2mid.cpp.orig 2015-03-19 18:36:34 UTC ++++ xmi2mid.cpp +@@ -27,6 +27,7 @@ SOFTWARE. + #include + #include + #include ++#include + + #include + Modified: head/games/wargus/files/pkg-message.in ============================================================================== --- head/games/wargus/files/pkg-message.in Wed May 13 18:19:09 2015 (r386234) +++ head/games/wargus/files/pkg-message.in Wed May 13 18:19:17 2015 (r386235) @@ -1,6 +1,6 @@ ------------------------------------------------------------------------------ -The Wargus tool has been installed to "%%DATADIR%%". +The Wargus tool has been installed to "%%PREFIX%%/bin/wartool". You can now use this tool to extract Warcraft 2 data for use with the Stratagus engine from the following CDs: @@ -13,10 +13,14 @@ Stratagus engine from the following CDs: * German Expansion * Spanish Original -If you have one of the above CDs mounted on /cdrom, 'su' to root, change to -the "%%DATADIR%%" directory and try executing: +If you have one of the above CDs mounted on /mnt, 'su' to root, and try +executing: -$ ./build.sh -p /cdrom +# wartool /mnt %%DATADIR%% + +or + +# wartool /mnt/data %%DATADIR%% After your Warcraft 2 data has been successfully extracted, run 'wargus' as the user you intend to play the game with. Modified: head/games/wargus/pkg-descr ============================================================================== --- head/games/wargus/pkg-descr Wed May 13 18:19:09 2015 (r386234) +++ head/games/wargus/pkg-descr Wed May 13 18:19:17 2015 (r386235) @@ -10,4 +10,4 @@ Since Wargus uses a different engine, no as they did in the original game. If you want an absolutely unchanged Warcraft 2 experience, you will still have to play the original. -WWW: http://wargus.sourceforge.net +WWW: http://wargus.sourceforge.net/ Modified: head/games/wargus/pkg-plist ============================================================================== --- head/games/wargus/pkg-plist Wed May 13 18:19:09 2015 (r386234) +++ head/games/wargus/pkg-plist Wed May 13 18:19:17 2015 (r386235) @@ -1,5 +1,11 @@ +bin/pudconvert bin/wargus -%%DATADIR%%/build.sh +bin/wartool +man/man6/pudconvert.6.gz +man/man6/wargus.6.gz +man/man6/wartool.6.gz +share/applications/wargus.desktop +share/pixmaps/wargus.png %%DATADIR%%/campaigns/human-exp/levelx01h_c.sms %%DATADIR%%/campaigns/human-exp/levelx02h_c.sms %%DATADIR%%/campaigns/human-exp/levelx03h_c.sms @@ -12,6 +18,59 @@ bin/wargus %%DATADIR%%/campaigns/human-exp/levelx10h_c.sms %%DATADIR%%/campaigns/human-exp/levelx11h_c.sms %%DATADIR%%/campaigns/human-exp/levelx12h_c.sms +%%DATADIR%%/campaigns/human-ftm/human-ftm.lua +%%DATADIR%%/campaigns/human-ftm/level01h.smp +%%DATADIR%%/campaigns/human-ftm/level01h.sms +%%DATADIR%%/campaigns/human-ftm/level01h.txt +%%DATADIR%%/campaigns/human-ftm/level01h_c.sms +%%DATADIR%%/campaigns/human-ftm/level01h_c2.sms +%%DATADIR%%/campaigns/human-ftm/level02h.smp +%%DATADIR%%/campaigns/human-ftm/level02h.sms +%%DATADIR%%/campaigns/human-ftm/level02h.txt +%%DATADIR%%/campaigns/human-ftm/level02h_c.sms +%%DATADIR%%/campaigns/human-ftm/level02h_c2.sms +%%DATADIR%%/campaigns/human-ftm/tutorial.txt +%%DATADIR%%/campaigns/human-tales/human-tales.lua +%%DATADIR%%/campaigns/human-tales/interface/Act I - Coast of Blardneg.png.txt +%%DATADIR%%/campaigns/human-tales/interface/Act_I_-_Coast_of_Blardneg.png +%%DATADIR%%/campaigns/human-tales/interface/introscreen1.png +%%DATADIR%%/campaigns/human-tales/interface/introscreen1.png.txt +%%DATADIR%%/campaigns/human-tales/level01h.png +%%DATADIR%%/campaigns/human-tales/level01h.smp +%%DATADIR%%/campaigns/human-tales/level01h.sms +%%DATADIR%%/campaigns/human-tales/level01h.txt +%%DATADIR%%/campaigns/human-tales/level01h_c.sms +%%DATADIR%%/campaigns/human-tales/level01h_c2.sms +%%DATADIR%%/campaigns/human-tales/level02a.png +%%DATADIR%%/campaigns/human-tales/level02h.smp +%%DATADIR%%/campaigns/human-tales/level02h.sms +%%DATADIR%%/campaigns/human-tales/level02h.txt +%%DATADIR%%/campaigns/human-tales/level02h_c.sms +%%DATADIR%%/campaigns/human-tales/level02h_c2.sms +%%DATADIR%%/campaigns/human-tales/level03h.png +%%DATADIR%%/campaigns/human-tales/level03h.smp +%%DATADIR%%/campaigns/human-tales/level03h.sms +%%DATADIR%%/campaigns/human-tales/level03h.txt +%%DATADIR%%/campaigns/human-tales/level03h_ai.lua +%%DATADIR%%/campaigns/human-tales/level03h_c.sms +%%DATADIR%%/campaigns/human-tales/level03h_c2.sms +%%DATADIR%%/campaigns/human-tales/level04h.png +%%DATADIR%%/campaigns/human-tales/level04h.smp +%%DATADIR%%/campaigns/human-tales/level04h.sms +%%DATADIR%%/campaigns/human-tales/level04h.txt +%%DATADIR%%/campaigns/human-tales/level04h_ai.lua +%%DATADIR%%/campaigns/human-tales/level04h_c.sms +%%DATADIR%%/campaigns/human-tales/level04h_c2.sms +%%DATADIR%%/campaigns/human-tales/level05h.smp +%%DATADIR%%/campaigns/human-tales/level05h.sms +%%DATADIR%%/campaigns/human-tales/level05h_ai.lua +%%DATADIR%%/campaigns/human-tales/level05h_c.sms +%%DATADIR%%/campaigns/human-tales/level05h_c2.sms +%%DATADIR%%/campaigns/human-tales/level07h.smp +%%DATADIR%%/campaigns/human-tales/level07h.sms +%%DATADIR%%/campaigns/human-tales/level07h_ai.lua +%%DATADIR%%/campaigns/human-tales/level07h_c.sms +%%DATADIR%%/campaigns/human-tales/level07h_c2.sms %%DATADIR%%/campaigns/human/level01h_c.sms %%DATADIR%%/campaigns/human/level02h_c.sms %%DATADIR%%/campaigns/human/level03h_c.sms @@ -26,6 +85,13 @@ bin/wargus %%DATADIR%%/campaigns/human/level12h_c.sms %%DATADIR%%/campaigns/human/level13h_c.sms %%DATADIR%%/campaigns/human/level14h_c.sms +%%DATADIR%%/campaigns/list/Beyond the Dark Portal (Alliance) +%%DATADIR%%/campaigns/list/Beyond the Dark Portal (Horde) +%%DATADIR%%/campaigns/list/For the Motherland (Alliance) +%%DATADIR%%/campaigns/list/For the Motherland (Horde) +%%DATADIR%%/campaigns/list/Frontier Force (Alliance) +%%DATADIR%%/campaigns/list/Tides of Darkness (Alliance) +%%DATADIR%%/campaigns/list/Tides of Darkness (Horde) %%DATADIR%%/campaigns/orc-exp/levelx01o_c.sms %%DATADIR%%/campaigns/orc-exp/levelx02o_c.sms %%DATADIR%%/campaigns/orc-exp/levelx03o_c.sms @@ -38,6 +104,13 @@ bin/wargus %%DATADIR%%/campaigns/orc-exp/levelx10o_c.sms %%DATADIR%%/campaigns/orc-exp/levelx11o_c.sms %%DATADIR%%/campaigns/orc-exp/levelx12o_c.sms +%%DATADIR%%/campaigns/orc-ftm/level01o-intro1.wav.gz +%%DATADIR%%/campaigns/orc-ftm/level01o.png +%%DATADIR%%/campaigns/orc-ftm/level01o.smp +%%DATADIR%%/campaigns/orc-ftm/level01o.sms +%%DATADIR%%/campaigns/orc-ftm/level01o_c.sms +%%DATADIR%%/campaigns/orc-ftm/level01o_c2.sms +%%DATADIR%%/campaigns/orc-ftm/orc-ftm.lua %%DATADIR%%/campaigns/orc/level01o_c.sms %%DATADIR%%/campaigns/orc/level02o_c.sms %%DATADIR%%/campaigns/orc/level03o_c.sms @@ -52,224 +125,1041 @@ bin/wargus %%DATADIR%%/campaigns/orc/level12o_c.sms %%DATADIR%%/campaigns/orc/level13o_c.sms %%DATADIR%%/campaigns/orc/level14o_c.sms -%%DATADIR%%/contrib/cross.png -%%DATADIR%%/contrib/food.png -%%DATADIR%%/contrib/health.png -%%DATADIR%%/contrib/health2.png -%%DATADIR%%/contrib/mana.png -%%DATADIR%%/contrib/mana2.png -%%DATADIR%%/contrib/ore,stone,coal.png -%%DATADIR%%/contrib/red_cross.png -%%DATADIR%%/contrib/score.png -%%DATADIR%%/contrib/toccata.mod.gz -%%DATADIR%%/contrib/wargus.ico -%%DATADIR%%/contrib/wargus.png -%%DATADIR%%/maps/multi/(2)blick-nach-oben.smp.gz -%%DATADIR%%/maps/multi/(2)blick-nach-oben.sms.gz -%%DATADIR%%/maps/multi/(2)blick-nach-oben.txt -%%DATADIR%%/maps/multi/(2)east-west-conflict.pud -%%DATADIR%%/maps/multi/(2)east-west-conflict.smp.gz -%%DATADIR%%/maps/multi/(2)east-west-conflict.sms.gz -%%DATADIR%%/maps/multi/(2)east-west-conflict.txt -%%DATADIR%%/maps/multi/(2)king-in-stone.pud -%%DATADIR%%/maps/multi/(2)king-in-stone.smp.gz -%%DATADIR%%/maps/multi/(2)king-in-stone.sms.gz -%%DATADIR%%/maps/multi/(2)no-mans-land.pud -%%DATADIR%%/maps/multi/(2)no-mans-land.smp.gz -%%DATADIR%%/maps/multi/(2)no-mans-land.sms.gz -%%DATADIR%%/maps/multi/(2)nord-sued-konflikt.smp.gz -%%DATADIR%%/maps/multi/(2)nord-sued-konflikt.sms.gz -%%DATADIR%%/maps/multi/(2)nord-sued-konflikt.txt -%%DATADIR%%/maps/multi/(2)nordische-seenplatte.smp.gz -%%DATADIR%%/maps/multi/(2)nordische-seenplatte.sms.gz -%%DATADIR%%/maps/multi/(2)nordische-seenplatte.txt -%%DATADIR%%/maps/multi/(2)oily-wars.smp.gz -%%DATADIR%%/maps/multi/(2)oily-wars.sms.gz -%%DATADIR%%/maps/multi/(2)the-right-strategy.pud -%%DATADIR%%/maps/multi/(2)the-right-strategy.smp.gz -%%DATADIR%%/maps/multi/(2)the-right-strategy.sms.gz -%%DATADIR%%/maps/multi/(2)zeit-fuer-entscheidungen.smp.gz -%%DATADIR%%/maps/multi/(2)zeit-fuer-entscheidungen.sms.gz -%%DATADIR%%/maps/multi/(2)zeit-fuer-entscheidungen.txt -%%DATADIR%%/maps/multi/(3)around-the-sea.pud -%%DATADIR%%/maps/multi/(3)calculate.pud -%%DATADIR%%/maps/multi/(3)calculate.smp.gz -%%DATADIR%%/maps/multi/(3)calculate.sms.gz -%%DATADIR%%/maps/multi/(3)calculate.txt -%%DATADIR%%/maps/multi/(3)frosty-rescue.smp.gz -%%DATADIR%%/maps/multi/(3)frosty-rescue.sms.gz -%%DATADIR%%/maps/multi/(3)frosty-rescue.txt -%%DATADIR%%/maps/multi/(3)little-ambush.pud.gz -%%DATADIR%%/maps/multi/(3)little-ambush.txt -%%DATADIR%%/maps/multi/(3)man-on-the-moon.pud -%%DATADIR%%/maps/multi/(3)man-on-the-moon.smp.gz -%%DATADIR%%/maps/multi/(3)man-on-the-moon.sms.gz -%%DATADIR%%/maps/multi/(3)no-mans-land.smp.gz -%%DATADIR%%/maps/multi/(3)no-mans-land.sms.gz -%%DATADIR%%/maps/multi/(3)no-mans-land.txt -%%DATADIR%%/maps/multi/(3)one-two-three.smp.gz -%%DATADIR%%/maps/multi/(3)one-two-three.sms.gz -%%DATADIR%%/maps/multi/(3)one-two-three.txt -%%DATADIR%%/maps/multi/(3)sea-wars.smp.gz -%%DATADIR%%/maps/multi/(3)sea-wars.sms.gz -%%DATADIR%%/maps/multi/(3)three-frontiers.smp.gz -%%DATADIR%%/maps/multi/(3)three-frontiers.sms.gz -%%DATADIR%%/maps/multi/(4)4-corners.pud.gz -%%DATADIR%%/maps/multi/(4)4-corners.txt -%%DATADIR%%/maps/multi/(4)4-isl.pud.gz -%%DATADIR%%/maps/multi/(4)4-isl.txt -%%DATADIR%%/maps/multi/(4)arctic-goldrush.pud -%%DATADIR%%/maps/multi/(4)arctic-goldrush.smp.gz -%%DATADIR%%/maps/multi/(4)arctic-goldrush.sms.gz -%%DATADIR%%/maps/multi/(4)central-park.smp.gz -%%DATADIR%%/maps/multi/(4)central-park.sms.gz -%%DATADIR%%/maps/multi/(4)central-park.txt -%%DATADIR%%/maps/multi/(4)chop-the-trees.pud.gz -%%DATADIR%%/maps/multi/(4)chop-the-trees.txt -%%DATADIR%%/maps/multi/(4)circle-hill.pud -%%DATADIR%%/maps/multi/(4)circle-hill.smp.gz -%%DATADIR%%/maps/multi/(4)circle-hill.sms.gz -%%DATADIR%%/maps/multi/(4)criss_cross.pud.gz -%%DATADIR%%/maps/multi/(4)criss_cross2.pud.gz -%%DATADIR%%/maps/multi/(4)criss_cross2.txt -%%DATADIR%%/maps/multi/(4)east-lakes.pud -%%DATADIR%%/maps/multi/(4)east-lakes.txt -%%DATADIR%%/maps/multi/(4)green-hell.smp.gz -%%DATADIR%%/maps/multi/(4)green-hell.sms.gz -%%DATADIR%%/maps/multi/(4)green-hell.txt -%%DATADIR%%/maps/multi/(4)holy-forest.pud -%%DATADIR%%/maps/multi/(4)holy-forest.smp.gz -%%DATADIR%%/maps/multi/(4)holy-forest.sms.gz -%%DATADIR%%/maps/multi/(4)lake-in-the-middle.smp.gz -%%DATADIR%%/maps/multi/(4)lake-in-the-middle.sms.gz -%%DATADIR%%/maps/multi/(4)lake-in-the-middle.txt -%%DATADIR%%/maps/multi/(4)little-island.smp.gz -%%DATADIR%%/maps/multi/(4)little-island.sms.gz -%%DATADIR%%/maps/multi/(4)little-island.txt -%%DATADIR%%/maps/multi/(4)look-around.smp.gz -%%DATADIR%%/maps/multi/(4)look-around.sms.gz -%%DATADIR%%/maps/multi/(4)pathfinders.pud -%%DATADIR%%/maps/multi/(4)pathfinders.smp.gz -%%DATADIR%%/maps/multi/(4)pathfinders.sms.gz -%%DATADIR%%/maps/multi/(4)scandinavia.pud.gz -%%DATADIR%%/maps/multi/(4)scandinavia.txt -%%DATADIR%%/maps/multi/(4)smile.pud -%%DATADIR%%/maps/multi/(4)smile.smp.gz -%%DATADIR%%/maps/multi/(4)smile.sms.gz -%%DATADIR%%/maps/multi/(4)smile.txt -%%DATADIR%%/maps/multi/(4)think-like-your-enemy.pud -%%DATADIR%%/maps/multi/(4)think-like-your-enemy.txt -%%DATADIR%%/maps/multi/(4)tournament-continent.pud -%%DATADIR%%/maps/multi/(4)tournament-continent.smp.gz -%%DATADIR%%/maps/multi/(4)tournament-continent.sms.gz -%%DATADIR%%/maps/multi/(4)tournament-forest.pud -%%DATADIR%%/maps/multi/(4)tournament-forest.smp.gz -%%DATADIR%%/maps/multi/(4)tournament-forest.sms.gz -%%DATADIR%%/maps/multi/(4)tournament-islands.pud -%%DATADIR%%/maps/multi/(4)tournament-islands.smp.gz -%%DATADIR%%/maps/multi/(4)tournament-islands.sms.gz -%%DATADIR%%/maps/multi/(4)what-can-you-do.pud -%%DATADIR%%/maps/multi/(4)what-can-you-do.smp.gz -%%DATADIR%%/maps/multi/(4)what-can-you-do.sms.gz -%%DATADIR%%/maps/multi/(4)what-can-you-do.txt -%%DATADIR%%/maps/multi/(4)woody-islands.pud -%%DATADIR%%/maps/multi/(4)woody-islands.smp.gz -%%DATADIR%%/maps/multi/(4)woody-islands.sms.gz -%%DATADIR%%/maps/multi/(4)you-have-to-look-around.pud -%%DATADIR%%/maps/multi/(4)you-have-to-look-around.smp.gz -%%DATADIR%%/maps/multi/(4)you-have-to-look-around.sms.gz -%%DATADIR%%/maps/multi/(4)you-have-to-look-around.txt -%%DATADIR%%/maps/multi/(5)diablospiral.pud.gz -%%DATADIR%%/maps/multi/(5)diablospiral.txt -%%DATADIR%%/maps/multi/(5)many-ways-to-beat.pud -%%DATADIR%%/maps/multi/(5)many-ways-to-beat.smp.gz -%%DATADIR%%/maps/multi/(5)many-ways-to-beat.sms.gz -%%DATADIR%%/maps/multi/(5)many-ways-to-beat.txt -%%DATADIR%%/maps/multi/(5)speed-is-the-key.pud -%%DATADIR%%/maps/multi/(5)speed-is-the-key.smp.gz -%%DATADIR%%/maps/multi/(5)speed-is-the-key.sms.gz -%%DATADIR%%/maps/multi/(5)the-pentagon.pud -%%DATADIR%%/maps/multi/(5)the-pentagon.smp.gz -%%DATADIR%%/maps/multi/(5)the-pentagon.sms.gz -%%DATADIR%%/maps/multi/(5)the-pentagon.txt -%%DATADIR%%/maps/multi/(5)venedig.pud -%%DATADIR%%/maps/multi/(5)venedig.smp.gz -%%DATADIR%%/maps/multi/(5)venedig.sms.gz -%%DATADIR%%/maps/multi/(5)venedig.txt -%%DATADIR%%/maps/multi/(6)all-against-the-floods.pud -%%DATADIR%%/maps/multi/(6)all-against-the-floods.smp.gz -%%DATADIR%%/maps/multi/(6)all-against-the-floods.sms.gz -%%DATADIR%%/maps/multi/(6)all-against-the-floods.txt -%%DATADIR%%/maps/multi/(6)can-you-swim.pud -%%DATADIR%%/maps/multi/(6)can-you-swim.smp.gz -%%DATADIR%%/maps/multi/(6)can-you-swim.sms.gz -%%DATADIR%%/maps/multi/(6)different-ways.pud -%%DATADIR%%/maps/multi/(6)different-ways.smp.gz -%%DATADIR%%/maps/multi/(6)different-ways.sms.gz -%%DATADIR%%/maps/multi/(6)many-ways-to-rome.pud -%%DATADIR%%/maps/multi/(6)many-ways-to-rome.smp.gz -%%DATADIR%%/maps/multi/(6)many-ways-to-rome.sms.gz -%%DATADIR%%/maps/multi/(7)many-frontiers.pud -%%DATADIR%%/maps/multi/(7)many-frontiers.smp.gz -%%DATADIR%%/maps/multi/(7)many-frontiers.sms.gz -%%DATADIR%%/maps/multi/(8)altar-in-the-middle.pud.gz -%%DATADIR%%/maps/multi/(8)altar-in-the-middle.txt -%%DATADIR%%/maps/multi/(8)are-you-lucky.pud -%%DATADIR%%/maps/multi/(8)are-you-lucky.smp.gz -%%DATADIR%%/maps/multi/(8)are-you-lucky.sms.gz -%%DATADIR%%/maps/multi/(8)are-you-lucky.txt -%%DATADIR%%/maps/multi/(8)death-in-the-rocks.pud -%%DATADIR%%/maps/multi/(8)death-in-the-rocks.smp.gz -%%DATADIR%%/maps/multi/(8)death-in-the-rocks.sms.gz -%%DATADIR%%/maps/multi/(8)diabloarena.pud.gz -%%DATADIR%%/maps/multi/(8)diabloarena.txt -%%DATADIR%%/maps/multi/(8)diablodarkwood.pud.gz -%%DATADIR%%/maps/multi/(8)diablodarkwood.txt -%%DATADIR%%/maps/multi/(8)diablomaze.pud.gz -%%DATADIR%%/maps/multi/(8)diablomaze.txt -%%DATADIR%%/maps/multi/(8)everywhere.pud -%%DATADIR%%/maps/multi/(8)everywhere.txt -%%DATADIR%%/maps/multi/(8)fc-deathmatch-plain.pud.gz -%%DATADIR%%/maps/multi/(8)fc-deathmatch-x.pud.gz -%%DATADIR%%/maps/multi/(8)oil-is-the-key.pud -%%DATADIR%%/maps/multi/(8)oil-is-the-key.smp.gz -%%DATADIR%%/maps/multi/(8)oil-is-the-key.sms.gz -%%DATADIR%%/maps/multi/(8)roads-to-the-coasts.pud -%%DATADIR%%/maps/multi/(8)roads-to-the-coasts.smp.gz -%%DATADIR%%/maps/multi/(8)roads-to-the-coasts.sms.gz -%%DATADIR%%/maps/multi/(8)roads-to-the-coasts.txt -%%DATADIR%%/maps/multi/(8)tournament-continent.pud -%%DATADIR%%/maps/multi/(8)tournament-continent.smp.gz -%%DATADIR%%/maps/multi/(8)tournament-continent.sms.gz -%%DATADIR%%/maps/multi/(8)tournament-islands.pud -%%DATADIR%%/maps/multi/(8)tournament-islands.smp.gz -%%DATADIR%%/maps/multi/(8)tournament-islands.sms.gz +%%DATADIR%%/graphics/human/buildings/foundry construction site.png.txt +%%DATADIR%%/graphics/human/buildings/foundry_construction_site.png +%%DATADIR%%/graphics/human/buildings/mythic_townhall.png +%%DATADIR%%/graphics/human/buildings/mythic_townhall.txt +%%DATADIR%%/graphics/human/buildings/refinery construction site.png.txt +%%DATADIR%%/graphics/human/buildings/refinery_construction_site.png +%%DATADIR%%/graphics/human/buildings/shipyard construction site.png.txt +%%DATADIR%%/graphics/human/buildings/shipyard_construction_site.png +%%DATADIR%%/graphics/human/units/alliance destroyer.png.txt +%%DATADIR%%/graphics/human/units/ballista.png +%%DATADIR%%/graphics/human/units/ballista.png.txt +%%DATADIR%%/graphics/human/units/balloon.png.txt +%%DATADIR%%/graphics/human/units/battleship.png +%%DATADIR%%/graphics/human/units/battleship.png.txt +%%DATADIR%%/graphics/human/units/demolition squad.png.txt +%%DATADIR%%/graphics/human/units/dwarven_demolition_squad.png +%%DATADIR%%/graphics/human/units/elven_archer.png +%%DATADIR%%/graphics/human/units/elven_destroyer.png +%%DATADIR%%/graphics/human/units/footman.png +%%DATADIR%%/graphics/human/units/footman.png.txt +%%DATADIR%%/graphics/human/units/gnomish_flying_machine.png +%%DATADIR%%/graphics/human/units/gnomish_submarine.png +%%DATADIR%%/graphics/human/units/gryphon_rider.png +%%DATADIR%%/graphics/human/units/knight.png +%%DATADIR%%/graphics/human/units/knight.png.txt +%%DATADIR%%/graphics/human/units/mage.png +%%DATADIR%%/graphics/human/units/mage.png.txt +%%DATADIR%%/graphics/human/units/miner.png +%%DATADIR%%/graphics/human/units/miner.txt +%%DATADIR%%/graphics/human/units/miner_gold.png +%%DATADIR%%/graphics/human/units/miner_lumber.png +%%DATADIR%%/graphics/human/units/oil tanker empty.png.txt +%%DATADIR%%/graphics/human/units/oil tanker full.png.txt +%%DATADIR%%/graphics/human/units/oil_tanker_empty.png +%%DATADIR%%/graphics/human/units/oil_tanker_full.png +%%DATADIR%%/graphics/human/units/peasant with gold.png.txt +%%DATADIR%%/graphics/human/units/peasant with wood.png.txt +%%DATADIR%%/graphics/human/units/peasant.png +%%DATADIR%%/graphics/human/units/peasant.png.txt +%%DATADIR%%/graphics/human/units/peasant_with_gold.png +%%DATADIR%%/graphics/human/units/peasant_with_wood.png +%%DATADIR%%/graphics/human/units/submarine.png.txt +%%DATADIR%%/graphics/human/units/transport.png +%%DATADIR%%/graphics/human/units/transport.png.txt +%%DATADIR%%/graphics/human/x_startpoint.png +%%DATADIR%%/graphics/missiles/arrow.png +%%DATADIR%%/graphics/missiles/arrow.png.txt +%%DATADIR%%/graphics/missiles/axe.png +%%DATADIR%%/graphics/missiles/axe.png.txt +%%DATADIR%%/graphics/missiles/ballista bolt.png +%%DATADIR%%/graphics/missiles/ballista bolt.png.txt +%%DATADIR%%/graphics/missiles/ballista-catapult impact.png.txt +%%DATADIR%%/graphics/missiles/ballista-catapult_impact.png +%%DATADIR%%/graphics/missiles/ballista_bolt.png +%%DATADIR%%/graphics/missiles/big fire.png.txt +%%DATADIR%%/graphics/missiles/big_cannon.png +%%DATADIR%%/graphics/missiles/big_fire.png +%%DATADIR%%/graphics/missiles/blizzard.png +%%DATADIR%%/graphics/missiles/blizzard.png.txt +%%DATADIR%%/graphics/missiles/cannon explosion.png.txt +%%DATADIR%%/graphics/missiles/cannon-tower_explosion.png +%%DATADIR%%/graphics/missiles/cannon.png +%%DATADIR%%/graphics/missiles/cannon_explosion.png +%%DATADIR%%/graphics/missiles/catapult_rock.png +%%DATADIR%%/graphics/missiles/daemon_fire.png +%%DATADIR%%/graphics/missiles/death_and_decay.png +%%DATADIR%%/graphics/missiles/dragon_breath.png +%%DATADIR%%/graphics/missiles/exorcism.png +%%DATADIR%%/graphics/missiles/exorcism.png.txt +%%DATADIR%%/graphics/missiles/explosion.png +%%DATADIR%%/graphics/missiles/explosion.png.txt +%%DATADIR%%/graphics/missiles/fireball.png +%%DATADIR%%/graphics/missiles/flame shield.png.txt +%%DATADIR%%/graphics/missiles/flame_shield.png +%%DATADIR%%/graphics/missiles/green cross.png.txt +%%DATADIR%%/graphics/missiles/green_cross.png +%%DATADIR%%/graphics/missiles/gryphon hammer.png.txt +%%DATADIR%%/graphics/missiles/gryphon_hammer.png +%%DATADIR%%/graphics/missiles/heal effect.png.txt +%%DATADIR%%/graphics/missiles/heal_effect.png +%%DATADIR%%/graphics/missiles/lightning.png +%%DATADIR%%/graphics/missiles/lightning.png.txt +%%DATADIR%%/graphics/missiles/normal_spell.png +%%DATADIR%%/graphics/missiles/red_cross.png +%%DATADIR%%/graphics/missiles/rune.png +%%DATADIR%%/graphics/missiles/rune.png.txt +%%DATADIR%%/graphics/missiles/small fire.png.txt +%%DATADIR%%/graphics/missiles/small_fire.png +%%DATADIR%%/graphics/missiles/submarine missile.png.txt +%%DATADIR%%/graphics/missiles/submarine_missile.png +%%DATADIR%%/graphics/missiles/tornado.png +%%DATADIR%%/graphics/missiles/tornado.png.txt +%%DATADIR%%/graphics/missiles/touch_of_death.png +%%DATADIR%%/graphics/missiles/turtle_missile.png +%%DATADIR%%/graphics/missiles/unit_shadow.png +%%DATADIR%%/graphics/neutral/buildings/circle of power.png.txt +%%DATADIR%%/graphics/neutral/buildings/circle_of_power.png +%%DATADIR%%/graphics/neutral/buildings/land construction site.png.txt +%%DATADIR%%/graphics/neutral/buildings/land_construction_site.png +%%DATADIR%%/graphics/neutral/buildings/oil patch.png.txt +%%DATADIR%%/graphics/neutral/buildings/runestone.png +%%DATADIR%%/graphics/neutral/buildings/runestone.png.txt +%%DATADIR%%/graphics/neutral/units/corpses.png +%%DATADIR%%/graphics/neutral/units/corpses.png.txt +%%DATADIR%%/graphics/neutral/units/critter.png +%%DATADIR%%/graphics/neutral/units/critter.png.txt +%%DATADIR%%/graphics/neutral/units/daemon.png +%%DATADIR%%/graphics/neutral/units/skeleton.png +%%DATADIR%%/graphics/neutral/units/skeleton.png.txt +%%DATADIR%%/graphics/orc/buildings/foundry_construction_site.png +%%DATADIR%%/graphics/orc/buildings/refinery construction site.png.txt +%%DATADIR%%/graphics/orc/buildings/refinery_construction_site.png +%%DATADIR%%/graphics/orc/buildings/shipyard_construction_site.png +%%DATADIR%%/graphics/orc/o_startpoint.png +%%DATADIR%%/graphics/orc/units/axethrower.png.txt +%%DATADIR%%/graphics/orc/units/black knight.png.txt +%%DATADIR%%/graphics/orc/units/catapult.png +%%DATADIR%%/graphics/orc/units/death knight.png.txt +%%DATADIR%%/graphics/orc/units/death_knight.png +%%DATADIR%%/graphics/orc/units/dragon.png +%%DATADIR%%/graphics/orc/units/dragon.png.txt +%%DATADIR%%/graphics/orc/units/eye of vision.png.txt +%%DATADIR%%/graphics/orc/units/eye_of_kilrogg.png +%%DATADIR%%/graphics/orc/units/faun with gold.png.txt +%%DATADIR%%/graphics/orc/units/faun with wood.png.txt +%%DATADIR%%/graphics/orc/units/faun.png.txt +%%DATADIR%%/graphics/orc/units/giant_turtle.png +%%DATADIR%%/graphics/orc/units/goblin sappers.png.txt +%%DATADIR%%/graphics/orc/units/goblin_sappers.png +%%DATADIR%%/graphics/orc/units/goblin_zeppelin.png +%%DATADIR%%/graphics/orc/units/grunt.png +%%DATADIR%%/graphics/orc/units/grunt_green.png +%%DATADIR%%/graphics/orc/units/mythical destroyer.png.txt +%%DATADIR%%/graphics/orc/units/ogre.png +%%DATADIR%%/graphics/orc/units/ogre_juggernaught.png +%%DATADIR%%/graphics/orc/units/oil_tanker_empty.png +%%DATADIR%%/graphics/orc/units/oil_tanker_full.png +%%DATADIR%%/graphics/orc/units/peon.png +%%DATADIR%%/graphics/orc/units/peon_with_gold.png +%%DATADIR%%/graphics/orc/units/peon_with_wood.png +%%DATADIR%%/graphics/orc/units/transport.png +%%DATADIR%%/graphics/orc/units/transport.png.txt +%%DATADIR%%/graphics/orc/units/troll_axethrower.png +%%DATADIR%%/graphics/orc/units/troll_axethrower_green.png +%%DATADIR%%/graphics/orc/units/troll_axethrower_red.png +%%DATADIR%%/graphics/orc/units/troll_axethrower_yellow.png +%%DATADIR%%/graphics/orc/units/troll_destroyer.png +%%DATADIR%%/graphics/pandora/units/cannonship.png +%%DATADIR%%/graphics/pandora/units/cannonship.txt +%%DATADIR%%/graphics/pandora/units/chessboarda.png +%%DATADIR%%/graphics/pandora/units/chessboardb.png +%%DATADIR%%/graphics/pandora/units/chesspieces.png +%%DATADIR%%/graphics/pandora/units/chesspieces.txt +%%DATADIR%%/graphics/pandora/units/chesspieces2.png +%%DATADIR%%/graphics/pandora/units/footman.png +%%DATADIR%%/graphics/pandora/units/gnomish_submarine.png +%%DATADIR%%/graphics/pandora/units/mage.png +%%DATADIR%%/graphics/temp_test/deleteme.txt +%%DATADIR%%/graphics/temp_test/unit_ocer-soldier-masked.png +%%DATADIR%%/graphics/temp_test/unit_ocer-soldier.png +%%DATADIR%%/graphics/temp_test/unit_skiero-soldier-helmetless.png +%%DATADIR%%/graphics/temp_test/unit_skiero-soldier.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/alliance lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/barracks.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/barracks.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/blacksmith.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/blacksmith.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/cannon tower.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/cannon_tower.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/castle.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/castle.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/church.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/church.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/elven_lumber_mill.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/farm.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/farm.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/foundry.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/foundry.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/gnomish_inventor.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/gryphon aviary.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/gryphon_aviary.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/guard tower.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/guard_tower.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/human lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/human_lumber_mill.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/inventor.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/keep.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/keep.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/mage tower.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/mage_tower.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/oil platform.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/oil well construction site.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/oil_platform.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/oil_well_construction_site.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/refinery.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/refinery.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/scout tower.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/scout_tower.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/shipyard.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/shipyard.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/stables.png +%%DATADIR%%/graphics/tilesets/summer/human/buildings/stables.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/town hall.png.txt +%%DATADIR%%/graphics/tilesets/summer/human/buildings/town_hall.png +%%DATADIR%%/graphics/tilesets/summer/icons.png +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/dark portal.png.txt +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/dark_portal.png +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/destroyed site.png.txt +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/destroyed_site.png +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/gold mine.png.txt +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/gold_mine.png +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/oil patch.png.txt +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/oil_patch.png +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/small destroyed site.png.txt +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/small_destroyed_site.png +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/wall.png +%%DATADIR%%/graphics/tilesets/summer/neutral/buildings/wall_construction_site.png +%%DATADIR%%/graphics/tilesets/summer/neutral/units/critter.png +%%DATADIR%%/graphics/tilesets/summer/neutral/units/critter.png.txt +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/altar_of_storms.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/barracks.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/barracks.png.txt +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/blacksmith.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/cannon_tower.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/dragon_roost.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/farm.png.txt +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/fortress.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/fortress.png.txt +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/foundry.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/goblin_alchemist.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/great hall.png.txt +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/great_hall.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/guard_tower.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/mythical lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/ogre_mound.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/oil platform.png.txt +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/oil well construction site.png.txt +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/oil_platform.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/oil_well_construction_site.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/pig_farm.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/refinery.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/refinery.png.txt +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/shipyard.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/stronghold.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/stronghold.png.txt +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/temple of the damned.png.txt +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/temple_of_the_damned.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/troll_lumber_mill.png +%%DATADIR%%/graphics/tilesets/summer/orc/buildings/watch_tower.png +%%DATADIR%%/graphics/tilesets/summer/summer.gimp +%%DATADIR%%/graphics/tilesets/summer/summer.rgb +%%DATADIR%%/graphics/tilesets/summer/terrain/summer.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/alliance lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/barracks.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/barracks.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/blacksmith.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/blacksmith.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/cannon tower.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/cannon_tower.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/castle.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/church.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/church.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/elven_lumber_mill.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/farm.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/farm.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/foundry.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/foundry.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/foundry_construction_site.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/gnomish_inventor.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/gryphon aviary.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/gryphon_aviary.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/guard_tower.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/human lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/human_lumber_mill.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/inventor.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/keep.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/keep.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/mage tower.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/mage_tower.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/oil platform.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/oil_platform.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/oil_platform_construction_site.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/refinery.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/refinery.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/refinery_construction_site.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/scout tower.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/scout_tower.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/shipyard.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/shipyard.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/shipyard_construction_site.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/stables.png +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/stables.png.txt +%%DATADIR%%/graphics/tilesets/swamp/human/buildings/town_hall.png +%%DATADIR%%/graphics/tilesets/swamp/human/units/gnomish_submarine.png +%%DATADIR%%/graphics/tilesets/swamp/human/units/submarine.png.txt +%%DATADIR%%/graphics/tilesets/swamp/icons.png +%%DATADIR%%/graphics/tilesets/swamp/neutral/buildings/circle_of_power.png +%%DATADIR%%/graphics/tilesets/swamp/neutral/buildings/dark_portal.png +%%DATADIR%%/graphics/tilesets/swamp/neutral/buildings/destroyed_site.png +%%DATADIR%%/graphics/tilesets/swamp/neutral/buildings/gold_mine.png +%%DATADIR%%/graphics/tilesets/swamp/neutral/buildings/oil_patch.png +%%DATADIR%%/graphics/tilesets/swamp/neutral/buildings/runestone.png +%%DATADIR%%/graphics/tilesets/swamp/neutral/buildings/small_destroyed_site.png +%%DATADIR%%/graphics/tilesets/swamp/neutral/units/critter.png +%%DATADIR%%/graphics/tilesets/swamp/neutral/units/critter.png.txt +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/altar_of_storms.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/barracks.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/barracks.png.txt +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/blacksmith.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/cannon_tower.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/dragon_roost.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/farm.png.txt +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/fortress.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/fortress.png.txt +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/foundry.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/foundry_construction_site.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/goblin_alchemist.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/great hall.png.txt +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/great_hall.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/guard_tower.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/ogre_mound.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/oil platform construction site.png.txt +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/oil_platform.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/oil_platform_construction_site.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/pig_farm.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/refinery construction site.png.txt +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/refinery.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/refinery.png.txt +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/refinery_construction_site.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/shipyard.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/shipyard_construction_site.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/stronghold.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/stronghold.png.txt +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/temple of the damned.png.txt +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/temple_of_the_damned.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/troll_lumber_mill.png +%%DATADIR%%/graphics/tilesets/swamp/orc/buildings/watch_tower.png +%%DATADIR%%/graphics/tilesets/swamp/orc/units/giant_turtle.png +%%DATADIR%%/graphics/tilesets/swamp/swamp.gimp +%%DATADIR%%/graphics/tilesets/swamp/swamp.rgb +%%DATADIR%%/graphics/tilesets/swamp/terrain/swamp.png +%%DATADIR%%/graphics/tilesets/swamp/terrain/swamp.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/human/buildings/elven_lumber_mill.png +%%DATADIR%%/graphics/tilesets/wasteland/human/buildings/farm.png +%%DATADIR%%/graphics/tilesets/wasteland/human/buildings/farm.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/human/buildings/human lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/human/buildings/human_lumber_mill.png +%%DATADIR%%/graphics/tilesets/wasteland/human/buildings/lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/human/buildings/oil platform.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/human/buildings/oil well construction site.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/human/buildings/oil_platform.png +%%DATADIR%%/graphics/tilesets/wasteland/human/buildings/oil_well_construction_site.png +%%DATADIR%%/graphics/tilesets/wasteland/human/units/gnomish_submarine.png +%%DATADIR%%/graphics/tilesets/wasteland/human/units/submarine.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/icons.png +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/dark portal.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/dark_portal.png +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/destroyed site.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/destroyed_site.png +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/gold mine.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/gold_mine.png +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/oil patch.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/oil_patch.png +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/small destroyed site.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/small_destroyed_site.png +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/wall.png +%%DATADIR%%/graphics/tilesets/wasteland/neutral/buildings/wall_construction_site.png +%%DATADIR%%/graphics/tilesets/wasteland/neutral/units/critter.png +%%DATADIR%%/graphics/tilesets/wasteland/neutral/units/critter.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/orc/buildings/farm.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/orc/buildings/lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/orc/buildings/oil platform.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/orc/buildings/oil well construction site.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/orc/buildings/oil_platform.png +%%DATADIR%%/graphics/tilesets/wasteland/orc/buildings/oil_well_construction_site.png +%%DATADIR%%/graphics/tilesets/wasteland/orc/buildings/pig_farm.png +%%DATADIR%%/graphics/tilesets/wasteland/orc/buildings/troll_lumber_mill.png +%%DATADIR%%/graphics/tilesets/wasteland/orc/units/giant_turtle.png +%%DATADIR%%/graphics/tilesets/wasteland/terrain/wasteland.png +%%DATADIR%%/graphics/tilesets/wasteland/terrain/wasteland.png.txt +%%DATADIR%%/graphics/tilesets/wasteland/wasteland.gimp +%%DATADIR%%/graphics/tilesets/wasteland/wasteland.rgb +%%DATADIR%%/graphics/tilesets/winter/human/buildings/alliance lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/barracks.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/barracks.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/blacksmith.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/blacksmith.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/cannon tower.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/cannon_tower.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/castle.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/castle.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/church.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/church.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/elven_lumber_mill.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/farm.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/farm.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/foundry construction site.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/foundry.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/foundry.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/foundry_construction_site.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/gnomish_inventor.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/gryphon aviary.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/gryphon_aviary.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/guard tower.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/guard_tower.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/human lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/human_lumber_mill.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/inventor.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/keep.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/keep.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/mage tower.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/mage_tower.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/oil platform.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/oil well construction site.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/oil_platform.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/oil_well_construction_site.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/refinery construction site.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/refinery.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/refinery.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/refinery_construction_site.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/scout tower.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/scout_tower.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/shipyard construction site.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/shipyard.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/shipyard.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/shipyard_construction_site.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/stables.png +%%DATADIR%%/graphics/tilesets/winter/human/buildings/stables.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/town hall.png.txt +%%DATADIR%%/graphics/tilesets/winter/human/buildings/town_hall.png +%%DATADIR%%/graphics/tilesets/winter/icons.png +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/dark portal.png.txt +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/dark_portal.png +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/destroyed site.png.txt +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/destroyed_site.png +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/gold mine.png.txt +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/gold_mine.png +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/land_construction_site.png +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/oil patch.png.txt +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/oil_patch.png +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/runestone.png +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/small destroyed site.png.txt +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/small_destroyed_site.png +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/wall.png +%%DATADIR%%/graphics/tilesets/winter/neutral/buildings/wall_construction_site.png +%%DATADIR%%/graphics/tilesets/winter/neutral/units/critter.png +%%DATADIR%%/graphics/tilesets/winter/neutral/units/critter.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/altar_of_storms.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/barracks.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/barracks.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/blacksmith.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/cannon_tower.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/dragon_roost.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/farm.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/fortress.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/fortress.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/foundry.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/foundry_construction_site.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/goblin_alchemist.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/great hall.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/great_hall.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/guard_tower.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/mythical lumber mill.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/ogre_mound.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/oil platform construction site.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/oil platform.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/oil well construction site.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/oil_platform.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/oil_platform_construction_site.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/oil_well_construction_site.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/pig_farm.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/refinery construction site.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/refinery.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/refinery.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/refinery_construction_site.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/shipyard.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/shipyard_construction_site.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/stronghold.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/stronghold.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/temple of the damned.png.txt +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/temple_of_the_damned.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/troll_lumber_mill.png +%%DATADIR%%/graphics/tilesets/winter/orc/buildings/watch_tower.png +%%DATADIR%%/graphics/tilesets/winter/terrain/winter.png +%%DATADIR%%/graphics/tilesets/winter/terrain/winter.png.txt +%%DATADIR%%/graphics/tilesets/winter/winter.gimp +%%DATADIR%%/graphics/tilesets/winter/winter.rgb +%%DATADIR%%/graphics/ui/Credits_background.png +%%DATADIR%%/graphics/ui/Credits_for_extension_background.png +%%DATADIR%%/graphics/ui/Credits_for_extension_background.txt +%%DATADIR%%/graphics/ui/Menu_background_with_title.png +%%DATADIR%%/graphics/ui/Menu_background_without_title.png +%%DATADIR%%/graphics/ui/Patch.png +%%DATADIR%%/graphics/ui/bloodlust,haste,slow,invisible,shield.png +%%DATADIR%%/graphics/ui/bloodlust,haste,slow,invisible,shield.png.txt +%%DATADIR%%/graphics/ui/buttons 1.png.txt +%%DATADIR%%/graphics/ui/buttons 2.png.txt +%%DATADIR%%/graphics/ui/buttons_1.png +%%DATADIR%%/graphics/ui/buttons_2.png +%%DATADIR%%/graphics/ui/cd-icon.png +%%DATADIR%%/graphics/ui/credits background.png.txt +%%DATADIR%%/graphics/ui/cursors/arrow E.png.txt +%%DATADIR%%/graphics/ui/cursors/arrow N.png.txt +%%DATADIR%%/graphics/ui/cursors/arrow NE.png.txt +%%DATADIR%%/graphics/ui/cursors/arrow NW.png.txt +%%DATADIR%%/graphics/ui/cursors/arrow S.png.txt +%%DATADIR%%/graphics/ui/cursors/arrow SE.png.txt +%%DATADIR%%/graphics/ui/cursors/arrow SW.png.txt +%%DATADIR%%/graphics/ui/cursors/arrow W.png.txt +%%DATADIR%%/graphics/ui/cursors/arrow_E.png +%%DATADIR%%/graphics/ui/cursors/arrow_N.png +%%DATADIR%%/graphics/ui/cursors/arrow_NE.png +%%DATADIR%%/graphics/ui/cursors/arrow_NW.png +%%DATADIR%%/graphics/ui/cursors/arrow_S.png +%%DATADIR%%/graphics/ui/cursors/arrow_SE.png +%%DATADIR%%/graphics/ui/cursors/arrow_SW.png +%%DATADIR%%/graphics/ui/cursors/arrow_W.png +%%DATADIR%%/graphics/ui/cursors/credits_arrow.png +%%DATADIR%%/graphics/ui/cursors/cross.png +%%DATADIR%%/graphics/ui/cursors/cross.png.txt +%%DATADIR%%/graphics/ui/cursors/hourglass.png +%%DATADIR%%/graphics/ui/cursors/hourglass.png.txt +%%DATADIR%%/graphics/ui/cursors/magnifying glass classic.png.txt +%%DATADIR%%/graphics/ui/cursors/magnifying_glass.png +%%DATADIR%%/graphics/ui/cursors/magnifying_glass.txt *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***