ports/146332: [patch] [update] games/wesnoth from 1.6.5 to 1.8.1

paul tacid at tacid.kiev.ua
Wed May 5 15:20:03 UTC 2010


>Number:         146332
>Category:       ports
>Synopsis:       [patch] [update] games/wesnoth from 1.6.5 to 1.8.1
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed May 05 15:20:02 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     paul
>Release:        8.0-RELEASE
>Organization:
>Environment:
FreeBSD host 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #0: Tue Jan  5 16:02:27 UTC 2010     root at i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC  i386
>Description:
Update games/wesnoth to new stable version
>How-To-Repeat:

>Fix:
cd /usr/ports && patch -p0 < /path/to/patch.txt

Patch attached with submission follows:

diff -ruN games/wesnoth.orig/Makefile games/wesnoth/Makefile
--- games/wesnoth.orig/Makefile	2010-04-26 16:03:06.000000000 +0300
+++ games/wesnoth/Makefile	2010-05-05 17:05:26.000000000 +0300
@@ -1,30 +1,31 @@
-# New ports collection makefile for:	wesnoth
-# Date created:			22 December 2003
-# Whom:				Mezz <mezz7 at cox.net>
+# New ports collection makefile for:	wesnoth-devel
+# Date created:			7 September 2008
+# Whom:				Philip Paeps <philip at FreeBSD.org>
 #
-# $FreeBSD: ports/games/wesnoth/Makefile,v 1.79 2010/03/30 13:26:13 dinoex Exp $
+# $FreeBSD: ports/games/wesnoth-devel/Makefile,v 1.85 2010/05/02 11:02:20 philip Exp $
 #
 
 PORTNAME=	wesnoth
-PORTVERSION=	1.6.5
-PORTREVISION=	3
+PORTVERSION=	1.8.1
 CATEGORIES=	games
-MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-1.6/${PORTNAME}-${PORTVERSION} \
-		http://www.wesnoth.org/files/
+MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTNAME}-${PORTVERSION} \
+		http://files.wesnoth.org/
 
 MAINTAINER=	philip at FreeBSD.org
 COMMENT=	A fantasy turn-based strategy game
 
 LIB_DEPENDS=	boost_thread.4:${PORTSDIR}/devel/boost-libs
 
-CONFLICTS=	wesnoth-devel-[0-9]*
+CONFLICTS=	wesnoth-[0-9]*
 
+USE_GCC=	4.2+
 USE_SDL=	image mixer net ttf
 USE_GNOME=	desktopfileutils gnometarget pango
 USE_GMAKE=	yes
 MAKE_JOBS_SAFE=	yes
 WANT_GNOME=	yes
 USE_BZIP2=	yes
+USE_LUA=	5.1
 USE_AUTOTOOLS=	aclocal:110 autoheader:262 automake:110 autoconf:262
 ACLOCAL_ARGS=	-Im4
 AUTOMAKE_ARGS=	--add-missing --copy
@@ -34,21 +35,36 @@
 		--with-libintl-prefix=${LOCALBASE} \
 		--with-localedir=${PREFIX}/share/locale
 
-MANLANG_GAME=	gl sk
-MANLANG=	"" cs de en_GB es et fi fr hu it lt pl sr sr at latin sv tr \
-		zh_CN zh_TW
+MANLANG_GAME=	gl zh_TW
+MANLANG=	"" cs de en_GB es et fi fr hu it ja lt pl pt_BR sk \
+		sr sr at ijekavian sr at ijekavianlatin sr at latin tr zh_CN
 
 MAN6=		wesnoth.6
 
-OPTIONS=	CAMPAIGN "Enable campaign server"	On \
+PORTDOCS=	*
+PORTDATA=	*
+
+OPTIONS=	BWMON	 "Enable bandwidth monitoring for server" Off \
+		CAMPAIGN "Enable campaign server"	On \
 		EDITOR	 "Enable map editor"		On \
 		FRIBIDI	 "Enable bidirectional support"	On \
+		LOWMEM	 "Reduce memory usage (disables animations)" Off \
 		NLS	 "Enable localization"		On \
+		NOTIFY	 "Enable desktop notifications"	On \
+		POOLALLOC "Use wesnoth own memory allocator" Off \
+		PYTHON	 "Enable python developer tools" On \
+		RAWSOCKETS "Use raw receiving sockets in multiplayer" Off \
 		SERVER	 "Enable server"		On \
+		TESTS	 "Enable unit tests"		Off \
+		TINYGUI	 "Enable tiny gui (down to 320x200)" Off \
 		TOOLS	 "Enable extra tools for artists and translators" On
 
 .include <bsd.port.pre.mk>
 
