Update Dungeon Crawl Stone Soup to version 0.11.0.

with silent agreement from ports@
This commit is contained in:
stsp 2013-01-12 16:21:43 +00:00
parent cfd20a18ac
commit 74d64af0dc
8 changed files with 310 additions and 64 deletions

View File

@ -1,25 +1,23 @@
# $OpenBSD: Makefile,v 1.17 2012/09/19 08:15:09 jasper Exp $
# $OpenBSD: Makefile,v 1.18 2013/01/12 16:21:43 stsp Exp $
COMMENT = dungeon crawl stone soup
CATEGORIES = games
HOMEPAGE = http://crawl.develz.org/
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=crawl-ref/}
VERSION = 0.9.1
VERSION = 0.11.0
DISTNAME= stone_soup-${VERSION}-nodeps
EXTRACT_SUFX= .tar.bz2
EXTRACT_SUFX= .tar.xz
PKGNAME= stone-soup-${VERSION}
REVISION = 3
BROKEN-arm= tilegen.elf loops burning cpu
WRKDIST = ${WRKDIR}/stone_soup-${VERSION}
WRKSRC = ${WRKDIST}/source
MAKE_FILE = ${WRKSRC}/makefile
USE_GMAKE = Yes
CFLAGS += "-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng -I${LOCALBASE}/include/SDL"
CXXFLAGS += "-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng -I${LOCALBASE}/include/SDL"
MAKE_FLAGS = CC="${CC}" CXX="${CXX}" \
CFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng -I${LOCALBASE}/include/SDL" \
CXXFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng -I${LOCALBASE}/include/SDL" \
LUA_INCLUDE_DIR=${MODLUA_INCL_DIR} \
LUA_LIB=${MODLUA_LIB} \
SQLITE_INCLUDE_DIR=/usr/include \
@ -29,12 +27,12 @@ MAKE_FLAGS = CC="${CC}" CXX="${CXX}" \
SAVEDIR="~/.crawl" \
V=1
MAKE_ENV += MODLUA_DEP_VERSION=${MODLUA_DEP_VERSION}
MODULES = lang/lua
WANTLIB = c m stdc++ ${MODLUA_WANTLIB} sqlite3
BUILD_DEPENDS = devel/bison \
graphics/pngcrush
RUN_DEPENDS = devel/desktop-file-utils
# Almost nethack...
PERMIT_DISTFILES_FTP = Yes
@ -46,16 +44,20 @@ FLAVORS = no_x11
FLAVOR ?=
.if ${FLAVOR:Mno_x11}
WANTLIB += ncursesw
WANTLIB += ncursesw pthread z
MAKE_FLAGS += USE_UNICODE=y UNICODE_LOCALE=y
.else
# This should be automatically set during "gmake -C rltiles..." but isn't...
CFLAGS += -DUSE_TILE
CXXFLAGS += -DUSE_TILE
MAKE_FLAGS += TILES=y \
YACC=yacc \
LDFLAGS="-L${LOCALBASE}/lib -lSDL -lSDL_image -lpng -pthread"
WANTLIB += GL GLU SDL SDL_image freetype png pthread z
RUN_DEPENDS = devel/desktop-file-utils
LIB_DEPENDS += devel/sdl \
devel/sdl-image \
print/freetype \
graphics/png
.endif

View File

@ -1,5 +1,2 @@
MD5 (stone_soup-0.9.1-nodeps.tar.bz2) = ub77gXdhjZQylVRsPR4deA==
RMD160 (stone_soup-0.9.1-nodeps.tar.bz2) = gDvB2ughEK1bfSwGjacaV8CnQY0=
SHA1 (stone_soup-0.9.1-nodeps.tar.bz2) = esWluA8lETKC0ZAAtX24MT3dXmo=
SHA256 (stone_soup-0.9.1-nodeps.tar.bz2) = yh/tGNJB3LjZIB4fJMSTD/dhbfTECvRXAQWLlcHMyWE=
SIZE (stone_soup-0.9.1-nodeps.tar.bz2) = 6540169
SHA256 (stone_soup-0.11.0-nodeps.tar.xz) = KjkwfJ+IYI7ioz07gxxR2RkMkcze2t7OzaXtrm3WkAI=
SIZE (stone_soup-0.11.0-nodeps.tar.xz) = 7516360

