summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShokara Kou <kou@13f0.net>2023-06-10 13:56:26 -0400
committerShokara Kou <kou@13f0.net>2023-06-10 13:56:26 -0400
commitfc0bbee43697a25f7d0a247d52ee8314efc7c502 (patch)
treeb5eaabd13007fe24b6bc2204cfaf8745ea74f329
parent1d5a904e6601488bb618350925d263af34320fc4 (diff)
update games/stone-soup to 0.30.0
-rw-r--r--games/stone-soup/Makefile6
-rw-r--r--games/stone-soup/distinfo4
-rw-r--r--games/stone-soup/patches/CVS/Entries4
-rw-r--r--games/stone-soup/patches/CVS/Repository1
-rw-r--r--games/stone-soup/patches/CVS/Root1
-rw-r--r--games/stone-soup/patches/patch-source_Makefile93
-rw-r--r--games/stone-soup/patches/patch-source_rltiles_Makefile17
-rw-r--r--games/stone-soup/pkg/PFRAG.no-no_x1146
-rw-r--r--games/stone-soup/pkg/PLIST132
9 files changed, 98 insertions, 206 deletions
diff --git a/games/stone-soup/Makefile b/games/stone-soup/Makefile
index ebc072c..4a951af 100644
--- a/games/stone-soup/Makefile
+++ b/games/stone-soup/Makefile
@@ -2,11 +2,11 @@ BROKEN-hppa = ICE on dgn-shoals.cc:638
2 2
3COMMENT = dungeon crawl stone soup 3COMMENT = dungeon crawl stone soup
4 4
5VERSION = 0.29.1 5VERSION = 0.30.0
6 6
7DISTNAME= crawl_${VERSION}.orig 7DISTNAME= crawl_${VERSION}.orig
8PKGNAME= stone-soup-${VERSION} 8PKGNAME= stone-soup-${VERSION}
9REVISION= 0 9REVISION= 1
10 10
11CATEGORIES = games 11CATEGORIES = games
12 12
@@ -86,8 +86,6 @@ post-install:
86 ${INSTALL_DATA} \ 86 ${INSTALL_DATA} \
87 ${PREFIX}/share/crawl/dat/tiles/stone_soup_icon-32x32.png \ 87 ${PREFIX}/share/crawl/dat/tiles/stone_soup_icon-32x32.png \
88 ${PREFIX}/share/pixmaps/stone-soup.png 88 ${PREFIX}/share/pixmaps/stone-soup.png
89 ${INSTALL_DATA} ${FILESDIR}/stone-soup.desktop \
90 ${PREFIX}/share/applications
91.endif 89.endif
92 90
93.include <bsd.port.mk> 91.include <bsd.port.mk>
diff --git a/games/stone-soup/distinfo b/games/stone-soup/distinfo
index a7fbf7b..c462047 100644
--- a/games/stone-soup/distinfo
+++ b/games/stone-soup/distinfo
@@ -1,2 +1,2 @@
1SHA256 (crawl_0.29.1.orig.tar.xz) = tQMslvJ94gK/JOETYbjPRQmDmCGRaASXiJLfHyn5W9M= 1SHA256 (crawl_0.30.0.orig.tar.xz) = 79Fz6xmCxrAtM99d9pkcg87AMwh/IgPiOuDqxM3eanM=
2SIZE (crawl_0.29.1.orig.tar.xz) = 15066940 2SIZE (crawl_0.30.0.orig.tar.xz) = 18859360
diff --git a/games/stone-soup/patches/CVS/Entries b/games/stone-soup/patches/CVS/Entries
deleted file mode 100644
index 7994531..0000000
--- a/games/stone-soup/patches/CVS/Entries
+++ /dev/null
@@ -1,4 +0,0 @@
1/patch-source_Makefile/1.8/Fri Mar 11 19:04:59 2022//
2/patch-source_debian_crawl-tiles_desktop/1.2/Fri Mar 11 19:04:59 2022//
3/patch-source_rltiles_Makefile/1.4/Fri Mar 11 19:04:59 2022//
4D
diff --git a/games/stone-soup/patches/CVS/Repository b/games/stone-soup/patches/CVS/Repository
deleted file mode 100644
index 4aff38d..0000000
--- a/games/stone-soup/patches/CVS/Repository
+++ /dev/null
@@ -1 +0,0 @@
1ports/games/stone-soup/patches
diff --git a/games/stone-soup/patches/CVS/Root b/games/stone-soup/patches/CVS/Root
deleted file mode 100644
index 3811072..0000000
--- a/games/stone-soup/patches/CVS/Root
+++ /dev/null
@@ -1 +0,0 @@
1/cvs
diff --git a/games/stone-soup/patches/patch-source_Makefile b/games/stone-soup/patches/patch-source_Makefile
deleted file mode 100644
index adc2a3c..0000000
--- a/games/stone-soup/patches/patch-source_Makefile
+++ /dev/null
@@ -1,93 +0,0 @@
1Index: source/Makefile
2--- source/Makefile.orig
3+++ source/Makefile
4@@ -260,9 +260,6 @@ ifdef msys
5 BUILD_LIBPNG = YesPlease
6 COPY_FONTS = yes
7 endif
8- ifeq ($(shell gcc -v -static -static-libstdc++ 2>&1 | grep 'unrecognized option'),)
9- EXTRA_LIBS += -static -static-libgcc -static-libstdc++
10- endif
11 endif
12 ifeq ($(uname_S),Darwin)
13 ifdef MAC_TARGET
14@@ -371,11 +368,8 @@ endif
15 #
16 ifndef NO_APPLE_PLATFORM
17 ifeq ($(uname_S),Darwin)
18-ifneq ($(shell gcc -v 2>&1 | grep Apple),)
19-APPLE_PLATFORM = YesPlease
20 endif
21 endif
22-endif
23
24
25 ifdef WIN32
26@@ -501,15 +495,7 @@ ifneq ($(GCC_VER),)
27 GCC_VER_SUFFIX:=-$(GCC_VER)
28 endif
29
30-# Attempt to use a full compiler name, to make
31-# distcc builds work nicely.
32-LMACH := $(shell gcc -dumpmachine)-
33-ifeq ($(LMACH),-)
34 LMACH :=
35-endif
36-ifeq ($(shell which $(LMACH)gcc$(GCC_VER_SUFFIX) > /dev/null 2> /dev/null && echo "Yes"),)
37-LMACH :=
38-endif
39
40 ifneq ($(FORCE_CC),)
41 GCC := $(FORCE_CC)
42@@ -1151,51 +1137,6 @@ ifndef NO_OPTIMIZE
43 endif
44 endif
45 endif
46-endif
47-
48-ifdef BUILD_PCRE
49-CONTRIBS += pcre
50-CONTRIB_LIBS += $(LIBPCRE)
51-endif
52-ifdef BUILD_FREETYPE
53-CONTRIBS += freetype
54-CONTRIB_LIBS += $(LIBFREETYPE)
55-endif
56-ifdef BUILD_LIBPNG
57-CONTRIBS += libpng
58-CONTRIB_LIBS := $(LIBPNG) $(CONTRIB_LIBS)
59-endif
60-ifdef BUILD_SDL2
61-CONTRIBS += sdl2
62-CONTRIB_LIBS := $(LIBSDL2) $(CONTRIB_LIBS)
63-ifeq ($(uname_S),Linux)
64-LIBS += -ldl -lrt
65-endif
66-endif
67-ifdef BUILD_SDL2IMAGE
68-CONTRIBS += sdl2-image
69-CONTRIB_LIBS := $(LIBSDL2IMAGE) $(CONTRIB_LIBS)
70-endif
71-ifdef BUILD_SDL2MIXER
72-CONTRIBS += sdl2-mixer
73-CONTRIB_LIBS := $(LIBSDL2MIXER) $(CONTRIB_LIBS)
74-endif
75-ifdef BUILD_ZLIB
76-CONTRIBS += zlib
77-CONTRIB_LIBS += $(LIBZ)
78-endif
79-ifdef BUILD_LUA
80-ifdef USE_LUAJIT
81-CONTRIBS += luajit/src
82-CFOTHER_L += -DUSE_LUAJIT
83-else
84-CONTRIBS += lua/src
85-endif
86-CONTRIB_LIBS += $(LIBLUA)
87-endif
88-ifdef BUILD_SQLITE
89-CONTRIBS += sqlite
90-CONTRIB_LIBS += $(LIBSQLITE)
91 endif
92
93 EXTRA_OBJECTS += version.o
diff --git a/games/stone-soup/patches/patch-source_rltiles_Makefile b/games/stone-soup/patches/patch-source_rltiles_Makefile
deleted file mode 100644
index 807b818..0000000
--- a/games/stone-soup/patches/patch-source_rltiles_Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
1Index: source/rltiles/Makefile
2--- source/rltiles/Makefile.orig
3+++ source/rltiles/Makefile
4@@ -50,13 +50,7 @@ endif
5
6 # Attempt to use a full compiler name, to make
7 # distcc builds work nicely.
8-LMACH := $(shell gcc -dumpmachine)-
9-ifeq ($(LMACH),-)
10 LMACH :=
11-endif
12-ifeq ($(shell which $(LMACH)gcc > /dev/null 2> /dev/null && echo "Yes"),)
13-LMACH :=
14-endif
15 HOSTCXX ?= $(LMACH)g++
16
17 DELETE = rm -f
diff --git a/games/stone-soup/pkg/PFRAG.no-no_x11 b/games/stone-soup/pkg/PFRAG.no-no_x11
deleted file mode 100644
index cc4fc44..0000000
--- a/games/stone-soup/pkg/PFRAG.no-no_x11
+++ /dev/null
@@ -1,46 +0,0 @@
1share/crawl/dat/tiles/
2share/crawl/dat/tiles/feat.png
3share/crawl/dat/tiles/floor.png
4share/crawl/dat/tiles/gui.png
5share/crawl/dat/tiles/icons.png
6share/crawl/dat/tiles/logo.png
7share/crawl/dat/tiles/logosmall.png
8share/crawl/dat/tiles/main.png
9share/crawl/dat/tiles/player.png
10share/crawl/dat/tiles/stone_soup_icon-32x32.png
11share/crawl/dat/tiles/stone_soup_icon-48x48.png
12share/crawl/dat/tiles/stone_soup_icon-512x512.png
13share/crawl/dat/tiles/stone_soup_icon-win32.png
14share/crawl/dat/tiles/title_Cws_Minotauros.png
15share/crawl/dat/tiles/title_anon_octopus_wizard.png
16share/crawl/dat/tiles/title_arbituhhh_tesu.png
17share/crawl/dat/tiles/title_baconkid_duvessa_dowan.png
18share/crawl/dat/tiles/title_baconkid_gastronok.png
19share/crawl/dat/tiles/title_baconkid_mnoleg.png
20share/crawl/dat/tiles/title_denzi_dragon.png
21share/crawl/dat/tiles/title_denzi_evil_mage.png
22share/crawl/dat/tiles/title_denzi_invasion.png
23share/crawl/dat/tiles/title_denzi_kitchen_duty.png
24share/crawl/dat/tiles/title_denzi_summoner.png
25share/crawl/dat/tiles/title_denzi_undead_warrior.png
26share/crawl/dat/tiles/title_e_m_fields.png
27share/crawl/dat/tiles/title_firemage.png
28share/crawl/dat/tiles/title_froggy_goodgod_tengu_gold.png
29share/crawl/dat/tiles/title_froggy_jiyva_felid.png
30share/crawl/dat/tiles/title_froggy_natasha_and_boris.png
31share/crawl/dat/tiles/title_froggy_rune_and_run_failed_on_dis.png
32share/crawl/dat/tiles/title_froggy_thunder_fist_nikola.png
33share/crawl/dat/tiles/title_nibiki_octopode.png
34share/crawl/dat/tiles/title_omndra_zot_demon.png
35share/crawl/dat/tiles/title_peileppe_bloax_eye.png
36share/crawl/dat/tiles/title_ploomutoo_ijyb.png
37share/crawl/dat/tiles/title_pooryurik_knight.png
38share/crawl/dat/tiles/title_psiweapon_kiku.png
39share/crawl/dat/tiles/title_psiweapon_roxanne.png
40share/crawl/dat/tiles/title_sastrei_chei.png
41share/crawl/dat/tiles/title_shadyamish_octm.png
42share/crawl/dat/tiles/title_white_noise_entering_the_dungeon.png
43share/crawl/dat/tiles/title_white_noise_grabbing_the_orb.png
44share/crawl/dat/tiles/wall.png
45share/pixmaps/
46share/pixmaps/stone-soup.png
diff --git a/games/stone-soup/pkg/PLIST b/games/stone-soup/pkg/PLIST
index 24eb741..749778c 100644
--- a/games/stone-soup/pkg/PLIST
+++ b/games/stone-soup/pkg/PLIST
@@ -1,6 +1,5 @@
1@bin bin/crawl-ss 1@bin bin/crawl-ss
2@man man/man6/crawl-ss.6 2@man man/man6/crawl-ss.6
3share/applications/
4share/crawl/ 3share/crawl/
5share/crawl/dat/ 4share/crawl/dat/
6share/crawl/dat/clua/ 5share/crawl/dat/clua/
@@ -34,6 +33,11 @@ share/crawl/dat/database/randbook.txt
34share/crawl/dat/database/randname.txt 33share/crawl/dat/database/randname.txt
35share/crawl/dat/database/shout.txt 34share/crawl/dat/database/shout.txt
36share/crawl/dat/database/wpnnoise.txt 35share/crawl/dat/database/wpnnoise.txt
36share/crawl/dat/database/zh/
37share/crawl/dat/database/zh/FAQ.txt
38share/crawl/dat/database/zh/help.txt
39share/crawl/dat/database/zh/monflee.txt
40share/crawl/dat/database/zh/montitle.txt
37share/crawl/dat/defaults/ 41share/crawl/dat/defaults/
38share/crawl/dat/defaults/autopickup_exceptions.txt 42share/crawl/dat/defaults/autopickup_exceptions.txt
39share/crawl/dat/defaults/glyph_colours.txt 43share/crawl/dat/defaults/glyph_colours.txt
@@ -397,6 +401,7 @@ share/crawl/dat/descript/nl/
397share/crawl/dat/descript/nl/ability.txt 401share/crawl/dat/descript/nl/ability.txt
398share/crawl/dat/descript/nl/tutorial.txt 402share/crawl/dat/descript/nl/tutorial.txt
399share/crawl/dat/descript/nl/unident.txt 403share/crawl/dat/descript/nl/unident.txt
404share/crawl/dat/descript/passives.txt
400share/crawl/dat/descript/pl/ 405share/crawl/dat/descript/pl/
401share/crawl/dat/descript/pl/ability.txt 406share/crawl/dat/descript/pl/ability.txt
402share/crawl/dat/descript/pl/backgrounds.txt 407share/crawl/dat/descript/pl/backgrounds.txt
@@ -477,10 +482,13 @@ share/crawl/dat/descript/zh/gods.txt
477share/crawl/dat/descript/zh/hints.txt 482share/crawl/dat/descript/zh/hints.txt
478share/crawl/dat/descript/zh/items.txt 483share/crawl/dat/descript/zh/items.txt
479share/crawl/dat/descript/zh/monsters.txt 484share/crawl/dat/descript/zh/monsters.txt
485share/crawl/dat/descript/zh/mutations.txt
486share/crawl/dat/descript/zh/passives.txt
480share/crawl/dat/descript/zh/quotes.txt 487share/crawl/dat/descript/zh/quotes.txt
481share/crawl/dat/descript/zh/skills.txt 488share/crawl/dat/descript/zh/skills.txt
482share/crawl/dat/descript/zh/species.txt 489share/crawl/dat/descript/zh/species.txt
483share/crawl/dat/descript/zh/spells.txt 490share/crawl/dat/descript/zh/spells.txt
491share/crawl/dat/descript/zh/status.txt
484share/crawl/dat/descript/zh/tutorial.txt 492share/crawl/dat/descript/zh/tutorial.txt
485share/crawl/dat/descript/zh/unident.txt 493share/crawl/dat/descript/zh/unident.txt
486share/crawl/dat/descript/zh/unrand.txt 494share/crawl/dat/descript/zh/unrand.txt
@@ -596,55 +604,102 @@ share/crawl/dat/dlua/v_rooms.lua
596share/crawl/dat/dlua/v_shapes.lua 604share/crawl/dat/dlua/v_shapes.lua
597share/crawl/dat/dlua/vault.lua 605share/crawl/dat/dlua/vault.lua
598share/crawl/dat/dlua/ziggurat.lua 606share/crawl/dat/dlua/ziggurat.lua
607share/crawl/dat/tiles/
608share/crawl/dat/tiles/feat.png
609share/crawl/dat/tiles/floor.png
610share/crawl/dat/tiles/gui.png
611share/crawl/dat/tiles/icons.png
612share/crawl/dat/tiles/logo.png
613share/crawl/dat/tiles/logosmall.png
614share/crawl/dat/tiles/main.png
615share/crawl/dat/tiles/player.png
616share/crawl/dat/tiles/stone_soup_icon-32x32.png
617share/crawl/dat/tiles/stone_soup_icon-48x48.png
618share/crawl/dat/tiles/stone_soup_icon-512x512.png
619share/crawl/dat/tiles/stone_soup_icon-win32.png
620share/crawl/dat/tiles/title_Cws_Minotauros.png
621share/crawl/dat/tiles/title_SpinningBird_djinn_sears_gnolls.png
622share/crawl/dat/tiles/title_anon_octopus_wizard.png
623share/crawl/dat/tiles/title_arbituhhh_tesu.png
624share/crawl/dat/tiles/title_baconkid_duvessa_dowan.png
625share/crawl/dat/tiles/title_baconkid_gastronok.png
626share/crawl/dat/tiles/title_baconkid_mnoleg.png
627share/crawl/dat/tiles/title_benadryl_antaeus.png
628share/crawl/dat/tiles/title_denzi_dragon.png
629share/crawl/dat/tiles/title_denzi_evil_mage.png
630share/crawl/dat/tiles/title_denzi_invasion.png
631share/crawl/dat/tiles/title_denzi_kitchen_duty.png
632share/crawl/dat/tiles/title_denzi_summoner.png
633share/crawl/dat/tiles/title_denzi_undead_warrior.png
634share/crawl/dat/tiles/title_e_m_fields.png
635share/crawl/dat/tiles/title_firemage.png
636share/crawl/dat/tiles/title_froggy_goodgod_tengu_gold.png
637share/crawl/dat/tiles/title_froggy_jiyva_felid.png
638share/crawl/dat/tiles/title_froggy_natasha_and_boris.png
639share/crawl/dat/tiles/title_froggy_rune_and_run_failed_on_dis.png
640share/crawl/dat/tiles/title_froggy_thunder_fist_nikola.png
641share/crawl/dat/tiles/title_gompami_kohu_xbow.png
599share/crawl/dat/tiles/title_kaonedong_ignis_the_dying_flame.png 642share/crawl/dat/tiles/title_kaonedong_ignis_the_dying_flame.png
600share/crawl/dat/tiles/title_kaonedong_menkaure_prince_of_dust.png 643share/crawl/dat/tiles/title_kaonedong_menkaure_prince_of_dust.png
644share/crawl/dat/tiles/title_micah_c_ereshkigal.png
645share/crawl/dat/tiles/title_nibiki_octopode.png
646share/crawl/dat/tiles/title_omndra_zot_demon.png
647share/crawl/dat/tiles/title_peileppe_bloax_eye.png
601share/crawl/dat/tiles/title_philosopheropposite_palentonga_paladin.png 648share/crawl/dat/tiles/title_philosopheropposite_palentonga_paladin.png
649share/crawl/dat/tiles/title_ploomutoo_ijyb.png
650share/crawl/dat/tiles/title_pooryurik_knight.png
651share/crawl/dat/tiles/title_psiweapon_kiku.png
652share/crawl/dat/tiles/title_psiweapon_roxanne.png
653share/crawl/dat/tiles/title_sastrei_chei.png
654share/crawl/dat/tiles/title_shadyamish_octm.png
655share/crawl/dat/tiles/title_white_noise_entering_the_dungeon.png
656share/crawl/dat/tiles/title_white_noise_grabbing_the_orb.png
657share/crawl/dat/tiles/wall.png
602share/crawl/docs/ 658share/crawl/docs/
603share/crawl/docs/CREDITS.txt 659share/crawl/docs/CREDITS.txt
604share/crawl/docs/aptitudes-wide.txt 660share/crawl/docs/aptitudes-wide.txt
605share/crawl/docs/aptitudes.txt 661share/crawl/docs/aptitudes.txt
606share/crawl/docs/arena.txt 662share/crawl/docs/arena.txt
607@comment share/crawl/docs/changelog.txt 663share/crawl/docs/changelog.txt
608share/crawl/docs/crawl_manual.txt 664share/crawl/docs/crawl_manual.txt
609@comment share/crawl/docs/develop/coding_conventions.txt 665share/crawl/docs/develop/
610@comment share/crawl/docs/develop/ 666share/crawl/docs/develop/IRC.txt
611@comment share/crawl/docs/develop/IRC.txt 667share/crawl/docs/develop/android.txt
612@comment share/crawl/docs/develop/android.txt 668share/crawl/docs/develop/arena.txt
613@comment share/crawl/docs/develop/arena.txt 669share/crawl/docs/develop/background_creation.txt
614@comment share/crawl/docs/develop/background_creation.txt 670share/crawl/docs/develop/ctags.txt
615@comment share/crawl/docs/develop/ctags.txt 671share/crawl/docs/develop/editor_tips.txt
616@comment share/crawl/docs/develop/editor_tips.txt 672share/crawl/docs/develop/gdb_tips.txt
617@comment share/crawl/docs/develop/gdb_tips.txt 673share/crawl/docs/develop/god_creation.txt
618@comment share/crawl/docs/develop/god_creation.txt 674share/crawl/docs/develop/keys.txt
619@comment share/crawl/docs/develop/keys.txt 675share/crawl/docs/develop/levels/
620@comment share/crawl/docs/develop/levels/ 676share/crawl/docs/develop/levels/advanced.txt
621@comment share/crawl/docs/develop/levels/advanced.txt 677share/crawl/docs/develop/levels/introduction.txt
622@comment share/crawl/docs/develop/levels/introduction.txt 678share/crawl/docs/develop/levels/syntax.txt
623@comment share/crawl/docs/develop/levels/syntax.txt 679share/crawl/docs/develop/levels/triggerables.txt
624@comment share/crawl/docs/develop/levels/triggerables.txt 680share/crawl/docs/develop/monster_creation.txt
625@comment share/crawl/docs/develop/monster_creation.txt 681share/crawl/docs/develop/monster_speech.txt
626@comment share/crawl/docs/develop/monster_speech.txt 682share/crawl/docs/develop/mutation_creation.txt
627@comment share/crawl/docs/develop/mutation_creation.txt 683share/crawl/docs/develop/patch_guide.txt
628@comment share/crawl/docs/develop/patch_guide.txt 684share/crawl/docs/develop/save_compatibility.txt
629@comment share/crawl/docs/develop/save_compatibility.txt 685share/crawl/docs/develop/spells.txt
630@comment share/crawl/docs/develop/spells.txt 686share/crawl/docs/develop/test_plug_and_play_cc.txt
631@comment share/crawl/docs/develop/test_plug_and_play_cc.txt 687share/crawl/docs/develop/tiles_creation.txt
632@comment share/crawl/docs/develop/tiles_creation.txt 688share/crawl/docs/develop/translation.txt
633@comment share/crawl/docs/develop/translation.txt
634share/crawl/docs/fight_simulator.txt 689share/crawl/docs/fight_simulator.txt
635share/crawl/docs/keybind.txt 690share/crawl/docs/keybind.txt
636@comment share/crawl/docs/license/ 691share/crawl/docs/license/
637@comment share/crawl/docs/license/cc0.txt 692share/crawl/docs/license/cc0.txt
638@comment share/crawl/docs/license/lgpl.txt 693share/crawl/docs/license/lgpl.txt
639@comment share/crawl/docs/license/libpng-LICENSE.txt 694share/crawl/docs/license/libpng-LICENSE.txt
640@comment share/crawl/docs/license/lualicense.txt 695share/crawl/docs/license/lualicense.txt
641@comment share/crawl/docs/license/pcre_license.txt 696share/crawl/docs/license/pcre_license.txt
642@comment share/crawl/docs/license/worley.txt 697share/crawl/docs/license/worley.txt
643share/crawl/docs/macros_guide.txt 698share/crawl/docs/macros_guide.txt
644share/crawl/docs/options_guide.txt 699share/crawl/docs/options_guide.txt
645share/crawl/docs/quickstart.md 700share/crawl/docs/quickstart.md
646share/crawl/docs/quickstart.txt 701share/crawl/docs/quickstart.txt
647@comment share/crawl/docs/ssh_guide.txt 702share/crawl/docs/ssh_guide.txt
648share/crawl/docs/tiles_help.txt 703share/crawl/docs/tiles_help.txt
649share/crawl/settings/ 704share/crawl/settings/
650share/crawl/settings/0.12_monster_glyphs.txt 705share/crawl/settings/0.12_monster_glyphs.txt
@@ -665,10 +720,11 @@ share/crawl/settings/dec_glyphs.txt
665share/crawl/settings/dvorak_command_keys.txt 720share/crawl/settings/dvorak_command_keys.txt
666share/crawl/settings/ibm_glyphs.txt 721share/crawl/settings/ibm_glyphs.txt
667share/crawl/settings/init.txt 722share/crawl/settings/init.txt
668@comment share/crawl/settings/mac/ 723share/crawl/settings/mac/
669@comment share/crawl/settings/mac/Crawl profile.terminal 724share/crawl/settings/mac/Crawl profile.terminal
670share/crawl/settings/neo_command_keys.txt 725share/crawl/settings/neo_command_keys.txt
671share/crawl/settings/no_vi_command_keys.txt 726share/crawl/settings/no_vi_command_keys.txt
672share/crawl/settings/old_unicode_glyphs.txt 727share/crawl/settings/old_unicode_glyphs.txt
673share/crawl/settings/safe_move_shift.txt 728share/crawl/settings/safe_move_shift.txt
674!%%no_x11%% 729share/pixmaps/
730share/pixmaps/stone-soup.png