+.if ${OSVERSION} < 700000
+BROKEN=		does not compile
+.endif
+
 # workaround: compress and add to plist disobedient man pages
 .for manlang in ${MANLANG_GAME}
 MAN6_${manlang:U}=	wesnoth.6
@@ -64,12 +80,23 @@
 CONFIGURE_ARGS+=	--enable-debug
 .endif
 
+.if defined(WITH_PROFILE)
+CONFIGURE_ARGS+=	--enable-profile
+.endif
+
 # XXX: breaks compilation because of -Werror
 .if !defined(WITH_STRICT)
 CONFIGURE_ARGS+=	--disable-strict-compilation
 .endif
 
+.if defined(WITHOUT_BWMON)
+CONFIGURE_ARGS+=	--disable-bandwidth-monitor
+.else
+CONFIGURE_ARGS+=	--enable-bandwidth-monitor
+.endif
+
 .if defined(WITHOUT_CAMPAIGN)
+CONFIGURE_ARGS+=	--disable-campaign-server
 PLIST_SUB+=		CAMPAIGN="@comment "
 .else
 CONFIGURE_ARGS+=	--enable-campaign-server
@@ -77,27 +104,68 @@
 .endif
 
 .if defined(WITHOUT_EDITOR)
-PLIST_SUB+=		EDITOR="@comment "
 CONFIGURE_ARGS+=	--disable-editor
+PLIST_SUB+=		EDITOR="@comment "
 .else
+CONFIGURE_ARGS+=	--enable-editor
 PLIST_SUB+=		EDITOR=""
 .endif
 
 .if defined(WITHOUT_FRIBIDI)
 CONFIGURE_ARGS+=	--without-fribidi
 .else
+CONFIGURE_ARGS+=	--with-fribidi
 LIB_DEPENDS+=		fribidi.3:${PORTSDIR}/converters/fribidi
 .endif
 
+.if defined(WITHOUT_LOWMEM)
+CONFIGURE_ARGS+=	--disable-lowmem
+.else
+CONFIGURE_ARGS+=	--enable-lowmem
+.endif
+
+.if defined(WITHOUT_NOTIFY)
+CONFIGURE_ARGS+=	--disable-notifications
+.else
+CONFIGURE_ARGS+=	--enable-notifications --enable-dbus
+LIB_DEPENDS+=		dbus-1.3:${PORTSDIR}/devel/dbus
+.endif
+
 .if defined(WITHOUT_NLS)
 CONFIGURE_ARGS+=	--disable-nls
 PLIST_SUB+=		NLS="@comment "
 .else
 USE_GETTEXT=		yes
+CONFIGURE_ARGS+=	--enable-nls
 PLIST_SUB+=		NLS=""
 .endif
 