View File

@ -0,0 +1,48 @@
$OpenBSD: patch-source_Makefile,v 1.1 2013/01/12 16:21:43 stsp Exp $
--- source/Makefile.orig Sun Sep 30 23:25:31 2012
+++ source/Makefile Thu Dec 27 15:18:32 2012
@@ -533,7 +533,7 @@ ifndef BUILD_LUA
endif
endif
ifndef BUILD_LUA
- ifneq ($(shell $(PKGCONFIG) lua5.1 --exists || echo no),)
+ ifneq ($(shell $(PKGCONFIG) lua${MODLUA_DEP_VERSION} --exists || echo no),)
ifneq ($(shell $(PKGCONFIG) lua --exists || echo no),)
BUILD_LUA = yes
else
@@ -544,7 +544,7 @@ ifndef BUILD_LUA
endif
endif
else
- LUA_PACKAGE = lua5.1
+ LUA_PACKAGE = lua${MODLUA_DEP_VERSION}
endif
endif
ifndef BUILD_LUA
@@ -831,7 +831,7 @@ ifdef PROPORTIONAL_FONT
INSTALL_FONTS += $(PROPORTIONAL_FONT)
endif
else
- SYS_PROPORTIONAL_FONT = $(shell find /usr/share/fonts -iname $(OUR_PROPORTIONAL_FONT)|head -n 1)
+ SYS_PROPORTIONAL_FONT = ${X11BASE}/lib/X11/fonts/TTF/$(OUR_PROPORTIONAL_FONT)
ifeq (,$(SYS_PROPORTIONAL_FONT))
SYS_PROPORTIONAL_FONT = $(shell find /usr/local/share/fonts -iname $(OUR_PROPORTIONAL_FONT)|head -n 1)
endif
@@ -854,7 +854,7 @@ ifdef MONOSPACED_FONT
INSTALL_FONTS += $(MONOSPACED_FONT)
endif
else
- SYS_MONOSPACED_FONT = $(shell find /usr/share/fonts -iname $(OUR_MONOSPACED_FONT)|head -n 1)
+ SYS_MONOSPACED_FONT = ${X11BASE}/lib/X11/fonts/TTF/$(OUR_MONOSPACED_FONT)
ifeq (,$(SYS_MONOSPACED_FONT))
SYS_MONOSPACED_FONT = $(shell find /usr/local/share/fonts -iname $(OUR_MONOSPACED_FONT)|head -n 1)
endif
@@ -1150,7 +1150,7 @@ endif
# This information is included in crash reports, and is printed with
# "crawl -version"
compflag.h: $(OBJECTS:.o=.cc) util/gen-cflg.pl
- $(QUIET_GEN)util/gen-cflg.pl compflag.h "$(ALL_CFLAGS)" "$(LDFLAGS)" "$(HOST)" "$(ARCH)"
+ $(QUIET_GEN)util/gen-cflg.pl compflag.h "$(CFLAGS)" "$(LDFLAGS)" "$(HOST)" "$(ARCH)"
build.h: $(OBJECTS:.o=.cc) util/gen_ver.pl
$(QUIET_GEN)util/gen_ver.pl $@ $(MERGE_BASE)

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-source_command_cc,v 1.1.1.1 2011/04/24 20:14:06 stsp Exp $
--- source/command.cc.orig Sun Apr 3 21:44:58 2011
+++ source/command.cc Sun Apr 3 21:45:10 2011
@@ -854,7 +854,7 @@ struct help_file
$OpenBSD: patch-source_command_cc,v 1.2 2013/01/12 16:21:43 stsp Exp $
--- source/command.cc.orig Sun Sep 30 23:25:31 2012
+++ source/command.cc Thu Dec 27 12:50:49 2012
@@ -748,7 +748,7 @@ struct help_file
help_file help_files[] = {
static help_file help_files[] = {
{ "crawl_manual.txt", '*', true },
- { "../README.txt", '!', false },
+ { "README.txt", '!', false },

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-source_makefile,v 1.1 2011/12/16 15:03:03 stsp Exp $
honour CFLAGS
--- source/makefile.orig Fri Dec 16 12:05:58 2011
+++ source/makefile Fri Dec 16 12:06:50 2011
@@ -710,8 +710,8 @@ ifdef REPORT
CFOTHERS += -ftime-report
endif
-CFLAGS := $(CFOPTIMIZE) $(CFOTHERS) $(CFWARN)
-CFLAGS_L := $(CFOPTIMIZE_L) $(DEFINES_L) $(CFWARN_L) $(INCLUDES_L) $(CFOTHERS_L)
+CFLAGS := $(CFOPTIMIZE) $(CFOTHERS) $(CFWARN) $(CFLAGS)
+CFLAGS_L := $(CFOPTIMIZE_L) $(DEFINES_L) $(CFWARN_L) $(INCLUDES_L) $(CFOTHERS_L) $(CFLAGS)
ALL_CFLAGS := $(CFLAGS) $(CFLAGS_L)
YACC_CFLAGS := $(ALL_CFLAGS) -w -DYYENABLE_NLS=0 -DYYLTYPE_IS_TRIVIAL=0

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-source_rltiles_Makefile,v 1.1 2011/12/16 15:03:03 stsp Exp $
honour CFLAGS
--- source/rltiles/Makefile.orig Fri Dec 16 12:05:25 2011
+++ source/rltiles/Makefile Fri Dec 16 12:05:37 2011
@@ -10,7 +10,7 @@ SDL_LDFLAGS := $(shell sdl-config --libs 2> /dev/null
PNG_INCLUDE := $(shell pkg-config libpng --cflags 2> /dev/null || echo "-I../contrib/install/include")
PNG_LIB := $(shell pkg-config libpng --libs 2> /dev/null || echo "../contrib/install/lib/libpng.a ../contrib/install/lib/libz.a")
-CFLAGS := -O2 $(SDL_CFLAGS) $(PNG_INCLUDE)
+CFLAGS := $(SDL_CFLAGS) $(PNG_INCLUDE) $(CFLAGS)
LDFLAGS += $(SDL_LDFLAGS) $(PNG_LIB)
ifneq (,$(findstring MINGW,$(uname_S)))

View File

@ -1,8 +1,6 @@
@comment $OpenBSD: PFRAG.no-no_x11,v 1.3 2012/01/02 11:26:20 stsp Exp $
@comment $OpenBSD: PFRAG.no-no_x11,v 1.4 2013/01/12 16:21:43 stsp Exp $
share/applications/stone-soup.desktop
share/crawl/dat/tiles/
share/crawl/dat/tiles/Vera.ttf
share/crawl/dat/tiles/VeraMono.ttf
share/crawl/dat/tiles/feat.png
share/crawl/dat/tiles/floor.png
share/crawl/dat/tiles/gui.png
@ -14,10 +12,17 @@ share/crawl/dat/tiles/stone_soup_icon-32x32.png
share/crawl/dat/tiles/stone_soup_icon-512x512.png
share/crawl/dat/tiles/stone_soup_icon-win32.png
share/crawl/dat/tiles/title_denzi_dragon.png
share/crawl/dat/tiles/title_denzi_evil_mage.png
share/crawl/dat/tiles/title_denzi_invasion.png
share/crawl/dat/tiles/title_denzi_kitchen_duty.png
share/crawl/dat/tiles/title_denzi_summoner.png
share/crawl/dat/tiles/title_denzi_undead_warrior.png
share/crawl/dat/tiles/title_firemage.png
share/crawl/dat/tiles/title_omndra_zot_demon.png
share/crawl/dat/tiles/title_pooryurik_knight.png
share/crawl/dat/tiles/title_shadyamish_octm.png
share/crawl/dat/tiles/title_white_noise_entering_the_dungeon.png
share/crawl/dat/tiles/title_white_noise_grabbing_the_orb.png
share/crawl/dat/tiles/wall.png
share/pixmaps/
share/pixmaps/stone-soup.png

View File

@ -1,10 +1,22 @@
@comment $OpenBSD: PLIST,v 1.3 2012/01/02 11:26:20 stsp Exp $
@comment $OpenBSD: PLIST,v 1.4 2013/01/12 16:21:43 stsp Exp $
@bin bin/crawl-ss
@man man/man6/crawl-ss.6
share/crawl/
share/crawl/dat/
share/crawl/dat/clua/
share/crawl/dat/clua/autofight.lua
share/crawl/dat/clua/gearset.lua
share/crawl/dat/clua/kills.lua
share/crawl/dat/clua/runrest.lua
share/crawl/dat/clua/stash.lua
share/crawl/dat/clua/trapwalk.lua
share/crawl/dat/clua/wield.lua
share/crawl/dat/database/
share/crawl/dat/database/FAQ.txt
share/crawl/dat/database/el/
share/crawl/dat/database/el/monflee.txt
share/crawl/dat/database/el/rand_all.txt
share/crawl/dat/database/godname.txt
share/crawl/dat/database/godspeak.txt
share/crawl/dat/database/help.txt
share/crawl/dat/database/insult.txt
@ -13,7 +25,9 @@ share/crawl/dat/database/monflee.txt
share/crawl/dat/database/monname.txt
share/crawl/dat/database/monspeak.txt
share/crawl/dat/database/monspell.txt
share/crawl/dat/database/quotes.txt
share/crawl/dat/database/pl/
share/crawl/dat/database/pl/godspeak.txt
share/crawl/dat/database/pl/miscname.txt
share/crawl/dat/database/rand_all.txt
share/crawl/dat/database/rand_arm.txt
share/crawl/dat/database/rand_wpn.txt
@ -21,7 +35,28 @@ share/crawl/dat/database/randbook.txt
share/crawl/dat/database/randname.txt
share/crawl/dat/database/shout.txt
share/crawl/dat/database/wpnnoise.txt
share/crawl/dat/defaults/
share/crawl/dat/defaults/autopickup_exceptions.txt
share/crawl/dat/defaults/food_colouring.txt
share/crawl/dat/defaults/menu_colours.txt
share/crawl/dat/defaults/messages.txt
share/crawl/dat/defaults/misc.txt
share/crawl/dat/defaults/runrest_messages.txt
share/crawl/dat/defaults/standard_colours.txt
share/crawl/dat/des/
share/crawl/dat/des/altar/
share/crawl/dat/des/altar/altar.des
share/crawl/dat/des/altar/fedhas_garden.des
share/crawl/dat/des/altar/grunt_ashenzari_visionary.des
share/crawl/dat/des/altar/grunt_nemelex_the_gamble.des
share/crawl/dat/des/altar/kiku_cage.des
share/crawl/dat/des/altar/lugonu_bribe.des
share/crawl/dat/des/altar/overflow.des
share/crawl/dat/des/altar/trog_burn_book.des
share/crawl/dat/des/altar/trog_wizard.des
share/crawl/dat/des/altar/vehumet_trees.des
share/crawl/dat/des/altar/xom_monty_hall.des
share/crawl/dat/des/altar/yredelemnul_ordeal.des
share/crawl/dat/des/branches/
share/crawl/dat/des/branches/abyss.des
share/crawl/dat/des/branches/blade.des
@ -29,13 +64,13 @@ share/crawl/dat/des/branches/crypt.des
share/crawl/dat/des/branches/dwarf.des
share/crawl/dat/des/branches/elf.des
share/crawl/dat/des/branches/hells.des
share/crawl/dat/des/branches/hive.des
share/crawl/dat/des/branches/lair.des
share/crawl/dat/des/branches/orc.des
share/crawl/dat/des/branches/pan.des
share/crawl/dat/des/branches/shoals.des
share/crawl/dat/des/branches/slime.des
share/crawl/dat/des/branches/snake.des
share/crawl/dat/des/branches/spider.des
share/crawl/dat/des/branches/swamp.des
share/crawl/dat/des/branches/temple.des
share/crawl/dat/des/branches/tomb.des
@ -43,15 +78,16 @@ share/crawl/dat/des/branches/vaults.des
share/crawl/dat/des/branches/zot.des
share/crawl/dat/des/builder/
share/crawl/dat/des/builder/arena.des
share/crawl/dat/des/builder/didact.des
share/crawl/dat/des/builder/dummy.des
share/crawl/dat/des/builder/food.des
share/crawl/dat/des/builder/layout.des
share/crawl/dat/des/builder/layout_loops.des
share/crawl/dat/des/builder/rooms.des
share/crawl/dat/des/builder/shops.des
share/crawl/dat/des/builder/uniques.des
share/crawl/dat/des/entry/
share/crawl/dat/des/entry/entry_guide.txt
share/crawl/dat/des/entry/entry_large.des
share/crawl/dat/des/entry/large.des
share/crawl/dat/des/entry/simple.des
share/crawl/dat/des/entry/small.des
share/crawl/dat/des/entry/twisted.des
@ -63,30 +99,40 @@ share/crawl/dat/des/portals/icecave.des
share/crawl/dat/des/portals/lab.des
share/crawl/dat/des/portals/ossuary.des
share/crawl/dat/des/portals/sewer.des
share/crawl/dat/des/portals/spider.des
share/crawl/dat/des/portals/trove.des
share/crawl/dat/des/portals/volcano.des
share/crawl/dat/des/portals/wizlab.des
share/crawl/dat/des/portals/ziggurat.des
share/crawl/dat/des/serial/
share/crawl/dat/des/serial/aquarium.des
share/crawl/dat/des/serial/bayou.des
share/crawl/dat/des/serial/column_ruins.des
share/crawl/dat/des/serial/corridors.des
share/crawl/dat/des/serial/curves.des
share/crawl/dat/des/serial/forest.des
share/crawl/dat/des/serial/glass.des
share/crawl/dat/des/serial/gnoll_camp.des
share/crawl/dat/des/serial/ice.des
share/crawl/dat/des/serial/magic_research.des
share/crawl/dat/des/serial/ponds.des
share/crawl/dat/des/serial/serial_guide.txt
share/crawl/dat/des/serial/undead.des
share/crawl/dat/des/serial/window.des
share/crawl/dat/des/sprint/
share/crawl/dat/des/sprint/sprint.des
share/crawl/dat/des/sprint/sprint2.des
share/crawl/dat/des/sprint/menkaure.des
share/crawl/dat/des/sprint/red_sonja.des
share/crawl/dat/des/sprint/sprint_fedhas.des
share/crawl/dat/des/sprint/sprint_mu.des
share/crawl/dat/des/sprint/zigsprint.des
share/crawl/dat/des/test.des
share/crawl/dat/des/traps/
share/crawl/dat/des/traps/beogh_trap.des
share/crawl/dat/des/traps/boulders.des
share/crawl/dat/des/traps/cloud_traps.des
share/crawl/dat/des/traps/collapsing_statue.des
share/crawl/dat/des/traps/grate.des
share/crawl/dat/des/traps/monster_doors.des
share/crawl/dat/des/traps/rats_trap.des
share/crawl/dat/des/traps/spider_basket.des
share/crawl/dat/des/traps/xom_trap.des
share/crawl/dat/des/tutorial/
@ -96,13 +142,20 @@ share/crawl/dat/des/tutorial/tutorial_lesson3.des
share/crawl/dat/des/tutorial/tutorial_lesson4.des
share/crawl/dat/des/tutorial/tutorial_lesson5.des
share/crawl/dat/des/variable/
share/crawl/dat/des/variable/altar.des
share/crawl/dat/des/variable/ancient_champions.des
share/crawl/dat/des/variable/cathedral_bats.des
share/crawl/dat/des/variable/dk_crumbling.des
share/crawl/dat/des/variable/encompass.des
share/crawl/dat/des/variable/evilmike_ambush.des
share/crawl/dat/des/variable/float.des
share/crawl/dat/des/variable/large.des
share/crawl/dat/des/variable/large_lemuel_castle.des
share/crawl/dat/des/variable/grunt_fire_pits.des
share/crawl/dat/des/variable/large_abstract.des
share/crawl/dat/des/variable/large_themed.des
share/crawl/dat/des/variable/lemuel_castle.des
share/crawl/dat/des/variable/mini.des
share/crawl/dat/des/variable/mini_features.des
share/crawl/dat/des/variable/mini_monsters.des
share/crawl/dat/des/variable/tomb_raider.des
share/crawl/dat/des/zotdef/
share/crawl/dat/des/zotdef/zotdef.des
share/crawl/dat/descript/
@ -111,14 +164,177 @@ share/crawl/dat/descript/backgrounds.txt
share/crawl/dat/descript/branches.txt
share/crawl/dat/descript/cards.txt
share/crawl/dat/descript/commands.txt
share/crawl/dat/descript/cs/
share/crawl/dat/descript/cs/ability.txt
share/crawl/dat/descript/cs/branches.txt
share/crawl/dat/descript/cs/commands.txt
share/crawl/dat/descript/cs/features.txt
share/crawl/dat/descript/cs/gods.txt
share/crawl/dat/descript/cs/items.txt
share/crawl/dat/descript/cs/species.txt
share/crawl/dat/descript/cs/spells.txt
share/crawl/dat/descript/cs/unident.txt
share/crawl/dat/descript/da/
share/crawl/dat/descript/da/items.txt
share/crawl/dat/descript/da/monsters.txt
share/crawl/dat/descript/da/species.txt
share/crawl/dat/descript/da/unident.txt
share/crawl/dat/descript/de/
share/crawl/dat/descript/de/backgrounds.txt
share/crawl/dat/descript/de/commands.txt
share/crawl/dat/descript/de/features.txt
share/crawl/dat/descript/de/gods.txt
share/crawl/dat/descript/de/items.txt
share/crawl/dat/descript/de/monsters.txt
share/crawl/dat/descript/de/species.txt
share/crawl/dat/descript/de/unident.txt
share/crawl/dat/descript/de/unrand.txt
share/crawl/dat/descript/el/
share/crawl/dat/descript/el/ability.txt
share/crawl/dat/descript/el/backgrounds.txt
share/crawl/dat/descript/el/gods.txt
share/crawl/dat/descript/el/items.txt
share/crawl/dat/descript/el/species.txt
share/crawl/dat/descript/el/unident.txt
share/crawl/dat/descript/es/
share/crawl/dat/descript/es/ability.txt
share/crawl/dat/descript/es/backgrounds.txt
share/crawl/dat/descript/es/branches.txt
share/crawl/dat/descript/es/cards.txt
share/crawl/dat/descript/es/commands.txt
share/crawl/dat/descript/es/features.txt
share/crawl/dat/descript/es/gods.txt
share/crawl/dat/descript/es/items.txt
share/crawl/dat/descript/es/monsters.txt
share/crawl/dat/descript/es/quotes.txt
share/crawl/dat/descript/es/skills.txt
share/crawl/dat/descript/es/species.txt
share/crawl/dat/descript/es/unident.txt
share/crawl/dat/descript/es/unrand.txt
share/crawl/dat/descript/features.txt
share/crawl/dat/descript/fi/
share/crawl/dat/descript/fi/ability.txt
share/crawl/dat/descript/fi/backgrounds.txt
share/crawl/dat/descript/fi/cards.txt
share/crawl/dat/descript/fi/commands.txt
share/crawl/dat/descript/fi/features.txt
share/crawl/dat/descript/fi/items.txt
share/crawl/dat/descript/fi/monsters.txt
share/crawl/dat/descript/fi/quotes.txt
share/crawl/dat/descript/fi/species.txt
share/crawl/dat/descript/fi/spells.txt
share/crawl/dat/descript/fi/unident.txt
share/crawl/dat/descript/fi/unrand.txt
share/crawl/dat/descript/fr/
share/crawl/dat/descript/fr/ability.txt
share/crawl/dat/descript/fr/backgrounds.txt
share/crawl/dat/descript/fr/branches.txt
share/crawl/dat/descript/fr/cards.txt
share/crawl/dat/descript/fr/commands.txt
share/crawl/dat/descript/fr/features.txt
share/crawl/dat/descript/fr/gods.txt
share/crawl/dat/descript/fr/items.txt
share/crawl/dat/descript/fr/monsters.txt
share/crawl/dat/descript/fr/quotes.txt
share/crawl/dat/descript/fr/skills.txt
share/crawl/dat/descript/fr/species.txt
share/crawl/dat/descript/fr/spells.txt
share/crawl/dat/descript/fr/unident.txt
share/crawl/dat/descript/fr/unrand.txt
share/crawl/dat/descript/gods.txt
share/crawl/dat/descript/hints.txt
share/crawl/dat/descript/hu/
share/crawl/dat/descript/hu/species.txt
share/crawl/dat/descript/it/
share/crawl/dat/descript/it/backgrounds.txt
share/crawl/dat/descript/it/gods.txt
share/crawl/dat/descript/it/skills.txt
share/crawl/dat/descript/it/species.txt
share/crawl/dat/descript/items.txt
share/crawl/dat/descript/ko/
share/crawl/dat/descript/ko/ability.txt
share/crawl/dat/descript/ko/backgrounds.txt
share/crawl/dat/descript/ko/branches.txt
share/crawl/dat/descript/ko/cards.txt
share/crawl/dat/descript/ko/commands.txt
share/crawl/dat/descript/ko/features.txt
share/crawl/dat/descript/ko/gods.txt
share/crawl/dat/descript/ko/items.txt
share/crawl/dat/descript/ko/monsters.txt
share/crawl/dat/descript/ko/quotes.txt
share/crawl/dat/descript/ko/skills.txt
share/crawl/dat/descript/ko/species.txt
share/crawl/dat/descript/ko/spells.txt
share/crawl/dat/descript/ko/unident.txt
share/crawl/dat/descript/ko/unrand.txt
share/crawl/dat/descript/lt/
share/crawl/dat/descript/lt/backgrounds.txt
share/crawl/dat/descript/lt/branches.txt
share/crawl/dat/descript/lt/commands.txt
share/crawl/dat/descript/lt/monsters.txt
share/crawl/dat/descript/lt/skills.txt
share/crawl/dat/descript/lt/species.txt
share/crawl/dat/descript/lt/unident.txt
share/crawl/dat/descript/lv/
share/crawl/dat/descript/lv/backgrounds.txt
share/crawl/dat/descript/lv/cards.txt
share/crawl/dat/descript/lv/commands.txt
share/crawl/dat/descript/lv/gods.txt
share/crawl/dat/descript/lv/items.txt
share/crawl/dat/descript/lv/monsters.txt
share/crawl/dat/descript/lv/skills.txt
share/crawl/dat/descript/lv/spells.txt
share/crawl/dat/descript/lv/unrand.txt
share/crawl/dat/descript/monsters.txt
share/crawl/dat/descript/pl/
share/crawl/dat/descript/pl/backgrounds.txt
share/crawl/dat/descript/pl/items.txt
share/crawl/dat/descript/pl/quotes.txt
share/crawl/dat/descript/pl/species.txt
share/crawl/dat/descript/pl/spells.txt
share/crawl/dat/descript/pl/tutorial.txt
share/crawl/dat/descript/pl/unident.txt
share/crawl/dat/descript/pl/unrand.txt
share/crawl/dat/descript/pt/
share/crawl/dat/descript/pt/commands.txt
share/crawl/dat/descript/pt/gods.txt
share/crawl/dat/descript/pt/items.txt
share/crawl/dat/descript/pt/unident.txt
share/crawl/dat/descript/quotes.txt
share/crawl/dat/descript/ru/
share/crawl/dat/descript/ru/ability.txt
share/crawl/dat/descript/ru/backgrounds.txt
share/crawl/dat/descript/ru/branches.txt
share/crawl/dat/descript/ru/cards.txt
share/crawl/dat/descript/ru/commands.txt
share/crawl/dat/descript/ru/features.txt
share/crawl/dat/descript/ru/gods.txt
share/crawl/dat/descript/ru/items.txt
share/crawl/dat/descript/ru/monsters.txt
share/crawl/dat/descript/ru/quotes.txt
share/crawl/dat/descript/ru/skills.txt
share/crawl/dat/descript/ru/species.txt
share/crawl/dat/descript/ru/unident.txt
share/crawl/dat/descript/ru/unrand.txt
share/crawl/dat/descript/skills.txt
share/crawl/dat/descript/species.txt
share/crawl/dat/descript/spells.txt
share/crawl/dat/descript/tutorial.txt
share/crawl/dat/descript/unident.txt
share/crawl/dat/descript/unrand.txt
share/crawl/dat/descript/zh/
share/crawl/dat/descript/zh/ability.txt
share/crawl/dat/descript/zh/backgrounds.txt
share/crawl/dat/descript/zh/branches.txt
share/crawl/dat/descript/zh/cards.txt
share/crawl/dat/descript/zh/commands.txt
share/crawl/dat/descript/zh/features.txt
share/crawl/dat/descript/zh/gods.txt
share/crawl/dat/descript/zh/items.txt
share/crawl/dat/descript/zh/monsters.txt
share/crawl/dat/descript/zh/skills.txt
share/crawl/dat/descript/zh/species.txt
share/crawl/dat/descript/zh/unident.txt
share/crawl/dat/dlua/
share/crawl/dat/dlua/debug.lua
share/crawl/dat/dlua/dungeon.lua
@ -148,6 +364,7 @@ share/crawl/dat/dlua/point.lua
share/crawl/dat/dlua/sanity.lua
share/crawl/dat/dlua/sprint.lua
share/crawl/dat/dlua/stress.lua
share/crawl/dat/dlua/tags.lua
share/crawl/dat/dlua/test.lua
share/crawl/dat/dlua/tutorial.lua
share/crawl/dat/dlua/userbase.lua
@ -163,6 +380,7 @@ share/crawl/dat/lua/trapwalk.lua
share/crawl/dat/lua/wield.lua
share/crawl/docs/
@comment share/crawl/docs/034_changes.txt
share/crawl/docs/CREDITS.txt
share/crawl/docs/README.txt
share/crawl/docs/aptitudes.txt
share/crawl/docs/arena.txt
@ -171,12 +389,14 @@ share/crawl/docs/crawl_manual.txt
@comment share/crawl/docs/develop/
@comment share/crawl/docs/develop/IRC.txt
@comment share/crawl/docs/develop/coding_conventions.txt
@comment share/crawl/docs/develop/gdb_tips.txt
@comment share/crawl/docs/develop/levels/
@comment share/crawl/docs/develop/levels/advanced.txt
@comment share/crawl/docs/develop/levels/introduction.txt
@comment share/crawl/docs/develop/levels/syntax.txt
@comment share/crawl/docs/develop/levels/triggerables.txt
@comment share/crawl/docs/develop/monster_speech.txt
@comment share/crawl/docs/develop/new_dev_checklist.txt
@comment share/crawl/docs/develop/patch_guide.txt
@comment share/crawl/docs/develop/process.txt
@comment share/crawl/docs/develop/release.txt
@ -184,20 +404,23 @@ share/crawl/docs/crawl_manual.txt
@comment share/crawl/docs/develop/spells.txt
@comment share/crawl/docs/develop/testing.txt
@comment share/crawl/docs/develop/tiles_creation.txt
share/crawl/docs/fight_simulator.txt
@comment share/crawl/docs/key_changes.txt
share/crawl/docs/keybind.txt
@comment share/crawl/docs/license/mt19937.txt
@comment share/crawl/docs/license/
@comment share/crawl/docs/license/lgpl.txt
@comment share/crawl/docs/license/libpng-LICENSE.txt
@comment share/crawl/docs/license/lualicense.txt
@comment share/crawl/docs/license/mt19937.txt
@comment share/crawl/docs/license/pcre_license.txt
share/crawl/docs/macros_guide.txt
share/crawl/docs/options_guide.txt
share/crawl/docs/quickstart.txt
@comment share/crawl/docs/ssh_guide.txt
share/crawl/docs/tiles_help.txt
share/crawl/docs/translation.txt
share/crawl/settings/
share/crawl/settings/0.9_monster_glyphs.txt
share/crawl/settings/034_command_keys.txt
share/crawl/settings/034_monster_glyphs.txt
share/crawl/settings/052_monster_glyphs.txt
@ -206,7 +429,6 @@ share/crawl/settings/071_monster_glyphs.txt
share/crawl/settings/080_monster_glyphs.txt
share/crawl/settings/advanced_optioneering.txt
share/crawl/settings/autopickup_exceptions.txt
share/crawl/settings/dolls.txt
share/crawl/settings/dvorak_command_keys.txt
share/crawl/settings/food_colouring.txt
share/crawl/settings/init.txt