diff -urN /usr/ports/games/lordsawar/Makefile games/lordsawar/Makefile --- /usr/ports/games/lordsawar/Makefile 2015-05-22 05:04:41.725618000 +0900 +++ games/lordsawar/Makefile 2015-07-25 00:00:00.000000000 +0900 @@ -1,32 +1,28 @@ # $FreeBSD: head/games/lordsawar/Makefile 386938 2015-05-21 15:55:52Z amdmi3 $ PORTNAME= lordsawar -PORTVERSION= 0.2.0 -PORTREVISION= 3 +PORTVERSION= 0.3.0 CATEGORIES= games MASTER_SITES= SAVANNAH MAINTAINER= ports@FreeBSD.org COMMENT= Warlords II clone -LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE= GPLv3 # (or later) +#LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= bjam:${PORTSDIR}/devel/boost-jam \ - ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs -LIB_DEPENDS= libtar.so:${PORTSDIR}/devel/libtar \ - libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \ - libgnet-2.0.so:${PORTSDIR}/net/gnet2 - -USES= gettext gmake pkgconfig -USE_GNOME= gtkmm24 -USE_SDL= sdl image mixer +USES= compiler:c++11-lib gettext gmake pkgconfig +USE_GNOME= gtkmm30 libxslt +USE_GSTREAMER= mm GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-boost-includedir=${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -PORTDATA= * +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +LIB_DEPENDS+= libarchive.so.13:${PORTSDIR}/archivers/libarchive +.endif .include diff -urN /usr/ports/games/lordsawar/distinfo games/lordsawar/distinfo --- /usr/ports/games/lordsawar/distinfo 2014-06-21 17:44:23.000000000 +0900 +++ games/lordsawar/distinfo 2015-07-25 00:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (lordsawar-0.2.0.tar.gz) = c88f1bbe640bc4c922f47a2050120ccc0354d10ea4738fdc5e1126518165cdd6 -SIZE (lordsawar-0.2.0.tar.gz) = 24748303 +SHA256 (lordsawar-0.3.0.tar.gz) = e1693b1f5d7dcdf27df2f532395bc98b545cb72bf1793689c3847328a8129350 +SIZE (lordsawar-0.3.0.tar.gz) = 25946895 diff -urN /usr/ports/games/lordsawar/files/patch-src__LocationList.h games/lordsawar/files/patch-src__LocationList.h --- /usr/ports/games/lordsawar/files/patch-src__LocationList.h 2015-05-22 05:04:41.727579000 +0900 +++ games/lordsawar/files/patch-src__LocationList.h 2015-07-25 00:00:00.000000000 +0900 @@ -1,16 +1,7 @@ --- src/LocationList.h.orig 2010-05-11 08:50:34 UTC +++ src/LocationList.h -@@ -55,7 +55,7 @@ template class LocationList : p - - void add(T t) - { -- push_back(t); -+ this->push_back(t); - d_id[t->getId()] = t; - int size = t->getSize(); - for (int i = 0; i < size; i++) @@ -74,8 +74,14 @@ - for (int j = 0; j < size; j++) + for (int j = 0; j < s; j++) { Vector pos = t->getPos() + Vector(i,j); +#if defined(_LIBCPP_VERSION) diff -urN /usr/ports/games/lordsawar/files/patch-src__armyproto.cpp games/lordsawar/files/patch-src__armyproto.cpp --- /usr/ports/games/lordsawar/files/patch-src__armyproto.cpp 2015-05-22 05:04:41.728449000 +0900 +++ games/lordsawar/files/patch-src__armyproto.cpp 2015-07-25 00:00:00.000000000 +0900 @@ -1,11 +1,11 @@ --- src/armyproto.cpp.orig 2011-02-12 19:13:14 UTC +++ src/armyproto.cpp -@@ -36,7 +36,7 @@ std::string ArmyProto::d_tag = "armyprot +@@ -34,7 +34,7 @@ + ArmyProto::ArmyProto(const ArmyProto& a) - :ArmyProtoBase(a), - d_defends_ruins(a.d_defends_ruins), + :ArmyProtoBase(a), d_id(a.d_id), d_defends_ruins(a.d_defends_ruins), - d_awardable(a.d_awardable), d_image_name(a.d_image_name), + d_awardable(a.d_awardable), - d_gender(Hero::NONE) + d_gender(a.d_gender) { for (unsigned int c = Shield::WHITE; c <= Shield::NEUTRAL; c++) diff -urN /usr/ports/games/lordsawar/files/patch-src__setlist.h games/lordsawar/files/patch-src__setlist.h --- /usr/ports/games/lordsawar/files/patch-src__setlist.h 1970-01-01 09:00:00.000000000 +0900 +++ games/lordsawar/files/patch-src__setlist.h 2015-07-25 00:00:00.000000000 +0900 @@ -0,0 +1,26 @@ +--- src/setlist.h.orig 2015-07-03 20:03:50 UTC ++++ src/setlist.h +@@ -35,7 +35,11 @@ public: + SetList(Glib::ustring ext){extension=ext;}; + ~SetList() + { ++#if defined(_LIBCPP_VERSION) ++ for (typename SetList::iterator it = this->begin(); it != this->end(); ++#else + for (class SetList::iterator it = this->begin(); it != this->end(); ++#endif + it++) + delete (*it); + }; +@@ -62,7 +66,11 @@ public: + + bool contains(Glib::ustring name) const + { ++#if defined(_LIBCPP_VERSION) ++ for (typename SetList::const_iterator it = this->begin(); ++#else + for (class SetList::const_iterator it = this->begin(); ++#endif + it != this->end(); it++) + if ((*it)->getName() == name) + return true; diff -urN /usr/ports/games/lordsawar/pkg-plist games/lordsawar/pkg-plist --- /usr/ports/games/lordsawar/pkg-plist 2014-10-07 01:10:44.000000000 +0900 +++ games/lordsawar/pkg-plist 2015-07-25 00:00:00.000000000 +0900 @@ -1,80 +1,248 @@ bin/lordsawar -bin/lordsawar-army-editor -bin/lordsawar-city-editor bin/lordsawar-editor bin/lordsawar-game-host-client bin/lordsawar-game-host-server bin/lordsawar-game-list-client bin/lordsawar-game-list-server -bin/lordsawar-pbm -bin/lordsawar-shield-editor -bin/lordsawar-tile-editor +bin/lordsawar-import +bin/lordsawar-upgrade-file +man/man6/lordsawar.6.gz +man/man6/lordsawar-editor.6.gz +man/man6/lordsawar-game-host-client.6.gz +man/man6/lordsawar-game-host-server.6.gz +man/man6/lordsawar-game-list-client.6.gz +man/man6/lordsawar-game-list-server.6.gz +man/man6/lordsawar-import.6.gz +share/appdata/lordsawar-appdata.xml share/applications/lordsawar.desktop -share/gnome/help/lordsawar/C/figures/army_bonus.png -share/gnome/help/lordsawar/C/figures/army_unit_info.png -share/gnome/help/lordsawar/C/figures/buy_production.png -share/gnome/help/lordsawar/C/figures/city_window.png -share/gnome/help/lordsawar/C/figures/conquer_city.png -share/gnome/help/lordsawar/C/figures/fight_city_one_vs_two.png -share/gnome/help/lordsawar/C/figures/fight_one_vs_one.png -share/gnome/help/lordsawar/C/figures/fight_order.png -share/gnome/help/lordsawar/C/figures/fighting_city_one_vs_two.png -share/gnome/help/lordsawar/C/figures/fighting_one_vs_one.png -share/gnome/help/lordsawar/C/figures/fought_city_one_vs_two.png -share/gnome/help/lordsawar/C/figures/fought_one_vs_one.png -share/gnome/help/lordsawar/C/figures/game_lobby.png -share/gnome/help/lordsawar/C/figures/game_options.png -share/gnome/help/lordsawar/C/figures/main_screen.png -share/gnome/help/lordsawar/C/figures/main_screen_buttons.png -share/gnome/help/lordsawar/C/figures/main_screen_center_on_stack_button.png -share/gnome/help/lordsawar/C/figures/main_screen_defend_stack_button.png -share/gnome/help/lordsawar/C/figures/main_screen_deselect_stack_button.png -share/gnome/help/lordsawar/C/figures/main_screen_diplomacy_button.png -share/gnome/help/lordsawar/C/figures/main_screen_diplomacy_proposed_button.png -share/gnome/help/lordsawar/C/figures/main_screen_end_turn_button.png -share/gnome/help/lordsawar/C/figures/main_screen_move_all_stacks_button.png -share/gnome/help/lordsawar/C/figures/main_screen_move_stack_button.png -share/gnome/help/lordsawar/C/figures/main_screen_move_stack_dir_buttons.png -share/gnome/help/lordsawar/C/figures/main_screen_park_stack_button.png -share/gnome/help/lordsawar/C/figures/main_screen_select_next_stack_button.png -share/gnome/help/lordsawar/C/figures/main_screen_stack_search_button.png -share/gnome/help/lordsawar/C/figures/main_screen_stat_icon_cities.png -share/gnome/help/lordsawar/C/figures/main_screen_stat_icon_income.png -share/gnome/help/lordsawar/C/figures/main_screen_stat_icon_treasury.png -share/gnome/help/lordsawar/C/figures/main_screen_stat_icon_upkeep.png -share/gnome/help/lordsawar/C/figures/main_screen_stat_icons.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_black_asterisk.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_black_caret.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_black_equals.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_black_gt.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_black_hash.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_black_lt.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_black_minus.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_black_pipe.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_black_plus.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_black_tilde.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_white_asterisk.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_white_caret.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_white_equals.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_white_gt.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_white_hash.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_white_lt.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_white_minus.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_white_pipe.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_white_plus.png -share/gnome/help/lordsawar/C/figures/main_screen_symbol_white_tilde.png -share/gnome/help/lordsawar/C/figures/mousecursor_boat.png -share/gnome/help/lordsawar/C/figures/mousecursor_goto.png -share/gnome/help/lordsawar/C/figures/mousecursor_hand.png -share/gnome/help/lordsawar/C/figures/mousecursor_magnifying_glass.png -share/gnome/help/lordsawar/C/figures/mousecursor_rook.png -share/gnome/help/lordsawar/C/figures/mousecursor_target.png -share/gnome/help/lordsawar/C/figures/mousecursor_walk.png -share/gnome/help/lordsawar/C/legal.xml -share/gnome/help/lordsawar/C/lordsawar.xml +share/applications/lordsawar-editor.desktop share/icons/hicolor/32x32/apps/lordsawar.png +share/icons/hicolor/32x32/apps/lordsawar-editor.png share/icons/hicolor/64x64/apps/lordsawar.png +share/icons/hicolor/64x64/apps/lordsawar-editor.png share/locale/ca/LC_MESSAGES/lordsawar.mo share/locale/da/LC_MESSAGES/lordsawar.mo share/locale/de/LC_MESSAGES/lordsawar.mo +share/locale/hu/LC_MESSAGES/lordsawar.mo share/locale/nl/LC_MESSAGES/lordsawar.mo +share/locale/pl/LC_MESSAGES/lordsawar.mo +%%DATADIR%%/army/bigdefault.lwa +%%DATADIR%%/army/default.lwa +%%DATADIR%%/army/duel.lwa +%%DATADIR%%/citynames.xml +%%DATADIR%%/citysets/bigdefault.lwc +%%DATADIR%%/citysets/bigdol.lwc +%%DATADIR%%/citysets/default.lwc +%%DATADIR%%/citysets/dol.lwc +%%DATADIR%%/glade/about-dialog.ui +%%DATADIR%%/glade/army-bonus-dialog.ui +%%DATADIR%%/glade/army-gains-level-dialog.ui +%%DATADIR%%/glade/army-info-window.ui +%%DATADIR%%/glade/buy-production-dialog.ui +%%DATADIR%%/glade/city-defeated-dialog.ui +%%DATADIR%%/glade/city-info-window.ui +%%DATADIR%%/glade/city-looted-dialog.ui +%%DATADIR%%/glade/city-pillaged-dialog.ui +%%DATADIR%%/glade/city-raze-dialog.ui +%%DATADIR%%/glade/city-razed-dialog.ui +%%DATADIR%%/glade/city-rename-dialog.ui +%%DATADIR%%/glade/city-sacked-dialog.ui +%%DATADIR%%/glade/city-window.ui +%%DATADIR%%/glade/destination-dialog.ui +%%DATADIR%%/glade/diplomacy-dialog.ui +%%DATADIR%%/glade/diplomacy-report-dialog.ui +%%DATADIR%%/glade/disband-stack-dialog.ui +%%DATADIR%%/glade/editor/armyset-info-dialog.ui +%%DATADIR%%/glade/editor/armyset-window.ui +%%DATADIR%%/glade/editor/backpack-editor-dialog.ui +%%DATADIR%%/glade/editor/city-editor-dialog.ui +%%DATADIR%%/glade/editor/cityset-info-dialog.ui +%%DATADIR%%/glade/editor/cityset-window.ui +%%DATADIR%%/glade/editor/editor-quit-dialog.ui +%%DATADIR%%/glade/editor/editor-splash-window.ui +%%DATADIR%%/glade/editor/fight-order-editor-dialog.ui +%%DATADIR%%/glade/editor/hero-editor-dialog.ui +%%DATADIR%%/glade/editor/image-editor-dialog.ui +%%DATADIR%%/glade/editor/itemlist-dialog.ui +%%DATADIR%%/glade/editor/main-window.ui +%%DATADIR%%/glade/editor/map-info-dialog.ui +%%DATADIR%%/glade/editor/masked-image-editor-dialog.ui +%%DATADIR%%/glade/editor/new-map-dialog.ui +%%DATADIR%%/glade/editor/players-dialog.ui +%%DATADIR%%/glade/editor/reward-editor-dialog.ui +%%DATADIR%%/glade/editor/reward-list-dialog.ui +%%DATADIR%%/glade/editor/road-editor-tip.ui +%%DATADIR%%/glade/editor/ruin-editor-dialog.ui +%%DATADIR%%/glade/editor/select-army-dialog.ui +%%DATADIR%%/glade/editor/select-hidden-ruin-dialog.ui +%%DATADIR%%/glade/editor/select-item-dialog.ui +%%DATADIR%%/glade/editor/select-reward-dialog.ui +%%DATADIR%%/glade/editor/shieldset-info-dialog.ui +%%DATADIR%%/glade/editor/shieldset-window.ui +%%DATADIR%%/glade/editor/signpost-editor-dialog.ui +%%DATADIR%%/glade/editor/smallmap-editor-dialog.ui +%%DATADIR%%/glade/editor/stack-editor-dialog.ui +%%DATADIR%%/glade/editor/switch-sets-dialog.ui +%%DATADIR%%/glade/editor/temple-editor-dialog.ui +%%DATADIR%%/glade/editor/tile-preview-dialog.ui +%%DATADIR%%/glade/editor/tile-size-editor-dialog.ui +%%DATADIR%%/glade/editor/tileset-explosion-picture-editor-dialog.ui +%%DATADIR%%/glade/editor/tileset-flag-editor-dialog.ui +%%DATADIR%%/glade/editor/tileset-info-dialog.ui +%%DATADIR%%/glade/editor/tileset-selector-editor-dialog.ui +%%DATADIR%%/glade/editor/tileset-smallmap-building-colors-dialog.ui +%%DATADIR%%/glade/editor/tileset-window.ui +%%DATADIR%%/glade/editor/tilestyle-organizer-dialog.ui +%%DATADIR%%/glade/fight-order-dialog.ui +%%DATADIR%%/glade/fight-window.ui +%%DATADIR%%/glade/fighter.ui +%%DATADIR%%/glade/game-button-box-desktop.ui +%%DATADIR%%/glade/game-button-box-large-screen.ui +%%DATADIR%%/glade/game-button-box-netbook.ui +%%DATADIR%%/glade/game-loaded-dialog.ui +%%DATADIR%%/glade/game-lobby-dialog.ui +%%DATADIR%%/glade/game-options-dialog.ui +%%DATADIR%%/glade/game-over-dialog.ui +%%DATADIR%%/glade/game-preferences-dialog.ui +%%DATADIR%%/glade/game-quit-dialog.ui +%%DATADIR%%/glade/game-window.ui +%%DATADIR%%/glade/hero-brings-allies-dialog.ui +%%DATADIR%%/glade/hero-dialog.ui +%%DATADIR%%/glade/hero-levels-dialog.ui +%%DATADIR%%/glade/hero-offer-dialog.ui +%%DATADIR%%/glade/history-report-dialog.ui +%%DATADIR%%/glade/item-bonus-dialog.ui +%%DATADIR%%/glade/item-report-dialog.ui +%%DATADIR%%/glade/load-scenario-dialog.ui +%%DATADIR%%/glade/main-preferences-dialog.ui +%%DATADIR%%/glade/medal-awarded-dialog.ui +%%DATADIR%%/glade/military-advisor-dialog.ui +%%DATADIR%%/glade/new-network-game-dialog.ui +%%DATADIR%%/glade/new-profile-dialog.ui +%%DATADIR%%/glade/new-random-map-dialog.ui +%%DATADIR%%/glade/next-player-turn-dialog.ui +%%DATADIR%%/glade/pick-network-game-to-join-dialog.ui +%%DATADIR%%/glade/player-died-dialog.ui +%%DATADIR%%/glade/player-resign-completed-dialog.ui +%%DATADIR%%/glade/player-resign-dialog.ui +%%DATADIR%%/glade/preferences-dialog.ui +%%DATADIR%%/glade/quest-assigned-dialog.ui +%%DATADIR%%/glade/quest-expired-dialog.ui +%%DATADIR%%/glade/quest-report-dialog.ui +%%DATADIR%%/glade/report-dialog.ui +%%DATADIR%%/glade/ruin-report-dialog.ui +%%DATADIR%%/glade/ruin-rewarded-dialog.ui +%%DATADIR%%/glade/ruin-searched-dialog.ui +%%DATADIR%%/glade/ruinfight-finished-dialog.ui +%%DATADIR%%/glade/ruinfight-started-dialog.ui +%%DATADIR%%/glade/sage-dialog.ui +%%DATADIR%%/glade/signpost-change-dialog.ui +%%DATADIR%%/glade/splash-window.ui +%%DATADIR%%/glade/stack-army-button-desktop.ui +%%DATADIR%%/glade/stack-army-button-large-screen.ui +%%DATADIR%%/glade/stack-army-button-netbook.ui +%%DATADIR%%/glade/stack-info-dialog.ui +%%DATADIR%%/glade/stack-info-window.ui +%%DATADIR%%/glade/stack-tile-box-desktop.ui +%%DATADIR%%/glade/stack-tile-box-large-screen.ui +%%DATADIR%%/glade/stack-tile-box-netbook.ui +%%DATADIR%%/glade/status-box-desktop.ui +%%DATADIR%%/glade/status-box-large-screen.ui +%%DATADIR%%/glade/status-box-netbook.ui +%%DATADIR%%/glade/surrender-dialog.ui +%%DATADIR%%/glade/surrender-refused-dialog.ui +%%DATADIR%%/glade/temple-visit-dialog.ui +%%DATADIR%%/glade/treachery-dialog.ui +%%DATADIR%%/glade/triumphs-dialog.ui +%%DATADIR%%/glade/use-item-dialog.ui +%%DATADIR%%/glade/use-item-on-city-dialog.ui +%%DATADIR%%/glade/use-item-on-player-dialog.ui +%%DATADIR%%/heronames.xml +%%DATADIR%%/map/dol.map +%%DATADIR%%/map/duel.map +%%DATADIR%%/music/back1.ogg +%%DATADIR%%/music/battle.ogg +%%DATADIR%%/music/bless.ogg +%%DATADIR%%/music/defeat.ogg +%%DATADIR%%/music/hero.ogg +%%DATADIR%%/music/intro.ogg +%%DATADIR%%/music/music.xml +%%DATADIR%%/music/victory.ogg +%%DATADIR%%/ruinnames.xml +%%DATADIR%%/shield/default.lws +%%DATADIR%%/shield/dol.lws +%%DATADIR%%/shield/plain.lws +%%DATADIR%%/signposts.xml +%%DATADIR%%/templenames.xml +%%DATADIR%%/tilesets/bigdefault.lwt +%%DATADIR%%/tilesets/bigstark.lwt +%%DATADIR%%/tilesets/bigwesnoth.lwt +%%DATADIR%%/tilesets/default.lwt +%%DATADIR%%/tilesets/stark.lwt +%%DATADIR%%/tilesets/wesnoth.lwt +%%DATADIR%%/various/arrows-medium.png +%%DATADIR%%/various/arrows.png +%%DATADIR%%/various/bag.png +%%DATADIR%%/various/bigmedals.png +%%DATADIR%%/various/buttons-medium.png +%%DATADIR%%/various/buttons.png +%%DATADIR%%/various/castle_icon.ico +%%DATADIR%%/various/castle_icon.png +%%DATADIR%%/various/city_occupied.png +%%DATADIR%%/various/cursors.png +%%DATADIR%%/various/diplomacy-large.png +%%DATADIR%%/various/diplomacy-small.png +%%DATADIR%%/various/editor/button_12x12.png +%%DATADIR%%/various/editor/button_1x1.png +%%DATADIR%%/various/editor/button_2x2.png +%%DATADIR%%/various/editor/button_3x3.png +%%DATADIR%%/various/editor/button_6x6.png +%%DATADIR%%/various/editor/button_bag.png +%%DATADIR%%/various/editor/button_blank.png +%%DATADIR%%/various/editor/button_bridge.png +%%DATADIR%%/various/editor/button_castle.png +%%DATADIR%%/various/editor/button_erase.png +%%DATADIR%%/various/editor/button_move.png +%%DATADIR%%/various/editor/button_port.png +%%DATADIR%%/various/editor/button_road.png +%%DATADIR%%/various/editor/button_ruin.png +%%DATADIR%%/various/editor/button_selector.png +%%DATADIR%%/various/editor/button_signpost.png +%%DATADIR%%/various/editor/button_stack.png +%%DATADIR%%/various/editor/button_temple.png +%%DATADIR%%/various/hero-inactive.png +%%DATADIR%%/various/hero-newlevel-female.png +%%DATADIR%%/various/hero-newlevel-male.png +%%DATADIR%%/various/hero.png +%%DATADIR%%/various/items/items.xml +%%DATADIR%%/various/lordsawar_logo.png +%%DATADIR%%/various/medals_mask.png +%%DATADIR%%/various/movebonus.png +%%DATADIR%%/various/parley_offered.png +%%DATADIR%%/various/parley_refused.png +%%DATADIR%%/various/prodshieldset-medium.png +%%DATADIR%%/various/prodshieldset.png +%%DATADIR%%/various/recruit_female.png +%%DATADIR%%/various/recruit_male.png +%%DATADIR%%/various/ruin_1.png +%%DATADIR%%/various/ruin_2.png +%%DATADIR%%/various/ship.png +%%DATADIR%%/various/smallcity.png +%%DATADIR%%/various/smalldefense.png +%%DATADIR%%/various/smallexploredruin.png +%%DATADIR%%/various/smallincome.png +%%DATADIR%%/various/smallruinedcity.png +%%DATADIR%%/various/smalltemple.png +%%DATADIR%%/various/smalltreasury.png +%%DATADIR%%/various/smallunexploredruin.png +%%DATADIR%%/various/smallunexploredstronghold.png +%%DATADIR%%/various/smallupkeep.png +%%DATADIR%%/various/splash_screen.jpg +%%DATADIR%%/various/tileset_icon.ico +%%DATADIR%%/various/tileset_icon.png +%%DATADIR%%/various/tilestyles.png +%%DATADIR%%/various/waypoints.png +%%DATADIR%%/various/win.png +%%DATADIR%%/various/xslt/as-0.2.1-0.3.0.xsl +%%DATADIR%%/various/xslt/gs-0.2.0-0.2.1.xsl +%%DATADIR%%/various/xslt/pbm-0.2.0-0.2.1.xsl