+.if defined(WITHOUT_POOLALLOC)
+CONFIGURE_ARGS+=	--disable-pool-alloc
+.else
+CONFIGURE_ARGS+=	--enable-pool-alloc
+.endif
+
+.if defined(WITHOUT_PYTHON)
+CONFIGURE_ARGS+=	--disable-python-install
+PLIST_SUB+=		PYTHON="@comment "
+.else
+USE_PYTHON=		yes
+CONFIGURE_ENV+=		PYTHON_PREFIX=${PREFIX} \
+			PYTHON_VERSION=${PYTHON_VERSION:S/python//}
+CONFIGURE_ARGS+=	--enable-python-install
+PLIST_SUB+=		PYTHON=""
+.include "${PORTSDIR}/Mk/bsd.python.mk"
+.endif
+
+.if defined(WITHOUT_RAWSOCKETS)
+CONFIGURE_ARGS+=	--disable-raw-sockets
+.else
+CONFIGURE_ARGS+=	--enable-raw-sockets
+.endif
+
 .if defined(WITHOUT_SERVER)
+CONFIGURE_ARGS+=	--disable-server
 PLIST_SUB+=		SERVER="@comment "
 .else
 CONFIGURE_ARGS+=	--enable-server
@@ -105,7 +173,23 @@
 PLIST_SUB+=		SERVER=""
 .endif
 
+.if defined(WITHOUT_TESTS)
+CONFIGURE_ARGS+=	--disable-tests
+PLIST_SUB+=		TESTS="@comment "
+.else
+CONFIGURE_ARGS+=	--enable-tests
+PLIST_SUB+=		TESTS=""
+.endif
+
+.if defined(WITHOUT_TINYGUI)
+CONFIGURE_ARGS+=	--disable-tinygui
+.else
+BUILD_DEPENDS+=		convert:${PORTSDIR}/graphics/ImageMagick
+CONFIGURE_ARGS+=	--enable-tinygui
+.endif
+
 .if defined(WITHOUT_TOOLS)
+CONFIGURE_ARGS+=	--disable-tools
 PLIST_SUB+=		TOOLS="@comment "
 .else
 CONFIGURE_ARGS+=	--enable-tools
@@ -116,8 +200,11 @@
 BROKEN=		you need NLS support for `campaignd' or `wesnothd' or tools to link against gettext
 .endif
 
+.if defined(NOPORTDOCS) || defined(NOPORTDATA)
+BROKEN=		NOPORT(DOCS|DATA) is not supported
+.endif
+
 post-patch:
-	${REINPLACE_CMD} -e 's|libpng12|libpng14|g' ${WRKSRC}/configure
 	${REINPLACE_CMD} -e 's|png_voidp_NULL|NULL|g' \
 		-e 's|png_error_ptr_NULL|NULL|g' \
 		${WRKSRC}/src/tools/exploder_utils.cpp
diff -ruN games/wesnoth.orig/distinfo games/wesnoth/distinfo
--- games/wesnoth.orig/distinfo	2010-04-26 16:03:06.000000000 +0300
+++ games/wesnoth/distinfo	2010-05-05 17:12:07.000000000 +0300
@@ -1,3 +1,3 @@
-MD5 (wesnoth-1.6.5.tar.bz2) = 493826bbd9ba355930765a7e8fe3749a
-SHA256 (wesnoth-1.6.5.tar.bz2) = 7ef047ae364278a5bf9bdc69228f77d825f793f1c4d9adae8b47f0882e7f30d7
-SIZE (wesnoth-1.6.5.tar.bz2) = 230239169
+MD5 (wesnoth-1.8.1.tar.bz2) = 3d008b0eac291c761a1d27d05651f25f
+SHA256 (wesnoth-1.8.1.tar.bz2) = 7c48ecf11a8789689509ea545e2e63ba75dfc765988b1d08b49c6badf19de24d
+SIZE (wesnoth-1.8.1.tar.bz2) = 288248141
diff -ruN games/wesnoth.orig/files/patch-Makefile.am games/wesnoth/files/patch-Makefile.am
--- games/wesnoth.orig/files/patch-Makefile.am	2010-04-26 16:03:06.000000000 +0300
+++ games/wesnoth/files/patch-Makefile.am	1970-01-01 03:00:00.000000000 +0300
@@ -1,11 +0,0 @@
---- Makefile.am~
-+++ Makefile.am
-@@ -5,7 +5,7 @@ pkgdatadir=$(datadir)/@DATADIR@
- bin_SCRIPTS =
- 
- # Ignore junk -- object files, editor backup files, wmllint backup files.
--findfilterflags=! \( -name .svn -prune -o -name ".\#*" -o -name "*~" -o -name "*bak" -o -name 'Makefile' -o -name '*Makefile' -o -type d -o -wholename "data/test/*" \)
-+findfilterflags=! \( -name .svn -prune -o -name ".\#*" -o -name "*~" -o -name "*bak" -o -name 'Makefile' -o -name '*Makefile' -o -type d -o -path "data/test/*" \)
- 
- # List all datafiles, ignoring junk
- finddata=(cd $(top_srcdir) && find data fonts icons images sounds $(findfilterflags) -print )
diff -ruN games/wesnoth.orig/files/patch-configure.ac games/wesnoth/files/patch-configure.ac
--- games/wesnoth.orig/files/patch-configure.ac	2010-04-26 16:03:06.000000000 +0300
+++ games/wesnoth/files/patch-configure.ac	2010-04-26 16:06:14.000000000 +0300
@@ -9,48 +9,3 @@
  test_build=yes
  if test $svn_in_version = 0 
  then
-Index: configure.ac
-===================================================================
---- configure.ac	(revision 36766)
-+++ configure.ac	(revision 37394)
-@@ -416,21 +416,27 @@
- 
- # fribidi-config
- 
--AC_PATH_PROGS([FRIBIDI_CONFIG], [fribidi-config], [none])
--
--if test "x$FRIBIDI_CONFIG" = "xnone"; then
--    fribidifound=no
--    AC_MSG_WARN([*** FRIBIDI not found.])
--else
--    fribidifound=yes
--    FRIBIDI_CFLAGS=`$FRIBIDI_CONFIG --cflags`
--    FRIBIDI_LIBS=`$FRIBIDI_CONFIG --libs`
-+if test "x$fribidi" != "xno"; then
-+	PKG_CHECK_MODULES([FRIBIDI2], [fribidi >= 0.19.0],
-+		[
-+			fribidifound=yes
-+		],
-+		[
-+			AC_MSG_RESULT(no)
-+			PKG_CHECK_MODULES([FRIBIDI], [fribidi],
-+				[
-+					fribidifound=yes
-+					oldfribidi=yes
-+				],
-+				[
-+					fribidifound=no
-+					AC_MSG_RESULT(no)
-+				])
-+		])
-+	AM_CONDITIONAL([FRIBIDI], [test "x$fribidifound" = xyes])
-+	AM_CONDITIONAL([OLD_FRIBIDI], [test "x$oldfribidi" = xyes])
- fi
- 
--AC_SUBST([FRIBIDI_CFLAGS])
--AC_SUBST([FRIBIDI_LIBS])
--AM_CONDITIONAL([FRIBIDI], [test "x$fribidifound" = xyes -a "x$fribidi" = xyes ])
--
- # python
- AC_PATH_PROG(PYTHON, python, none)
- AC_SUBST(pkgpythondir)
diff -ruN games/wesnoth.orig/files/patch-multiplayer_connect.cpp games/wesnoth/files/patch-multiplayer_connect.cpp
--- games/wesnoth.orig/files/patch-multiplayer_connect.cpp	2010-04-26 16:03:06.000000000 +0300
+++ games/wesnoth/files/patch-multiplayer_connect.cpp	1970-01-01 03:00:00.000000000 +0300
@@ -1,11 +0,0 @@
---- src/multiplayer_connect.cpp.orig	2008-09-07 18:16:37.000000000 -0700
-+++ src/multiplayer_connect.cpp	2008-09-07 18:17:40.000000000 -0700
-@@ -642,7 +642,7 @@
- 	res["current_player"] = id_.empty() ? current_player_ : id_;
- 
- 	if (id_.empty()) {
--		char const *description;
-+		char const *description = NULL;
- 		switch(controller_) {
- 		case CNTR_NETWORK:
- 			description = N_("(Vacant slot)");
diff -ruN games/wesnoth.orig/files/patch-src-Makefile.am games/wesnoth/files/patch-src-Makefile.am
--- games/wesnoth.orig/files/patch-src-Makefile.am	2010-04-26 16:03:06.000000000 +0300
+++ games/wesnoth/files/patch-src-Makefile.am	2010-04-26 16:06:14.000000000 +0300
@@ -1,34 +1,31 @@
 --- src/Makefile.am~
 +++ src/Makefile.am
-@@ -400,7 +400,7 @@ game_config.o: revision.hpp 
- REVISION = $(shell LC_ALL=C svnversion -n $(topdir) 2>/dev/null)
- .PRECIOUS: revision.hpp
- revision.hpp: FORCE
--	if [ "$(REVISION)" == "" ] || [ "$(REVISION)" == "exported" ]; then echo '' >/tmp/westemp$$$$; \
-+	if [ "$(REVISION)" = "" ] || [ "$(REVISION)" = "exported" ]; then echo '' >/tmp/westemp$$$$; \
- 	else echo '#define REVISION    "$(REVISION)"' >/tmp/westemp$$$$; fi;\
- 	if cmp -s revision.hpp /tmp/westemp$$$$ 2>/dev/null; then :; else cp /tmp/westemp$$$$ revision.hpp; fi; \
- 	if [ -e /tmp/westemp$$$$ ]; then rm /tmp/westemp$$$$; fi
-Index: src/Makefile.am
-===================================================================
---- src/Makefile.am	(revision 37393)
-+++ src/Makefile.am	(revision 37394)
-@@ -485,10 +485,16 @@
- 	-DLOCALEDIR=\"$(LOCALEDIR)\" -DHAS_RELATIVE_LOCALEDIR=$(HAS_RELATIVE_LOCALEDIR)
+@@ -16,7 +16,7 @@ bin_PROGRAMS += campaignd
+ endif
  
- if FRIBIDI
--    AM_CXXFLAGS += -DHAVE_FRIBIDI @FRIBIDI_CFLAGS@
--    AM_CFLAGS += -DHAVE_FRIBIDI @FRIBIDI_CFLAGS@
-+if OLD_FRIBIDI
-+    CXXFLAGS += -DOLD_FRIBIDI @FRIBIDI_CFLAGS@
-+    CFLAGS += -DOLD_FRIBIDI @FRIBIDI_CFLAGS@
-     THELIBS += @FRIBIDI_LIBS@
-+else
-+    CXXFLAGS += -DHAVE_FRIBIDI @FRIBIDI2_CFLAGS@
-+    CFLAGS += -DHAVE_FRIBIDI @FRIBIDI2_CFLAGS@
-+    THELIBS += @FRIBIDI2_LIBS@
+ if TESTS
+-bin_PROGRAMS += test
++bin_PROGRAMS += wesnoth_test
  endif
-+endif
  
- if X11
-     CXXFLAGS += -D_X11 @X_CFLAGS@
+ CLEANFILES = revision.hpp
+@@ -342,7 +342,7 @@ cutter_DEPENDENCIES=libwesnoth-core.a
+ #    Unit tests                                                             #
+ #############################################################################
+ 
+-test_SOURCES =  \
++wesnoth_test_SOURCES =  \
+ 	tests/main.cpp \
+ 	tests/utils/fake_display.cpp \
+ 	tests/utils/fake_event_source.cpp \
+@@ -362,8 +362,8 @@ test_SOURCES =  \
+ 	tests/gui/test_save_dialog.cpp \
+ 	$(wesnoth_source)
+ 
+-test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS)
+-test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a
++wesnoth_test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS)
++wesnoth_test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a
+ 
+ #############################################################################
+ #    Headers                                                                #
diff -ruN games/wesnoth.orig/files/patch-src-font.cpp games/wesnoth/files/patch-src-font.cpp
--- games/wesnoth.orig/files/patch-src-font.cpp	2010-04-26 16:03:06.000000000 +0300
+++ games/wesnoth/files/patch-src-font.cpp	1970-01-01 03:00:00.000000000 +0300
@@ -1,44 +0,0 @@
-Index: src/font.cpp
-===================================================================
---- src/font.cpp	(revision 36766)
-+++ src/font.cpp	(revision 37394)
-@@ -50,10 +50,7 @@
- #define ERR_FT LOG_STREAM(err, log_font)
- 
- #ifdef	HAVE_FRIBIDI
--#include <fribidi/fribidi.h>
--
--#else
--
-+#include <fribidi.h>
- #endif
- 
- namespace {
-@@ -467,16 +464,25 @@
- void text_surface::bidi_cvt()
- {
- 	char		*c_str = const_cast<char *>(str_.c_str());	// fribidi forgot const...
--	int		len = str_.length();
-+	FriBidiStrIndex	len = str_.length();
- 	FriBidiChar	*bidi_logical = new FriBidiChar[len + 2];
- 	FriBidiChar	*bidi_visual = new FriBidiChar[len + 2];
- 	char		*utf8str = new char[4*len + 1];	//assume worst case here (all 4 Byte characters)
- 	FriBidiCharType	base_dir = FRIBIDI_TYPE_ON;
--	int n;
-+	FriBidiStrIndex n;
- 
-+
-+#ifdef	OLD_FRIBIDI
- 	n = fribidi_utf8_to_unicode (c_str, len, bidi_logical);
-+#else
-+	n = fribidi_charset_to_unicode(FRIBIDI_CHAR_SET_UTF8, c_str, len, bidi_logical);
-+#endif
- 	fribidi_log2vis(bidi_logical, n, &base_dir, bidi_visual, NULL, NULL, NULL);
-+#ifdef	OLD_FRIBIDI
- 	fribidi_unicode_to_utf8 (bidi_visual, n, utf8str);
-+#else
-+	fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_UTF8, bidi_visual, n, utf8str);
-+#endif
- 	is_rtl_ = base_dir == FRIBIDI_TYPE_RTL;
- 	str_ = std::string(utf8str);
- 	delete[] bidi_logical;
diff -ruN games/wesnoth.orig/files/patch-window_builder.cpp games/wesnoth/files/patch-window_builder.cpp
--- games/wesnoth.orig/files/patch-window_builder.cpp	2010-04-26 16:03:06.000000000 +0300
+++ games/wesnoth/files/patch-window_builder.cpp	1970-01-01 03:00:00.000000000 +0300
@@ -1,13 +0,0 @@
---- src/gui/widgets/window_builder.cpp.orig	2008-11-02 17:31:45.000000000 +0100
-+++ src/gui/widgets/window_builder.cpp	2008-11-02 17:32:43.000000000 +0100
-@@ -199,6 +199,10 @@
- 		std::cerr << cfg;
- 		assert(false);
- 	}
-+
-+	// Appease the compiler on FreeBSD
-+	// Unreachable
-+	return NULL;
- }
- 
- } // namespace
diff -ruN games/wesnoth.orig/pkg-plist games/wesnoth/pkg-plist
--- games/wesnoth.orig/pkg-plist	2010-04-26 16:03:06.000000000 +0300
+++ games/wesnoth/pkg-plist	2010-05-05 18:11:56.000000000 +0300
@@ -3,71 +3,39 @@
 %%TOOLS%%bin/exploder
 bin/wesnoth
 %%TOOLS%%bin/wesnoth_addon_manager
