summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShokara Kou <kou@13f0.net>2022-11-16 16:57:35 -0500
committerShokara Kou <kou@13f0.net>2022-11-16 17:23:56 -0500
commit69e92288e8c8a42d4599da557fbaf27e3a0add5c (patch)
tree90d18a81e9fa84fefd9f789f4ae34545e4a3c199
parentfedca28844acd14c1b84e145935e0358858c1f82 (diff)
add games/stone-soup from ports and update to 0.29.1
-rw-r--r--games/stone-soup/CVS/Entries5
-rw-r--r--games/stone-soup/CVS/Repository1
-rw-r--r--games/stone-soup/CVS/Root1
-rw-r--r--games/stone-soup/Makefile93
-rw-r--r--games/stone-soup/distinfo2
-rw-r--r--games/stone-soup/files/CVS/Entries2
-rw-r--r--games/stone-soup/files/CVS/Repository1
-rw-r--r--games/stone-soup/files/CVS/Root1
-rw-r--r--games/stone-soup/files/stone-soup.desktop9
-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/CVS/Entries4
-rw-r--r--games/stone-soup/pkg/CVS/Repository1
-rw-r--r--games/stone-soup/pkg/CVS/Root1
-rw-r--r--games/stone-soup/pkg/DESCR3
-rw-r--r--games/stone-soup/pkg/PFRAG.no-no_x1146
-rw-r--r--games/stone-soup/pkg/PLIST674
20 files changed, 960 insertions, 0 deletions
diff --git a/games/stone-soup/CVS/Entries b/games/stone-soup/CVS/Entries
new file mode 100644
index 0000000..225d8ff
--- /dev/null
+++ b/games/stone-soup/CVS/Entries
@@ -0,0 +1,5 @@
1/Makefile/1.44/Fri Mar 11 19:04:58 2022//
2/distinfo/1.8/Thu Sep 2 17:03:29 2021//
3D/files////
4D/patches////
5D/pkg////
diff --git a/games/stone-soup/CVS/Repository b/games/stone-soup/CVS/Repository
new file mode 100644
index 0000000..4643aa0
--- /dev/null
+++ b/games/stone-soup/CVS/Repository
@@ -0,0 +1 @@
ports/games/stone-soup
diff --git a/games/stone-soup/CVS/Root b/games/stone-soup/CVS/Root
new file mode 100644
index 0000000..3811072
--- /dev/null
+++ b/games/stone-soup/CVS/Root
@@ -0,0 +1 @@
/cvs
diff --git a/games/stone-soup/Makefile b/games/stone-soup/Makefile
new file mode 100644
index 0000000..ebc072c
--- /dev/null
+++ b/games/stone-soup/Makefile
@@ -0,0 +1,93 @@
1BROKEN-hppa = ICE on dgn-shoals.cc:638
2
3COMMENT = dungeon crawl stone soup
4
5VERSION = 0.29.1
6
7DISTNAME= crawl_${VERSION}.orig
8PKGNAME= stone-soup-${VERSION}
9REVISION= 0
10
11CATEGORIES = games
12
13HOMEPAGE = https://crawl.develz.org/
14
15# GPLv2+
16PERMIT_PACKAGE= Yes
17
18WANTLIB += ${COMPILER_LIBCXX} ${MODLUA_WANTLIB} c m sqlite3
19
20MASTER_SITES = https://github.com/crawl/crawl/releases/download/${VERSION}-debian/
21EXTRACT_SUFX= .tar.xz
22
23COMPILER = base-clang ports-gcc
24MODULES = lang/python \
25 lang/lua
26
27MODLUA_VERSION = 5.1
28
29BUILD_DEPENDS = graphics/pngcrush \
30 textproc/py-yaml${MODPY_FLAVOR}
31LIB_DEPENDS = databases/sqlite3
32
33MAKE_FLAGS = CC="${CC}" GCC="${GCC}" GXX="${CXX}" \
34 CXX="${CXX}" HOSTCXX="${CXX}" \
35 LUA_INCLUDE_DIR=${MODLUA_INCL_DIR} \
36 LUA_LIB=${MODLUA_LIB} \
37 SQLITE_INCLUDE_DIR=${LOCALBASE}/include \
38 LDFLAGS=-L${LOCALBASE}/lib \
39 INSTALL_UGRP=root:wheel \
40 prefix=${PREFIX} \
41 SAVEDIR="~/.crawl" \
42 NO_YACC=1 V=1
43
44USE_GMAKE = Yes
45CONFIGURE_STYLE = none
46
47MODPY_RUN_DEPENDS = No
48MODPY_ADJ_FILES = util/species-gen.py
49
50FLAVORS = no_x11
51FLAVOR ?=
52
53.if ${FLAVOR:Mno_x11}
54WANTLIB += curses pthread z
55MAKE_FLAGS += USE_UNICODE=y UNICODE_LOCALE=y
56.else
57# This should be automatically set during "gmake -C rltiles..." but isn't...
58CFLAGS += -DUSE_TILE
59CXXFLAGS += -DUSE_TILE
60
61MAKE_FLAGS += TILES=y \
62 LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib \
63 -lSDL2 -lSDL2_image -lpng -pthread"
64WANTLIB += GL GLU SDL2 SDL2_image freetype png pthread z
65RUN_DEPENDS =
66LIB_DEPENDS += devel/sdl2 \
67 devel/sdl2-image \
68 databases/sqlite3 \
69 graphics/png
70.endif
71
72NO_TEST = Yes
73
74CFLAGS += -I${LOCALBASE}/include -I${LOCALBASE}/include/SDL2
75CXXFLAGS += -I${LOCALBASE}/include -I${LOCALBASE}/include/SDL2
76
77WRKDIST = ${WRKDIR}/stone_soup-${VERSION}
78WRKSRC = ${WRKDIST}/source
79
80post-install:
81 mv ${PREFIX}/bin/crawl ${PREFIX}/bin/crawl-ss
82 chmod 755 ${PREFIX}/bin/crawl-ss
83 ${INSTALL_MAN} ${WRKDIST}/docs/crawl.6 ${PREFIX}/man/man6/crawl-ss.6
84.if ! ${FLAVOR:Mno_x11}
85 ${INSTALL_DATA_DIR} ${PREFIX}/share/pixmaps ${PREFIX}/share/applications
86 ${INSTALL_DATA} \
87 ${PREFIX}/share/crawl/dat/tiles/stone_soup_icon-32x32.png \
88 ${PREFIX}/share/pixmaps/stone-soup.png
89 ${INSTALL_DATA} ${FILESDIR}/stone-soup.desktop \
90 ${PREFIX}/share/applications
91.endif
92
93.include <bsd.port.mk>
diff --git a/games/stone-soup/distinfo b/games/stone-soup/distinfo
new file mode 100644
index 0000000..a7fbf7b
--- /dev/null
+++ b/games/stone-soup/distinfo
@@ -0,0 +1,2 @@
1SHA256 (crawl_0.29.1.orig.tar.xz) = tQMslvJ94gK/JOETYbjPRQmDmCGRaASXiJLfHyn5W9M=
2SIZE (crawl_0.29.1.orig.tar.xz) = 15066940
diff --git a/games/stone-soup/files/CVS/Entries b/games/stone-soup/files/CVS/Entries
new file mode 100644
index 0000000..2ee046f
--- /dev/null
+++ b/games/stone-soup/files/CVS/Entries
@@ -0,0 +1,2 @@
1/stone-soup.desktop/1.1/Fri Dec 16 15:04:27 2011//
2D
diff --git a/games/stone-soup/files/CVS/Repository b/games/stone-soup/files/CVS/Repository
new file mode 100644
index 0000000..3f36f89
--- /dev/null
+++ b/games/stone-soup/files/CVS/Repository
@@ -0,0 +1 @@
ports/games/stone-soup/files
diff --git a/games/stone-soup/files/CVS/Root b/games/stone-soup/files/CVS/Root
new file mode 100644
index 0000000..3811072
--- /dev/null
+++ b/games/stone-soup/files/CVS/Root
@@ -0,0 +1 @@
/cvs
diff --git a/games/stone-soup/files/stone-soup.desktop b/games/stone-soup/files/stone-soup.desktop
new file mode 100644
index 0000000..e58d338
--- /dev/null
+++ b/games/stone-soup/files/stone-soup.desktop
@@ -0,0 +1,9 @@
1[Desktop Entry]
2Encoding=UTF-8
3Name=Dungeon Crawl Stone Soup
4Exec=crawl-ss
5Icon=stone-soup.png
6Terminal=false
7Type=Application
8Categories=Application;Game;
9StartupNotify=false
diff --git a/games/stone-soup/patches/CVS/Entries b/games/stone-soup/patches/CVS/Entries
new file mode 100644
index 0000000..7994531
--- /dev/null
+++ b/games/stone-soup/patches/CVS/Entries
@@ -0,0 +1,4 @@
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
new file mode 100644
index 0000000..4aff38d
--- /dev/null
+++ b/games/stone-soup/patches/CVS/Repository
@@ -0,0 +1 @@
ports/games/stone-soup/patches
diff --git a/games/stone-soup/patches/CVS/Root b/games/stone-soup/patches/CVS/Root
new file mode 100644
index 0000000..3811072
--- /dev/null
+++ b/games/stone-soup/patches/CVS/Root
@@ -0,0 +1 @@
/cvs
diff --git a/games/stone-soup/patches/patch-source_Makefile b/games/stone-soup/patches/patch-source_Makefile
new file mode 100644
index 0000000..adc2a3c
--- /dev/null
+++ b/games/stone-soup/patches/patch-source_Makefile
@@ -0,0 +1,93 @@
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
new file mode 100644
index 0000000..807b818
--- /dev/null
+++ b/games/stone-soup/patches/patch-source_rltiles_Makefile
@@ -0,0 +1,17 @@
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/CVS/Entries b/games/stone-soup/pkg/CVS/Entries
new file mode 100644
index 0000000..7565f0e
--- /dev/null
+++ b/games/stone-soup/pkg/CVS/Entries
@@ -0,0 +1,4 @@
1/DESCR/1.1.1.1/Sun Apr 24 20:14:06 2011//
2/PFRAG.no-no_x11/1.11/Fri Mar 11 19:04:59 2022//
3/PLIST/1.10/Fri Mar 11 19:04:59 2022//
4D
diff --git a/games/stone-soup/pkg/CVS/Repository b/games/stone-soup/pkg/CVS/Repository
new file mode 100644
index 0000000..2922cbb
--- /dev/null
+++ b/games/stone-soup/pkg/CVS/Repository
@@ -0,0 +1 @@
ports/games/stone-soup/pkg
diff --git a/games/stone-soup/pkg/CVS/Root b/games/stone-soup/pkg/CVS/Root
new file mode 100644
index 0000000..3811072
--- /dev/null
+++ b/games/stone-soup/pkg/CVS/Root
@@ -0,0 +1 @@
/cvs
diff --git a/games/stone-soup/pkg/DESCR b/games/stone-soup/pkg/DESCR
new file mode 100644
index 0000000..fc1e4ae
--- /dev/null
+++ b/games/stone-soup/pkg/DESCR
@@ -0,0 +1,3 @@
1Dungeon Crawl Stone Soup is a free roguelike game of exploration and
2treasure-hunting in dungeons filled with dangerous and unfriendly
3monsters in a quest for the mystifyingly fabulous Orb of Zot.
diff --git a/games/stone-soup/pkg/PFRAG.no-no_x11 b/games/stone-soup/pkg/PFRAG.no-no_x11
new file mode 100644
index 0000000..cc4fc44
--- /dev/null
+++ b/games/stone-soup/pkg/PFRAG.no-no_x11
@@ -0,0 +1,46 @@
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
new file mode 100644
index 0000000..24eb741
--- /dev/null
+++ b/games/stone-soup/pkg/PLIST
@@ -0,0 +1,674 @@
1@bin bin/crawl-ss
2@man man/man6/crawl-ss.6
3share/applications/
4share/crawl/
5share/crawl/dat/
6share/crawl/dat/clua/
7share/crawl/dat/clua/autofight.lua
8share/crawl/dat/clua/automagic.lua
9share/crawl/dat/clua/delays.lua
10share/crawl/dat/clua/kills.lua
11share/crawl/dat/clua/stash.lua
12share/crawl/dat/database/
13share/crawl/dat/database/FAQ.txt
14share/crawl/dat/database/el/
15share/crawl/dat/database/el/monflee.txt
16share/crawl/dat/database/el/rand_all.txt
17share/crawl/dat/database/godname.txt
18share/crawl/dat/database/godspeak.txt
19share/crawl/dat/database/help.txt
20share/crawl/dat/database/insult.txt
21share/crawl/dat/database/miscname.txt
22share/crawl/dat/database/monflee.txt
23share/crawl/dat/database/monname.txt
24share/crawl/dat/database/monspeak.txt
25share/crawl/dat/database/monspell.txt
26share/crawl/dat/database/montitle.txt
27share/crawl/dat/database/pl/
28share/crawl/dat/database/pl/godspeak.txt
29share/crawl/dat/database/pl/miscname.txt
30share/crawl/dat/database/rand_all.txt
31share/crawl/dat/database/rand_arm.txt
32share/crawl/dat/database/rand_wpn.txt
33share/crawl/dat/database/randbook.txt
34share/crawl/dat/database/randname.txt
35share/crawl/dat/database/shout.txt
36share/crawl/dat/database/wpnnoise.txt
37share/crawl/dat/defaults/
38share/crawl/dat/defaults/autopickup_exceptions.txt
39share/crawl/dat/defaults/glyph_colours.txt
40share/crawl/dat/defaults/menu_colours.txt
41share/crawl/dat/defaults/messages.txt
42share/crawl/dat/defaults/misc.txt
43share/crawl/dat/defaults/runrest_messages.txt
44share/crawl/dat/defaults/standard_colours.txt
45share/crawl/dat/des/
46share/crawl/dat/des/00init.des
47share/crawl/dat/des/altar/
48share/crawl/dat/des/altar/altar.des
49share/crawl/dat/des/altar/ashenzari_visionary.des
50share/crawl/dat/des/altar/ecumenical.des
51share/crawl/dat/des/altar/kiku_cage.des
52share/crawl/dat/des/altar/lugonu_bribe.des
53share/crawl/dat/des/altar/nemelex_the_gamble.des
54share/crawl/dat/des/altar/okawaru_arena.des
55share/crawl/dat/des/altar/overflow.des
56share/crawl/dat/des/altar/trog_burn_book.des
57share/crawl/dat/des/altar/trog_wizard.des
58share/crawl/dat/des/altar/vehumet_trees.des
59share/crawl/dat/des/altar/xom_monty_hall.des
60share/crawl/dat/des/altar/xom_sheep.des
61share/crawl/dat/des/altar/yredelemnul_ordeal.des
62share/crawl/dat/des/arrival/
63share/crawl/dat/des/arrival/arrival_guide.txt
64share/crawl/dat/des/arrival/large.des
65share/crawl/dat/des/arrival/simple.des
66share/crawl/dat/des/arrival/small.des
67share/crawl/dat/des/arrival/twisted.des
68share/crawl/dat/des/branches/
69share/crawl/dat/des/branches/abyss.des
70share/crawl/dat/des/branches/blade.des
71share/crawl/dat/des/branches/coc.des
72share/crawl/dat/des/branches/crypt.des
73share/crawl/dat/des/branches/depths.des
74share/crawl/dat/des/branches/depths_encompass.des
75share/crawl/dat/des/branches/dis.des
76share/crawl/dat/des/branches/elf.des
77share/crawl/dat/des/branches/geh.des
78share/crawl/dat/des/branches/geh_lava_maze.des
79share/crawl/dat/des/branches/hell.des
80share/crawl/dat/des/branches/hells.des
81share/crawl/dat/des/branches/hilbert_zone.des
82share/crawl/dat/des/branches/lair.des
83share/crawl/dat/des/branches/orc.des
84share/crawl/dat/des/branches/pan.des
85share/crawl/dat/des/branches/shoals.des
86share/crawl/dat/des/branches/slime.des
87share/crawl/dat/des/branches/snake.des
88share/crawl/dat/des/branches/spider.des
89share/crawl/dat/des/branches/spider_jumping.des
90share/crawl/dat/des/branches/swamp.des
91share/crawl/dat/des/branches/tar.des
92share/crawl/dat/des/branches/temple.des
93share/crawl/dat/des/branches/temple_compat.des
94share/crawl/dat/des/branches/tomb.des
95share/crawl/dat/des/branches/vaults.des
96share/crawl/dat/des/branches/vaults_rooms_empty.des
97share/crawl/dat/des/branches/vaults_rooms_ghost.des
98share/crawl/dat/des/branches/vaults_rooms_hard.des
99share/crawl/dat/des/branches/vaults_rooms_standard.des
100share/crawl/dat/des/branches/zot.des
101share/crawl/dat/des/builder/
102share/crawl/dat/des/builder/alphashops.des
103share/crawl/dat/des/builder/arena.des
104share/crawl/dat/des/builder/decor.des
105share/crawl/dat/des/builder/dummy.des
106share/crawl/dat/des/builder/layout.des
107share/crawl/dat/des/builder/layout_caves.des
108share/crawl/dat/des/builder/layout_cc.des
109share/crawl/dat/des/builder/layout_cellular.des
110share/crawl/dat/des/builder/layout_city.des
111share/crawl/dat/des/builder/layout_delve.des
112share/crawl/dat/des/builder/layout_forest.des
113share/crawl/dat/des/builder/layout_geoelf.des
114share/crawl/dat/des/builder/layout_geoelf_castle.des
115share/crawl/dat/des/builder/layout_grids.des
116share/crawl/dat/des/builder/layout_halls.des
117share/crawl/dat/des/builder/layout_loops.des
118share/crawl/dat/des/builder/layout_overlapping_boxes.des
119share/crawl/dat/des/builder/layout_pan_divisions.des
120share/crawl/dat/des/builder/layout_pools.des
121share/crawl/dat/des/builder/layout_vaults.des
122share/crawl/dat/des/builder/rooms.des
123share/crawl/dat/des/builder/shops.des
124share/crawl/dat/des/builder/uniques.des
125share/crawl/dat/des/guide.txt
126share/crawl/dat/des/portals/
127share/crawl/dat/des/portals/arena.des
128share/crawl/dat/des/portals/bailey.des
129share/crawl/dat/des/portals/bazaar.des
130share/crawl/dat/des/portals/desolation.des
131share/crawl/dat/des/portals/gauntlet.des
132share/crawl/dat/des/portals/icecave.des
133share/crawl/dat/des/portals/ossuary.des
134share/crawl/dat/des/portals/sewer.des
135share/crawl/dat/des/portals/trove.des
136share/crawl/dat/des/portals/volcano.des
137share/crawl/dat/des/portals/wizlab.des
138share/crawl/dat/des/portals/ziggurat.des
139share/crawl/dat/des/serial/
140share/crawl/dat/des/serial/aquarium.des
141share/crawl/dat/des/serial/bayou.des
142share/crawl/dat/des/serial/column_ruins.des
143share/crawl/dat/des/serial/corridors.des
144share/crawl/dat/des/serial/curves.des
145share/crawl/dat/des/serial/demonic.des
146share/crawl/dat/des/serial/forest.des
147share/crawl/dat/des/serial/glass.des
148share/crawl/dat/des/serial/gnoll_camp.des
149share/crawl/dat/des/serial/ice.des
150share/crawl/dat/des/serial/magic_research.des
151share/crawl/dat/des/serial/park.des
152share/crawl/dat/des/serial/rivers.des
153share/crawl/dat/des/serial/serial_guide.txt
154share/crawl/dat/des/serial/sigils.des
155share/crawl/dat/des/serial/subway.des
156share/crawl/dat/des/serial/undead.des
157share/crawl/dat/des/serial/window.des
158share/crawl/dat/des/sprint/
159share/crawl/dat/des/sprint/arena_sprint.des
160share/crawl/dat/des/sprint/fedhas.des
161share/crawl/dat/des/sprint/linesprint.des
162share/crawl/dat/des/sprint/meat.des
163share/crawl/dat/des/sprint/menkaure.des
164share/crawl/dat/des/sprint/pitsprint.des
165share/crawl/dat/des/sprint/red_sonja.des
166share/crawl/dat/des/sprint/sprint_mu.des
167share/crawl/dat/des/sprint/zigsprint.des
168share/crawl/dat/des/test/
169share/crawl/dat/des/test.des
170share/crawl/dat/des/test/suite-los.des
171share/crawl/dat/des/test/suite.des
172share/crawl/dat/des/traps/
173share/crawl/dat/des/traps/monster_drop.des
174share/crawl/dat/des/traps/rats_trap.des
175share/crawl/dat/des/tutorial/
176share/crawl/dat/des/tutorial/lesson1.des
177share/crawl/dat/des/tutorial/lesson2.des
178share/crawl/dat/des/tutorial/lesson3.des
179share/crawl/dat/des/tutorial/lesson4.des
180share/crawl/dat/des/tutorial/lesson5.des
181share/crawl/dat/des/variable/
182share/crawl/dat/des/variable/ambush.des
183share/crawl/dat/des/variable/arcadia.des
184share/crawl/dat/des/variable/cathedral_bats.des
185share/crawl/dat/des/variable/compat.des
186share/crawl/dat/des/variable/d_encompass.des
187share/crawl/dat/des/variable/float.des
188share/crawl/dat/des/variable/geyser.des
189share/crawl/dat/des/variable/ghost.des
190share/crawl/dat/des/variable/grated_community.des
191share/crawl/dat/des/variable/large_abstract.des
192share/crawl/dat/des/variable/large_themed.des
193share/crawl/dat/des/variable/lemuel_castle.des
194share/crawl/dat/des/variable/mini.des
195share/crawl/dat/des/variable/mini_features.des
196share/crawl/dat/des/variable/mini_monsters.des
197share/crawl/dat/des/variable/polyominoes.des
198share/crawl/dat/des/variable/the_bubble.des
199share/crawl/dat/des/variable/the_grid.des
200share/crawl/dat/des/variable/winding_woodlands.des
201share/crawl/dat/descript/
202share/crawl/dat/descript/ability.txt
203share/crawl/dat/descript/backgrounds.txt
204share/crawl/dat/descript/branches.txt
205share/crawl/dat/descript/cards.txt
206share/crawl/dat/descript/clouds.txt
207share/crawl/dat/descript/commands.txt
208share/crawl/dat/descript/cs/
209share/crawl/dat/descript/cs/ability.txt
210share/crawl/dat/descript/cs/branches.txt
211share/crawl/dat/descript/cs/commands.txt
212share/crawl/dat/descript/cs/features.txt
213share/crawl/dat/descript/cs/gods.txt
214share/crawl/dat/descript/cs/hints.txt
215share/crawl/dat/descript/cs/items.txt
216share/crawl/dat/descript/cs/monsters.txt
217share/crawl/dat/descript/cs/quotes.txt
218share/crawl/dat/descript/cs/species.txt
219share/crawl/dat/descript/cs/spells.txt
220share/crawl/dat/descript/cs/tutorial.txt
221share/crawl/dat/descript/cs/unident.txt
222share/crawl/dat/descript/cs/unrand.txt
223share/crawl/dat/descript/da/
224share/crawl/dat/descript/da/ability.txt
225share/crawl/dat/descript/da/backgrounds.txt
226share/crawl/dat/descript/da/branches.txt
227share/crawl/dat/descript/da/cards.txt
228share/crawl/dat/descript/da/commands.txt
229share/crawl/dat/descript/da/hints.txt
230share/crawl/dat/descript/da/items.txt
231share/crawl/dat/descript/da/monsters.txt
232share/crawl/dat/descript/da/quotes.txt
233share/crawl/dat/descript/da/skills.txt
234share/crawl/dat/descript/da/species.txt
235share/crawl/dat/descript/da/unident.txt
236share/crawl/dat/descript/da/unrand.txt
237share/crawl/dat/descript/de/
238share/crawl/dat/descript/de/ability.txt
239share/crawl/dat/descript/de/backgrounds.txt
240share/crawl/dat/descript/de/branches.txt
241share/crawl/dat/descript/de/cards.txt
242share/crawl/dat/descript/de/commands.txt
243share/crawl/dat/descript/de/features.txt
244share/crawl/dat/descript/de/gods.txt
245share/crawl/dat/descript/de/hints.txt
246share/crawl/dat/descript/de/items.txt
247share/crawl/dat/descript/de/monsters.txt
248share/crawl/dat/descript/de/quotes.txt
249share/crawl/dat/descript/de/skills.txt
250share/crawl/dat/descript/de/species.txt
251share/crawl/dat/descript/de/spells.txt
252share/crawl/dat/descript/de/tutorial.txt
253share/crawl/dat/descript/de/unident.txt
254share/crawl/dat/descript/de/unrand.txt
255share/crawl/dat/descript/el/
256share/crawl/dat/descript/el/ability.txt
257share/crawl/dat/descript/el/backgrounds.txt
258share/crawl/dat/descript/el/branches.txt
259share/crawl/dat/descript/el/gods.txt
260share/crawl/dat/descript/el/items.txt
261share/crawl/dat/descript/el/monsters.txt
262share/crawl/dat/descript/el/species.txt
263share/crawl/dat/descript/el/tutorial.txt
264share/crawl/dat/descript/el/unident.txt
265share/crawl/dat/descript/el/unrand.txt
266share/crawl/dat/descript/es/
267share/crawl/dat/descript/es/ability.txt
268share/crawl/dat/descript/es/backgrounds.txt
269share/crawl/dat/descript/es/branches.txt
270share/crawl/dat/descript/es/cards.txt
271share/crawl/dat/descript/es/commands.txt
272share/crawl/dat/descript/es/features.txt
273share/crawl/dat/descript/es/gods.txt
274share/crawl/dat/descript/es/items.txt
275share/crawl/dat/descript/es/monsters.txt
276share/crawl/dat/descript/es/quotes.txt
277share/crawl/dat/descript/es/skills.txt
278share/crawl/dat/descript/es/species.txt
279share/crawl/dat/descript/es/tutorial.txt
280share/crawl/dat/descript/es/unident.txt
281share/crawl/dat/descript/es/unrand.txt
282share/crawl/dat/descript/features.txt
283share/crawl/dat/descript/fi/
284share/crawl/dat/descript/fi/ability.txt
285share/crawl/dat/descript/fi/backgrounds.txt
286share/crawl/dat/descript/fi/cards.txt
287share/crawl/dat/descript/fi/commands.txt
288share/crawl/dat/descript/fi/features.txt
289share/crawl/dat/descript/fi/items.txt
290share/crawl/dat/descript/fi/monsters.txt
291share/crawl/dat/descript/fi/species.txt
292share/crawl/dat/descript/fi/spells.txt
293share/crawl/dat/descript/fi/unident.txt
294share/crawl/dat/descript/fi/unrand.txt
295share/crawl/dat/descript/fr/
296share/crawl/dat/descript/fr/ability.txt
297share/crawl/dat/descript/fr/backgrounds.txt
298share/crawl/dat/descript/fr/branches.txt
299share/crawl/dat/descript/fr/cards.txt
300share/crawl/dat/descript/fr/commands.txt
301share/crawl/dat/descript/fr/features.txt
302share/crawl/dat/descript/fr/gods.txt
303share/crawl/dat/descript/fr/hints.txt
304share/crawl/dat/descript/fr/items.txt
305share/crawl/dat/descript/fr/monsters.txt
306share/crawl/dat/descript/fr/quotes.txt
307share/crawl/dat/descript/fr/skills.txt
308share/crawl/dat/descript/fr/species.txt
309share/crawl/dat/descript/fr/spells.txt
310share/crawl/dat/descript/fr/tutorial.txt
311share/crawl/dat/descript/fr/unident.txt
312share/crawl/dat/descript/fr/unrand.txt
313share/crawl/dat/descript/gods.txt
314share/crawl/dat/descript/hints.txt
315share/crawl/dat/descript/hu/
316share/crawl/dat/descript/hu/backgrounds.txt
317share/crawl/dat/descript/hu/species.txt
318share/crawl/dat/descript/it/
319share/crawl/dat/descript/it/backgrounds.txt
320share/crawl/dat/descript/it/branches.txt
321share/crawl/dat/descript/it/cards.txt
322share/crawl/dat/descript/it/commands.txt
323share/crawl/dat/descript/it/features.txt
324share/crawl/dat/descript/it/gods.txt
325share/crawl/dat/descript/it/hints.txt
326share/crawl/dat/descript/it/items.txt
327share/crawl/dat/descript/it/monsters.txt
328share/crawl/dat/descript/it/quotes.txt
329share/crawl/dat/descript/it/skills.txt
330share/crawl/dat/descript/it/species.txt
331share/crawl/dat/descript/it/tutorial.txt
332share/crawl/dat/descript/it/unident.txt
333share/crawl/dat/descript/it/unrand.txt
334share/crawl/dat/descript/items.txt
335share/crawl/dat/descript/ja/
336share/crawl/dat/descript/ja/ability.txt
337share/crawl/dat/descript/ja/backgrounds.txt
338share/crawl/dat/descript/ja/branches.txt
339share/crawl/dat/descript/ja/cards.txt
340share/crawl/dat/descript/ja/commands.txt
341share/crawl/dat/descript/ja/gods.txt
342share/crawl/dat/descript/ja/hints.txt
343share/crawl/dat/descript/ja/items.txt
344share/crawl/dat/descript/ja/monsters.txt
345share/crawl/dat/descript/ja/skills.txt
346share/crawl/dat/descript/ja/species.txt
347share/crawl/dat/descript/ja/spells.txt
348share/crawl/dat/descript/ja/tutorial.txt
349share/crawl/dat/descript/ja/unident.txt
350share/crawl/dat/descript/ja/unrand.txt
351share/crawl/dat/descript/ko/
352share/crawl/dat/descript/ko/ability.txt
353share/crawl/dat/descript/ko/backgrounds.txt
354share/crawl/dat/descript/ko/branches.txt
355share/crawl/dat/descript/ko/cards.txt
356share/crawl/dat/descript/ko/commands.txt
357share/crawl/dat/descript/ko/features.txt
358share/crawl/dat/descript/ko/gods.txt
359share/crawl/dat/descript/ko/hints.txt
360share/crawl/dat/descript/ko/items.txt
361share/crawl/dat/descript/ko/monsters.txt
362share/crawl/dat/descript/ko/quotes.txt
363share/crawl/dat/descript/ko/skills.txt
364share/crawl/dat/descript/ko/species.txt
365share/crawl/dat/descript/ko/spells.txt
366share/crawl/dat/descript/ko/tutorial.txt
367share/crawl/dat/descript/ko/unident.txt
368share/crawl/dat/descript/ko/unrand.txt
369share/crawl/dat/descript/lt/
370share/crawl/dat/descript/lt/backgrounds.txt
371share/crawl/dat/descript/lt/branches.txt
372share/crawl/dat/descript/lt/commands.txt
373share/crawl/dat/descript/lt/monsters.txt
374share/crawl/dat/descript/lt/skills.txt
375share/crawl/dat/descript/lt/species.txt
376share/crawl/dat/descript/lt/unident.txt
377share/crawl/dat/descript/lv/
378share/crawl/dat/descript/lv/ability.txt
379share/crawl/dat/descript/lv/backgrounds.txt
380share/crawl/dat/descript/lv/branches.txt
381share/crawl/dat/descript/lv/cards.txt
382share/crawl/dat/descript/lv/commands.txt
383share/crawl/dat/descript/lv/features.txt
384share/crawl/dat/descript/lv/gods.txt
385share/crawl/dat/descript/lv/hints.txt
386share/crawl/dat/descript/lv/items.txt
387share/crawl/dat/descript/lv/monsters.txt
388share/crawl/dat/descript/lv/skills.txt
389share/crawl/dat/descript/lv/species.txt
390share/crawl/dat/descript/lv/spells.txt
391share/crawl/dat/descript/lv/tutorial.txt
392share/crawl/dat/descript/lv/unident.txt
393share/crawl/dat/descript/lv/unrand.txt
394share/crawl/dat/descript/monsters.txt
395share/crawl/dat/descript/mutations.txt
396share/crawl/dat/descript/nl/
397share/crawl/dat/descript/nl/ability.txt
398share/crawl/dat/descript/nl/tutorial.txt
399share/crawl/dat/descript/nl/unident.txt
400share/crawl/dat/descript/pl/
401share/crawl/dat/descript/pl/ability.txt
402share/crawl/dat/descript/pl/backgrounds.txt
403share/crawl/dat/descript/pl/cards.txt
404share/crawl/dat/descript/pl/commands.txt
405share/crawl/dat/descript/pl/features.txt
406share/crawl/dat/descript/pl/gods.txt
407share/crawl/dat/descript/pl/hints.txt
408share/crawl/dat/descript/pl/items.txt
409share/crawl/dat/descript/pl/quotes.txt
410share/crawl/dat/descript/pl/skills.txt
411share/crawl/dat/descript/pl/species.txt
412share/crawl/dat/descript/pl/spells.txt
413share/crawl/dat/descript/pl/tutorial.txt
414share/crawl/dat/descript/pl/unident.txt
415share/crawl/dat/descript/pl/unrand.txt
416share/crawl/dat/descript/pt/
417share/crawl/dat/descript/pt/ability.txt
418share/crawl/dat/descript/pt/commands.txt
419share/crawl/dat/descript/pt/gods.txt
420share/crawl/dat/descript/pt/items.txt
421share/crawl/dat/descript/pt/unident.txt
422share/crawl/dat/descript/quotes.txt
423share/crawl/dat/descript/ru/
424share/crawl/dat/descript/ru/ability.txt
425share/crawl/dat/descript/ru/backgrounds.txt
426share/crawl/dat/descript/ru/branches.txt
427share/crawl/dat/descript/ru/cards.txt
428share/crawl/dat/descript/ru/commands.txt
429share/crawl/dat/descript/ru/features.txt
430share/crawl/dat/descript/ru/gods.txt
431share/crawl/dat/descript/ru/hints.txt
432share/crawl/dat/descript/ru/items.txt
433share/crawl/dat/descript/ru/monsters.txt
434share/crawl/dat/descript/ru/quotes.txt
435share/crawl/dat/descript/ru/skills.txt
436share/crawl/dat/descript/ru/species.txt
437share/crawl/dat/descript/ru/spells.txt
438share/crawl/dat/descript/ru/tutorial.txt
439share/crawl/dat/descript/ru/unident.txt
440share/crawl/dat/descript/ru/unrand.txt
441share/crawl/dat/descript/skills.txt
442share/crawl/dat/descript/species.txt
443share/crawl/dat/descript/spells.txt
444share/crawl/dat/descript/status.txt
445share/crawl/dat/descript/sv/
446share/crawl/dat/descript/sv/ability.txt
447share/crawl/dat/descript/sv/cards.txt
448share/crawl/dat/descript/sv/commands.txt
449share/crawl/dat/descript/sv/features.txt
450share/crawl/dat/descript/sv/items.txt
451share/crawl/dat/descript/sv/monsters.txt
452share/crawl/dat/descript/sv/species.txt
453share/crawl/dat/descript/sv/unrand.txt
454share/crawl/dat/descript/tr/
455share/crawl/dat/descript/tr/ability.txt
456share/crawl/dat/descript/tr/cards.txt
457share/crawl/dat/descript/tr/commands.txt
458share/crawl/dat/descript/tr/gods.txt
459share/crawl/dat/descript/tr/items.txt
460share/crawl/dat/descript/tr/quotes.txt
461share/crawl/dat/descript/tr/species.txt
462share/crawl/dat/descript/tr/tutorial.txt
463share/crawl/dat/descript/tr/unident.txt
464share/crawl/dat/descript/tr/unrand.txt
465share/crawl/dat/descript/tutorial.txt
466share/crawl/dat/descript/unident.txt
467share/crawl/dat/descript/unrand.txt
468share/crawl/dat/descript/zh/
469share/crawl/dat/descript/zh/ability.txt
470share/crawl/dat/descript/zh/backgrounds.txt
471share/crawl/dat/descript/zh/branches.txt
472share/crawl/dat/descript/zh/cards.txt
473share/crawl/dat/descript/zh/clouds.txt
474share/crawl/dat/descript/zh/commands.txt
475share/crawl/dat/descript/zh/features.txt
476share/crawl/dat/descript/zh/gods.txt
477share/crawl/dat/descript/zh/hints.txt
478share/crawl/dat/descript/zh/items.txt
479share/crawl/dat/descript/zh/monsters.txt
480share/crawl/dat/descript/zh/quotes.txt
481share/crawl/dat/descript/zh/skills.txt
482share/crawl/dat/descript/zh/species.txt
483share/crawl/dat/descript/zh/spells.txt
484share/crawl/dat/descript/zh/tutorial.txt
485share/crawl/dat/descript/zh/unident.txt
486share/crawl/dat/descript/zh/unrand.txt
487share/crawl/dat/dist_bones/
488share/crawl/dat/dist_bones/README
489share/crawl/dat/dist_bones/bones.store.Crypt
490share/crawl/dat/dist_bones/bones.store.D-10
491share/crawl/dat/dist_bones/bones.store.D-11
492share/crawl/dat/dist_bones/bones.store.D-12
493share/crawl/dat/dist_bones/bones.store.D-13
494share/crawl/dat/dist_bones/bones.store.D-14
495share/crawl/dat/dist_bones/bones.store.D-15
496share/crawl/dat/dist_bones/bones.store.D-3
497share/crawl/dat/dist_bones/bones.store.D-4
498share/crawl/dat/dist_bones/bones.store.D-5
499share/crawl/dat/dist_bones/bones.store.D-6
500share/crawl/dat/dist_bones/bones.store.D-7
501share/crawl/dat/dist_bones/bones.store.D-8
502share/crawl/dat/dist_bones/bones.store.D-9
503share/crawl/dat/dist_bones/bones.store.Depths
504share/crawl/dat/dist_bones/bones.store.Elf
505share/crawl/dat/dist_bones/bones.store.Hells
506share/crawl/dat/dist_bones/bones.store.Lair-1
507share/crawl/dat/dist_bones/bones.store.Lair-2
508share/crawl/dat/dist_bones/bones.store.Lair-3
509share/crawl/dat/dist_bones/bones.store.Lair-4
510share/crawl/dat/dist_bones/bones.store.Lair-5
511share/crawl/dat/dist_bones/bones.store.Lair-6
512share/crawl/dat/dist_bones/bones.store.Orc
513share/crawl/dat/dist_bones/bones.store.Pan
514share/crawl/dat/dist_bones/bones.store.Shoals
515share/crawl/dat/dist_bones/bones.store.Slime
516share/crawl/dat/dist_bones/bones.store.Snake
517share/crawl/dat/dist_bones/bones.store.Spider
518share/crawl/dat/dist_bones/bones.store.Swamp
519share/crawl/dat/dist_bones/bones.store.Tomb
520share/crawl/dat/dist_bones/bones.store.Vaults
521share/crawl/dat/dist_bones/bones.store.Zig
522share/crawl/dat/dist_bones/bones.store.Zot
523share/crawl/dat/dlua/
524share/crawl/dat/dlua/debug.lua
525share/crawl/dat/dlua/dungeon.lua
526share/crawl/dat/dlua/explorer.lua
527share/crawl/dat/dlua/fnwrap.lua
528share/crawl/dat/dlua/gauntlet.lua
529share/crawl/dat/dlua/ghost.lua
530share/crawl/dat/dlua/init.lua
531share/crawl/dat/dlua/iter.lua
532share/crawl/dat/dlua/layout/
533share/crawl/dat/dlua/layout/geoelf.lua
534share/crawl/dat/dlua/layout/geoelf_corridors.lua
535share/crawl/dat/dlua/layout/geoelf_directions.lua
536share/crawl/dat/dlua/layout/geoelf_glyphs.lua
537share/crawl/dat/dlua/layout/geoelf_rooms.lua
538share/crawl/dat/dlua/layout/hyper.lua
539share/crawl/dat/dlua/layout/hyper_caves.lua
540share/crawl/dat/dlua/layout/hyper_city.lua
541share/crawl/dat/dlua/layout/hyper_debug.lua
542share/crawl/dat/dlua/layout/hyper_decor.lua
543share/crawl/dat/dlua/layout/hyper_fort.lua
544share/crawl/dat/dlua/layout/hyper_paint.lua
545share/crawl/dat/dlua/layout/hyper_place.lua
546share/crawl/dat/dlua/layout/hyper_rooms.lua
547share/crawl/dat/dlua/layout/hyper_shapes.lua
548share/crawl/dat/dlua/layout/hyper_strategy.lua
549share/crawl/dat/dlua/layout/hyper_usage.lua
550share/crawl/dat/dlua/layout/layout.lua
551share/crawl/dat/dlua/layout/minimum_map_area.lua
552share/crawl/dat/dlua/layout/omnigrid.lua
553share/crawl/dat/dlua/layout/procedural.lua
554share/crawl/dat/dlua/layout/procedural_complex.lua
555share/crawl/dat/dlua/layout/procedural_primitives.lua
556share/crawl/dat/dlua/layout/procedural_transform.lua
557share/crawl/dat/dlua/layout/rooms_primitive.lua
558share/crawl/dat/dlua/layout/theme.lua
559share/crawl/dat/dlua/layout/vector.lua
560share/crawl/dat/dlua/layout/zonify.lua
561share/crawl/dat/dlua/lm_1way.lua
562share/crawl/dat/dlua/lm_door.lua
563share/crawl/dat/dlua/lm_fog.lua
564share/crawl/dat/dlua/lm_items.lua
565share/crawl/dat/dlua/lm_mon_prop.lua
566share/crawl/dat/dlua/lm_monst.lua
567share/crawl/dat/dlua/lm_mslav.lua
568share/crawl/dat/dlua/lm_named_hatch.lua
569share/crawl/dat/dlua/lm_pdesc.lua
570share/crawl/dat/dlua/lm_props.lua
571share/crawl/dat/dlua/lm_timed.lua
572share/crawl/dat/dlua/lm_tmsg.lua
573share/crawl/dat/dlua/lm_toll.lua
574share/crawl/dat/dlua/lm_trans.lua
575share/crawl/dat/dlua/lm_trig.lua
576share/crawl/dat/dlua/lm_trove.lua
577share/crawl/dat/dlua/loadmaps.lua
578share/crawl/dat/dlua/luamark.lua
579share/crawl/dat/dlua/macro.lua
580share/crawl/dat/dlua/mapinit.lua
581share/crawl/dat/dlua/persist.lua
582share/crawl/dat/dlua/point.lua
583share/crawl/dat/dlua/profiler.lua
584share/crawl/dat/dlua/sanity.lua
585share/crawl/dat/dlua/sprint.lua
586share/crawl/dat/dlua/stress.lua
587share/crawl/dat/dlua/tags.lua
588share/crawl/dat/dlua/test.lua
589share/crawl/dat/dlua/tutorial.lua
590share/crawl/dat/dlua/userbase.lua
591share/crawl/dat/dlua/util.lua
592share/crawl/dat/dlua/v_debug.lua
593share/crawl/dat/dlua/v_layouts.lua
594share/crawl/dat/dlua/v_paint.lua
595share/crawl/dat/dlua/v_rooms.lua
596share/crawl/dat/dlua/v_shapes.lua
597share/crawl/dat/dlua/vault.lua
598share/crawl/dat/dlua/ziggurat.lua
599share/crawl/dat/tiles/title_kaonedong_ignis_the_dying_flame.png
600share/crawl/dat/tiles/title_kaonedong_menkaure_prince_of_dust.png
601share/crawl/dat/tiles/title_philosopheropposite_palentonga_paladin.png
602share/crawl/docs/
603share/crawl/docs/CREDITS.txt
604share/crawl/docs/aptitudes-wide.txt
605share/crawl/docs/aptitudes.txt
606share/crawl/docs/arena.txt
607@comment share/crawl/docs/changelog.txt
608share/crawl/docs/crawl_manual.txt
609@comment share/crawl/docs/develop/coding_conventions.txt
610@comment share/crawl/docs/develop/
611@comment share/crawl/docs/develop/IRC.txt
612@comment share/crawl/docs/develop/android.txt
613@comment share/crawl/docs/develop/arena.txt
614@comment share/crawl/docs/develop/background_creation.txt
615@comment share/crawl/docs/develop/ctags.txt
616@comment share/crawl/docs/develop/editor_tips.txt
617@comment share/crawl/docs/develop/gdb_tips.txt
618@comment share/crawl/docs/develop/god_creation.txt
619@comment share/crawl/docs/develop/keys.txt
620@comment share/crawl/docs/develop/levels/
621@comment share/crawl/docs/develop/levels/advanced.txt
622@comment share/crawl/docs/develop/levels/introduction.txt
623@comment share/crawl/docs/develop/levels/syntax.txt
624@comment share/crawl/docs/develop/levels/triggerables.txt
625@comment share/crawl/docs/develop/monster_creation.txt
626@comment share/crawl/docs/develop/monster_speech.txt
627@comment share/crawl/docs/develop/mutation_creation.txt
628@comment share/crawl/docs/develop/patch_guide.txt
629@comment share/crawl/docs/develop/save_compatibility.txt
630@comment share/crawl/docs/develop/spells.txt
631@comment share/crawl/docs/develop/test_plug_and_play_cc.txt
632@comment share/crawl/docs/develop/tiles_creation.txt
633@comment share/crawl/docs/develop/translation.txt
634share/crawl/docs/fight_simulator.txt
635share/crawl/docs/keybind.txt
636@comment share/crawl/docs/license/
637@comment share/crawl/docs/license/cc0.txt
638@comment share/crawl/docs/license/lgpl.txt
639@comment share/crawl/docs/license/libpng-LICENSE.txt
640@comment share/crawl/docs/license/lualicense.txt
641@comment share/crawl/docs/license/pcre_license.txt
642@comment share/crawl/docs/license/worley.txt
643share/crawl/docs/macros_guide.txt
644share/crawl/docs/options_guide.txt
645share/crawl/docs/quickstart.md
646share/crawl/docs/quickstart.txt
647@comment share/crawl/docs/ssh_guide.txt
648share/crawl/docs/tiles_help.txt
649share/crawl/settings/
650share/crawl/settings/0.12_monster_glyphs.txt
651share/crawl/settings/0.13_monster_glyphs.txt
652share/crawl/settings/0.14_monster_glyphs.txt
653share/crawl/settings/0.16_monster_glyphs.txt
654share/crawl/settings/0.17_monster_glyphs.txt
655share/crawl/settings/0.18_monster_glyphs.txt
656share/crawl/settings/0.9_monster_glyphs.txt
657share/crawl/settings/034_command_keys.txt
658share/crawl/settings/052_monster_glyphs.txt
659share/crawl/settings/060_monster_glyphs.txt
660share/crawl/settings/071_monster_glyphs.txt
661share/crawl/settings/080_monster_glyphs.txt
662share/crawl/settings/advanced_optioneering.txt
663share/crawl/settings/colemak_command_keys.txt
664share/crawl/settings/dec_glyphs.txt
665share/crawl/settings/dvorak_command_keys.txt
666share/crawl/settings/ibm_glyphs.txt
667share/crawl/settings/init.txt
668@comment share/crawl/settings/mac/
669@comment share/crawl/settings/mac/Crawl profile.terminal
670share/crawl/settings/neo_command_keys.txt
671share/crawl/settings/no_vi_command_keys.txt
672share/crawl/settings/old_unicode_glyphs.txt
673share/crawl/settings/safe_move_shift.txt
674!%%no_x11%%