+%%TESTS%%bin/wesnoth_test
 %%SERVER%%bin/wesnothd
 %%TOOLS%%bin/wmlindent
 %%TOOLS%%bin/wmllint
 %%TOOLS%%bin/wmlscope
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyo
 share/applications/wesnoth.desktop
 %%EDITOR%%share/applications/wesnoth_editor.desktop
 share/pixmaps/wesnoth-icon.png
 %%EDITOR%%share/pixmaps/wesnoth_editor-icon.png
-%%DOCSDIR%%/manual/CMakeLists.txt
-%%DOCSDIR%%/manual/images/de/game-screen-1.5.7.jpg
-%%DOCSDIR%%/manual/images/de/main-menu-1.5.11.jpg
-%%DOCSDIR%%/manual/images/de/multiplayer-1.5.11.jpg
-%%DOCSDIR%%/manual/images/de/recruit-1.5.7.jpg
-%%DOCSDIR%%/manual/images/de/right_pane-1.5.7.jpg
-%%DOCSDIR%%/manual/images/de/top_pane-1.5.7.jpg
-%%DOCSDIR%%/manual/images/es/game-screen-1.5.7.jpg
-%%DOCSDIR%%/manual/images/es/main-menu-1.5.11.jpg
-%%DOCSDIR%%/manual/images/es/multiplayer-1.5.11.jpg
-%%DOCSDIR%%/manual/images/es/recruit-1.5.7.jpg
-%%DOCSDIR%%/manual/images/es/right_pane-1.5.7.jpg
-%%DOCSDIR%%/manual/images/es/top_pane-1.5.7.jpg
-%%DOCSDIR%%/manual/images/game-screen-1.5.7.jpg
-%%DOCSDIR%%/manual/images/hu/game-screen-1.5.7.jpg
-%%DOCSDIR%%/manual/images/hu/main-menu-1.5.11.jpg
-%%DOCSDIR%%/manual/images/hu/multiplayer-1.5.11.jpg
-%%DOCSDIR%%/manual/images/hu/recruit-1.5.7.jpg
-%%DOCSDIR%%/manual/images/hu/right_pane-1.5.7.jpg
-%%DOCSDIR%%/manual/images/hu/top_pane-1.5.7.jpg
-%%DOCSDIR%%/manual/images/main-menu-1.5.11.jpg
-%%DOCSDIR%%/manual/images/multiplayer-1.5.11.jpg
-%%DOCSDIR%%/manual/images/orb-blue.jpg
-%%DOCSDIR%%/manual/images/orb-green.jpg
-%%DOCSDIR%%/manual/images/orb-none.jpg
-%%DOCSDIR%%/manual/images/orb-red.jpg
-%%DOCSDIR%%/manual/images/orb-yellow.jpg
-%%DOCSDIR%%/manual/images/recruit-1.5.7.jpg
-%%DOCSDIR%%/manual/images/right_pane-1.5.7.jpg
-%%DOCSDIR%%/manual/images/top_pane-1.5.7.jpg
-%%DOCSDIR%%/manual/images/tr/game-screen-1.5.7.jpg
-%%DOCSDIR%%/manual/images/tr/main-menu-1.5.11.jpg
-%%DOCSDIR%%/manual/images/tr/multiplayer-1.5.11.jpg
-%%DOCSDIR%%/manual/images/tr/recruit-1.5.7.jpg
-%%DOCSDIR%%/manual/images/tr/right_pane-1.5.7.jpg
-%%DOCSDIR%%/manual/images/tr/top_pane-1.5.7.jpg
-%%DOCSDIR%%/manual/manual.cs.html
-%%DOCSDIR%%/manual/manual.da.html
-%%DOCSDIR%%/manual/manual.de.html
-%%DOCSDIR%%/manual/manual.en.html
-%%DOCSDIR%%/manual/manual.en_GB.html
-%%DOCSDIR%%/manual/manual.es.html
-%%DOCSDIR%%/manual/manual.et.html
-%%DOCSDIR%%/manual/manual.fi.html
-%%DOCSDIR%%/manual/manual.fr.html
-%%DOCSDIR%%/manual/manual.gl.html
-%%DOCSDIR%%/manual/manual.hu.html
-%%DOCSDIR%%/manual/manual.it.html
-%%DOCSDIR%%/manual/manual.pl.html
-%%DOCSDIR%%/manual/manual.pt_BR.html
-%%DOCSDIR%%/manual/manual.ru.html
-%%DOCSDIR%%/manual/manual.sv.html
-%%DOCSDIR%%/manual/manual.tr.html
-%%DOCSDIR%%/manual/manual.txt
-%%DOCSDIR%%/manual/manual.zh_CN.html
-%%DOCSDIR%%/manual/manual.zh_TW.html
-%%DOCSDIR%%/manual/styles/manual.css
 %%DATADIR%%/data/COPYING.txt
 %%DATADIR%%/data/_main.cfg
 %%DATADIR%%/data/ai/formula/level_up_attack_eval.fai
@@ -8349,6 +8317,7 @@
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo
@@ -8371,6 +8340,7 @@
 %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo
@@ -8393,6 +8363,7 @@
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo
@@ -8415,6 +8386,7 @@
 %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
@@ -8437,6 +8409,7 @@
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-httt.mo
@@ -8459,6 +8432,7 @@
 %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo
@@ -8481,6 +8455,7 @@
 %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo
@@ -8503,6 +8478,7 @@
 %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo
@@ -8525,6 +8501,7 @@
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo
@@ -8544,9 +8521,33 @@
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo
@@ -8569,6 +8570,7 @@
 %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo
@@ -8591,6 +8593,7 @@
 %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo
@@ -8613,6 +8616,7 @@
 %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo
@@ -8635,6 +8639,7 @@
 %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo
@@ -8657,6 +8662,7 @@
 %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo
@@ -8679,6 +8685,7 @@
 %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo
@@ -8701,6 +8708,7 @@
 %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo
@@ -8723,6 +8731,7 @@
 %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo
@@ -8745,6 +8754,7 @@
 %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo
@@ -8767,6 +8777,7 @@
 %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo
@@ -8789,6 +8800,7 @@
 %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo
@@ -8811,6 +8823,7 @@
 %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo
@@ -8833,6 +8846,7 @@
 %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo
@@ -8855,6 +8869,7 @@
 %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo
@@ -8877,6 +8892,7 @@
 %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo
@@ -8899,6 +8915,7 @@
 %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo
@@ -8921,6 +8938,7 @@
 %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo
@@ -8943,6 +8961,7 @@
 %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo
@@ -8965,6 +8984,7 @@
 %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo
@@ -8987,6 +9007,7 @@
 %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo
@@ -9009,6 +9030,7 @@
 %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo
@@ -9031,6 +9053,7 @@
 %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo
@@ -9053,6 +9076,7 @@
 %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo
@@ -9075,6 +9099,7 @@
 %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo
@@ -9097,6 +9122,7 @@
 %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo
@@ -9119,6 +9145,7 @@
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo
@@ -9141,6 +9168,7 @@
 %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo
@@ -9163,6 +9191,7 @@
 %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo
@@ -9185,6 +9214,7 @@
 %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo
@@ -9207,6 +9237,7 @@
 %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo
@@ -9229,6 +9260,7 @@
 %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo
@@ -9251,6 +9283,7 @@
 %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo
@@ -9270,9 +9303,56 @@
 %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-httt.mo
@@ -9295,6 +9375,7 @@
 %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo
@@ -9317,6 +9398,7 @@
 %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo
@@ -9339,6 +9421,7 @@
 %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo
@@ -9358,9 +9441,33 @@
 %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo
@@ -9383,6 +9490,7 @@
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-aoi.mo
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dm.mo
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo
@@ -9402,6 +9510,7 @@
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth.mo
+%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/wesnoth
 @dirrm %%DATADIR%%/data/ai/formula
 @dirrm %%DATADIR%%/data/ai
 @dirrm %%DATADIR%%/data/campaigns/An_Orcish_Incursion/images
@@ -9695,56 +9804,104 @@
 @dirrm %%DATADIR%%/images
 @dirrm %%DATADIR%%/sounds
 @dirrm %%DATADIR%%
- at dirrm %%DOCSDIR%%/manual/images/de
- at dirrm %%DOCSDIR%%/manual/images/es
- at dirrm %%DOCSDIR%%/manual/images/hu
- at dirrm %%DOCSDIR%%/manual/images/tr
- at dirrm %%DOCSDIR%%/manual/images
- at dirrm %%DOCSDIR%%/manual/styles
- at dirrm %%DOCSDIR%%/manual
- at dirrm %%DOCSDIR%%
+ at dirrmtry man/af/man6
+ at dirrmtry man/af
+ at dirrmtry man/ar/man6
+ at dirrmtry man/ar
+ at dirrmtry man/bg/man6
+ at dirrmtry man/bg
+ at dirrmtry man/ca/man6
+ at dirrmtry man/ca
+ at dirrmtry man/ca_ES at valencia/man6
+ at dirrmtry man/ca_ES at valencia
 @dirrmtry man/cs/man6
 @dirrmtry man/cs
 @dirrmtry man/da/man6
 @dirrmtry man/da
 @dirrmtry man/de/man6
 @dirrmtry man/de
+ at dirrmtry man/el/man6
+ at dirrmtry man/el
+ at dirrmtry man/en at shaw/man6
+ at dirrmtry man/en at shaw
 @dirrmtry man/en_GB/man6
 @dirrmtry man/en_GB
+ at dirrmtry man/eo/man6
+ at dirrmtry man/eo
 @dirrmtry man/es/man6
 @dirrmtry man/es
 @dirrmtry man/et/man6
 @dirrmtry man/et
+ at dirrmtry man/eu/man6
+ at dirrmtry man/eu
 @dirrmtry man/fi/man6
 @dirrmtry man/fi
 @dirrmtry man/fr/man6
 @dirrmtry man/fr
+ at dirrmtry man/fur_IT/man6
+ at dirrmtry man/fur_IT
 @dirrmtry man/gl/man6
 @dirrmtry man/gl
+ at dirrmtry man/he/man6
+ at dirrmtry man/he
+ at dirrmtry man/hr/man6
+ at dirrmtry man/hr
 @dirrmtry man/hu/man6
 @dirrmtry man/hu
+ at dirrmtry man/id/man6
+ at dirrmtry man/id
+ at dirrmtry man/is/man6
+ at dirrmtry man/is
 @dirrmtry man/it/man6
 @dirrmtry man/it
+ at dirrmtry man/ko/man6
+ at dirrmtry man/ko
+ at dirrmtry man/la/man6
+ at dirrmtry man/la
 @dirrmtry man/lt/man6
 @dirrmtry man/lt
+ at dirrmtry man/lv/man6
+ at dirrmtry man/lv
+ at dirrmtry man/mk/man6
+ at dirrmtry man/mk
+ at dirrmtry man/mr/man6
+ at dirrmtry man/mr
+ at dirrmtry man/nb_NO/man6
+ at dirrmtry man/nb_NO
 @dirrmtry man/nl/man6
 @dirrmtry man/nl
 @dirrmtry man/pl/man6
 @dirrmtry man/pl
+ at dirrmtry man/pt/man6
+ at dirrmtry man/pt
+ at dirrmtry man/pt_BR/man6
+ at dirrmtry man/pt_BR
 @dirrmtry man/racv/man6
 @dirrmtry man/racv
+ at dirrmtry man/ro/man6
+ at dirrmtry man/ro
 @dirrmtry man/ru/man6
 @dirrmtry man/ru
 @dirrmtry man/sk/man6
 @dirrmtry man/sk
+ at dirrmtry man/sl/man6
+ at dirrmtry man/sl
 @dirrmtry man/sr/man6
 @dirrmtry man/sr
+ at dirrmtry man/sr at ijekavian/man6
+ at dirrmtry man/sr at ijekavian
+ at dirrmtry man/sr at ijekavianlatin/man6
+ at dirrmtry man/sr at ijekavianlatin
 @dirrmtry man/sr at latin/man6
 @dirrmtry man/sr at latin
 @dirrmtry man/sv/man6
 @dirrmtry man/sv
+ at dirrmtry man/tl/man6
+ at dirrmtry man/tl
 @dirrmtry man/tr/man6
 @dirrmtry man/tr
+ at dirrmtry man/vi/man6
+ at dirrmtry man/vi
 @dirrmtry man/zh_CN/man6
 @dirrmtry man/zh_CN
 @dirrmtry man/zh_TW/man6
@@ -9752,6 +9909,8 @@
 @dirrmtry share/applications
 %%NLS%%@dirrmtry share/locale/ca_ES at valencia/LC_MESSAGES
 %%NLS%%@dirrmtry share/locale/ca_ES at valencia
+%%NLS%%@dirrmtry share/locale/en at shaw/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/en at shaw
 %%NLS%%@dirrmtry share/locale/fur_IT/LC_MESSAGES
 %%NLS%%@dirrmtry share/locale/fur_IT
 %%NLS%%@dirrmtry share/locale/la/LC_MESSAGES
@@ -9762,6 +9921,10 @@
 %%NLS%%@dirrmtry share/locale/nb_NO
 %%NLS%%@dirrmtry share/locale/racv/LC_MESSAGES
 %%NLS%%@dirrmtry share/locale/racv
+%%NLS%%@dirrmtry share/locale/sr at ijekavian/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/sr at ijekavian
+%%NLS%%@dirrmtry share/locale/sr at ijekavianlatin/LC_MESSAGES
+%%NLS%%@dirrmtry share/locale/sr at ijekavianlatin
 %%NLS%%@dirrmtry share/locale/sr at latin/LC_MESSAGES
 %%NLS%%@dirrmtry share/locale/sr at latin
 %%NLS%%@dirrmtry share/locale/tl/LC_MESSAGES


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list