FreeBSD Bugzilla – Attachment 122197 Details for
Bug 165332
Update port games/wesnoth to 1.10
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
wesnoth-1.10.diff
wesnoth-1.10.diff (text/plain), 58.41 KB, created by
rnejdl
on 2012-02-20 17:50:09 UTC
(
hide
)
Description:
wesnoth-1.10.diff
Filename:
MIME Type:
Creator:
rnejdl
Created:
2012-02-20 17:50:09 UTC
Size:
58.41 KB
patch
obsolete
>diff -ruN wesnoth/Makefile wesnoth.new/Makefile >--- wesnoth/Makefile 2012-02-18 04:18:21.000000000 -0600 >+++ wesnoth.new/Makefile 2012-02-20 11:28:54.000000000 -0600 >@@ -1,204 +1,178 @@ > # New ports collection makefile for: wesnoth >-# Date created: 22 December 2003 >-# Whom: Mezz <mezz7@cox.net> >+# Date created: 7 September 2008 >+# Whom: Philip Paeps <philip@FreeBSD.org> > # >-# $FreeBSD: ports/games/wesnoth/Makefile,v 1.94 2012/02/18 10:18:21 mva Exp $ >+# $FreeBSD: ports/games/wesnoth/Makefile,v 1.100 2012/02/18 10:18:21 mva Exp $ > # > > PORTNAME= wesnoth >-PORTVERSION= 1.8.6 >-PORTREVISION= 1 >+PORTVERSION= 1.10 > CATEGORIES= games >-MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTNAME}-${PORTVERSION} \ >+MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \ > http://files.wesnoth.org/ > > MAINTAINER= philip@FreeBSD.org > COMMENT= A fantasy turn-based strategy game > >+EXTRACT_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/x11-fonts/junicode:extract > LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost-libs > > LICENSE= GPLv2 GPLv3 > LICENSE_COMB= dual > LICENSE_FILE= ${WRKSRC}/COPYING > >-CONFLICTS= wesnoth-devel-[0-9]* >+CONFLICTS= wesnoth-[0-9]* > > USE_SDL= image mixer net ttf >-USE_GNOME= pango >-USE_GMAKE= yes >+USE_GNOME= pango desktopfileutils > MAKE_JOBS_SAFE= yes > USE_BZIP2= yes >-USE_LUA= 5.1 >-USE_AUTOTOOLS= aclocal autoheader automake autoconf >-ACLOCAL_ARGS= -Im4 >-AUTOMAKE_ARGS= --add-missing --copy >-CONFIGURE_ENV= PKG_CONFIG="${PKG_CONFIG}" >-CONFIGURE_ARGS= --localstatedir=/var \ >- --with-boost=${LOCALBASE} \ >- --with-icondir=${PREFIX}/share/pixmaps \ >- --with-libiconv-prefix=${LOCALBASE} \ >- --with-libintl-prefix=${LOCALBASE} \ >- --with-localedir=${PREFIX}/share/locale >-PKG_CONFIG?= ${LOCALBASE}/bin/pkg-config >- >-MANLANG= "" cs de en_GB es et fi fr gl hu id it ja lt pl pt_BR sk \ >- sr sr@ijekavian sr@ijekavianlatin sr@latin tr zh_CN zh_TW >+USE_CMAKE= yes > > MAN6= wesnoth.6 > > PORTDOCS= * > PORTDATA= * > >-OPTIONS= BWMON "Enable bandwidth monitoring for server" Off \ >+OPTIONS= ANA "Enable Asynchronous Network API (WIP)" On \ > CAMPAIGN "Enable campaign server" On \ >- EDITOR "Enable map editor" On \ > FRIBIDI "Enable bidirectional support" On \ > LOWMEM "Reduce memory usage (disables animations)" Off \ > NOTIFY "Enable desktop notifications" On \ >+ OPENMP "Enable OpenMP support" Off \ > POOLALLOC "Use wesnoth own memory allocator" Off \ >- PYTHON "Enable python developer tools" On \ >+ PYTHON "Enable python developer tools" Off \ > 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 defined(WITH_DEBUG) >-CONFIGURE_ARGS+= --enable-debug >-.endif >- >-.if defined(WITH_PROFILE) >-CONFIGURE_ARGS+= --enable-profile >-.endif >+.include <bsd.port.options.mk> > > # XXX: breaks compilation because of -Werror > .if !defined(WITH_STRICT) >-CONFIGURE_ARGS+= --disable-strict-compilation >+CMAKE_ARGS+= -DENABLE_STRICT_COMPILATION=off > .endif > >-.if defined(WITHOUT_BWMON) >-CONFIGURE_ARGS+= --disable-bandwidth-monitor >+.if defined(WITHOUT_ANA) >+CMAKE_ARGS+= -DUSE_ANA_NETWORK=off > .else >-CONFIGURE_ARGS+= --enable-bandwidth-monitor >+CMAKE_ARGS+= -DUSE_ANA_NETWORK=on > .endif > > .if defined(WITHOUT_CAMPAIGN) >-CONFIGURE_ARGS+= --disable-campaign-server >-PLIST_SUB+= CAMPAIGN="@comment " >-.else >-CONFIGURE_ARGS+= --enable-campaign-server >-PLIST_SUB+= CAMPAIGN="" >-.endif >- >-.if defined(WITHOUT_EDITOR) >-CONFIGURE_ARGS+= --disable-editor >-PLIST_SUB+= EDITOR="@comment " >+CMAKE_ARGS+= -DENABLE_CAMPAIGN_SERVER=off >+PLIST_SUB+= CAMPAIGN="@comment " > .else >-CONFIGURE_ARGS+= --enable-editor >-PLIST_SUB+= EDITOR="" >+CMAKE_ARGS+= -DENABLE_CAMPAIGN_SERVER=on >+PLIST_SUB+= CAMPAIGN="" > .endif > > .if defined(WITHOUT_FRIBIDI) >-CONFIGURE_ARGS+= --without-fribidi >+CMAKE_ARGS+= -DENABLE_FRIBIDI=off > .else >-CONFIGURE_ARGS+= --with-fribidi >-LIB_DEPENDS+= fribidi.3:${PORTSDIR}/converters/fribidi >+CMAKE_ARGS+= -DENABLE_FRIBIDI=on >+LIB_DEPENDS+= fribidi.3:${PORTSDIR}/converters/fribidi > .endif > > .if defined(WITHOUT_LOWMEM) >-CONFIGURE_ARGS+= --disable-lowmem >+CMAKE_ARGS+= -DENABLE_LOW_MEM=off > .else >-CONFIGURE_ARGS+= --enable-lowmem >+CMAKE_ARGS+= -DENABLE_LOW_MEM=off > .endif > > .if defined(WITHOUT_NOTIFY) >-CONFIGURE_ARGS+= --disable-notifications >+CMAKE_ARGS+= -DENABLE_NOTIFICATIONS=off > .else >-CONFIGURE_ARGS+= --enable-notifications --enable-dbus >-LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus >+CMAKE_ARGS+= -DENABLE_NOTIFICATIONS=on >+LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus > .endif > > .if defined(WITHOUT_NLS) >-CONFIGURE_ARGS+= --disable-nls >-PLIST_SUB+= NLS="@comment " >+CMAKE_ARGS+= -DENABLE_NLS=off >+PLIST_SUB+= NLS="@comment " > .else >-USE_GETTEXT= yes >-CONFIGURE_ARGS+= --enable-nls >-PLIST_SUB+= NLS="" >+CMAKE_ARGS+= -DENABLE_NLS=on -DLOCALEDIR=${PREFIX}/share/locale >+USE_GETTEXT= yes >+MANLANG= "" cs de en_GB et fr gl hu id lt pl sk \ >+ zh_CN zh_TW >+_MANPAGES+= ${PREFIX}/man/es/man6/wesnothd.6 \ >+ ${PREFIX}/man/fi/man6/wesnothd.6 \ >+ ${PREFIX}/man/it/man6/wesnothd.6 \ >+ ${PREFIX}/man/ja/man6/wesnothd.6 \ >+ ${PREFIX}/man/pt_BR/man6/wesnothd.6 \ >+ ${PREFIX}/man/sr/man6/wesnothd.6 \ >+ ${PREFIX}/man/sr@ijekavian/man6/wesnothd.6 \ >+ ${PREFIX}/man/sr@ijekavianlatin/man6/wesnothd.6 \ >+ ${PREFIX}/man/sr@latin/man6/wesnothd.6 \ >+ ${PREFIX}/man/tr/man6/wesnothd.6 >+PLIST_SUB+= NLS="" >+.endif >+ >+.if defined(WITHOUT_OPENMP) >+CMAKE_ARGS+= -DENABLE_OMP=off >+.else >+CMAKE_ARGS+= -DENABLE_OMP=on > .endif > > .if defined(WITHOUT_POOLALLOC) >-CONFIGURE_ARGS+= --disable-pool-alloc >+CMAKE_ARGS+= -DENABLE_POOL_ALLOC=off > .else >-CONFIGURE_ARGS+= --enable-pool-alloc >+CMAKE_ARGS+= -DENABLE_POOL_ALLOC=on > .endif > > .if defined(WITHOUT_PYTHON) >-CONFIGURE_ARGS+= --disable-python-install >-PLIST_SUB+= PYTHON="@comment " >+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" >+BROKEN= cmake build doesn\'t support installing python tools >+USE_PYTHON= yes >+CONFIGURE_ENV+= PYTHON_PREFIX=${PREFIX} \ >+ PYTHON_VERSION=${PYTHON_VERSION:S/python//} >+CONFIGURE_ARGS+=--enable-python-install >+PLIST_SUB+= PYTHON="" > .endif > >-.if defined(WITHOUT_RAWSOCKETS) >-CONFIGURE_ARGS+= --disable-raw-sockets >-.else >-CONFIGURE_ARGS+= --enable-raw-sockets >+.if !defined(WITHOUT_RAWSOCKETS) >+CFLAGS+= -DNETWORK_USE_RAW_SOCKETS > .endif > > .if defined(WITHOUT_SERVER) >-CONFIGURE_ARGS+= --disable-server >-PLIST_SUB+= SERVER="@comment " >+CMAKE_ARGS+= -DENABLE_SERVER=off >+PLIST_SUB+= SERVER="@comment " > .else >-CONFIGURE_ARGS+= --enable-server >-MAN6+= wesnothd.6 >-PLIST_SUB+= SERVER="" >+CMAKE_ARGS+= -DENABLE_SERVER=on >+MAN6+= wesnothd.6 >+PLIST_SUB+= SERVER="" > .endif > > .if defined(WITHOUT_TESTS) >-CONFIGURE_ARGS+= --disable-tests >-PLIST_SUB+= TESTS="@comment " >+CMAKE_ARGS+= -DENABLE_TESTS=off >+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 >+CMAKE_ARGS+= -DENABLE_TESTS=on >+PLIST_SUB+= TESTS="" > .endif > > .if defined(WITHOUT_TOOLS) >-CONFIGURE_ARGS+= --disable-tools >-PLIST_SUB+= TOOLS="@comment " >+CMAKE_ARGS+= -DENABLE_TOOLS=off >+PLIST_SUB+= TOOLS="@comment " > .else >-CONFIGURE_ARGS+= --enable-tools >-PLIST_SUB+= TOOLS="" >+CMAKE_ARGS+= -DENABLE_TOOLS=on >+PLIST_SUB+= TOOLS="" > .endif > > .if defined(NOPORTDOCS) >-CONFIGURE_ARGS+= --without-docs >+CMAKE_ARGS+= -DDOCDIR=none > .endif > > .if defined(NOPORTDATA) > IGNORE= game data is required, undefine NOPORTDATA > .endif > >-post-patch: .SILENT >- ${REINPLACE_CMD} -e 's|png_voidp_NULL|NULL|g' \ >- -e 's|png_error_ptr_NULL|NULL|g' \ >- ${WRKSRC}/src/tools/exploder_utils.cpp >- > post-install: >+ ${INSTALL_DATA} $$(${MAKE} -V WRKSRC \ >+ -C ${PORTSDIR}/x11-fonts/junicode)/fonts/Junicode-Regular.ttf \ >+ ${DATADIR}/fonts > -update-desktop-database ${PREFIX}/share/applications > >-.include <bsd.port.post.mk> >+.include <bsd.port.mk> >diff -ruN wesnoth/Makefile.rej wesnoth.new/Makefile.rej >--- wesnoth/Makefile.rej 2011-12-17 16:50:23.000000000 -0600 >+++ wesnoth.new/Makefile.rej 1969-12-31 18:00:00.000000000 -0600 >@@ -1,84 +0,0 @@ >-*************** >-*** 6,12 **** >- # >- >- PORTNAME= wesnoth >-- PORTVERSION= 1.9.7 >- CATEGORIES= games >- MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \ >- http://files.wesnoth.org/ >---- 6,12 ---- >- # >- >- PORTNAME= wesnoth >-+ PORTVERSION= 1.9.9 >- CATEGORIES= games >- MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \ >- http://files.wesnoth.org/ >-*************** >-*** 15,24 **** >- MAINTAINER= philip@FreeBSD.org >- COMMENT= A fantasy turn-based strategy game >- >- LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost-libs >-- RUN_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/x11-fonts/junicode:extract >-- >-- BROKEN= incomplete plist >- >- LICENSE= GPLv2 GPLv3 >- LICENSE_COMB= dual >---- 15,22 ---- >- MAINTAINER= philip@FreeBSD.org >- COMMENT= A fantasy turn-based strategy game >- >-+ EXTRACT_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/x11-fonts/junicode:extract >- LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost-libs >- >- LICENSE= GPLv2 GPLv3 >- LICENSE_COMB= dual >-*************** >-*** 27,33 **** >- CONFLICTS= wesnoth-[0-9]* >- >- USE_SDL= image mixer net ttf >-- USE_GNOME= pango >- MAKE_JOBS_SAFE= yes >- USE_BZIP2= yes >- USE_CMAKE= yes >---- 25,31 ---- >- CONFLICTS= wesnoth-[0-9]* >- >- USE_SDL= image mixer net ttf >-+ USE_GNOME= pango desktopfileutils >- MAKE_JOBS_SAFE= yes >- USE_BZIP2= yes >- USE_CMAKE= yes >-*************** >-*** 97,105 **** >- .else >- CMAKE_ARGS+= -DENABLE_NLS=on -DLOCALEDIR=${PREFIX}/share/locale >- USE_GETTEXT= yes >-- MANLANG= "" cs de en_GB et fi fr gl hu id it ja lt pl pt_BR sk \ >-- sr sr@ijekavian sr@ijekavianlatin sr@latin zh_CN zh_TW >- _MANPAGES+= ${PREFIX}/man/es/man6/wesnothd.6 \ >- ${PREFIX}/man/tr/man6/wesnothd.6 >- PLIST_SUB+= NLS="" >- .endif >---- 95,111 ---- >- .else >- CMAKE_ARGS+= -DENABLE_NLS=on -DLOCALEDIR=${PREFIX}/share/locale >- USE_GETTEXT= yes >-+ MANLANG= "" cs de en_GB et fr gl hu id lt pl sk \ >-+ zh_CN zh_TW >- _MANPAGES+= ${PREFIX}/man/es/man6/wesnothd.6 \ >-+ ${PREFIX}/man/fi/man6/wesnothd.6 \ >-+ ${PREFIX}/man/it/man6/wesnothd.6 \ >-+ ${PREFIX}/man/ja/man6/wesnothd.6 \ >-+ ${PREFIX}/man/pt_BR/man6/wesnothd.6 \ >-+ ${PREFIX}/man/sr/man6/wesnothd.6 \ >-+ ${PREFIX}/man/sr@ijekavian/man6/wesnothd.6 \ >-+ ${PREFIX}/man/sr@ijekavianlatin/man6/wesnothd.6 \ >-+ ${PREFIX}/man/sr@latin/man6/wesnothd.6 \ >- ${PREFIX}/man/tr/man6/wesnothd.6 >- PLIST_SUB+= NLS="" >- .endif >diff -ruN wesnoth/distinfo wesnoth.new/distinfo >--- wesnoth/distinfo 2011-05-14 09:05:27.000000000 -0500 >+++ wesnoth.new/distinfo 2012-02-20 11:02:05.000000000 -0600 >@@ -1,2 +1,2 @@ >-SHA256 (wesnoth-1.8.6.tar.bz2) = 4fe603fa984ac76a384dc94ba28bd99fe2d1adf02ddf1706f2fa1b82b40f8081 >-SIZE (wesnoth-1.8.6.tar.bz2) = 302226547 >+SHA256 (wesnoth-1.10.tar.bz2) = 4ba12b1e43761650579d563d4384c5e06674b0bff75cef2cb0abb439ecdc8ece >+SIZE (wesnoth-1.10.tar.bz2) = 339946658 >diff -ruN wesnoth/files/patch-CMakeLists.txt wesnoth.new/files/patch-CMakeLists.txt >--- wesnoth/files/patch-CMakeLists.txt 1969-12-31 18:00:00.000000000 -0600 >+++ wesnoth.new/files/patch-CMakeLists.txt 2012-02-20 11:01:03.000000000 -0600 >@@ -0,0 +1,74 @@ >+--- CMakeLists.txt~ >++++ CMakeLists.txt >+@@ -21,11 +21,10 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR >+ find_package(SDL 1.2.7 REQUIRED) >+ find_package(Boost 1.35 REQUIRED COMPONENTS iostreams regex) >+ >+-# no, gettext executables are not required when NLS is deactivated >++if(ENABLE_NLS) >+ find_package(Gettext) >+-# yes, libintl is *required* even when NLS is deactivated (this is to compile >+-# src/gettext.cpp since it includes libintl.h) >+ find_package(Libintl REQUIRED) >++endif(ENABLE_NLS) >+ >+ find_package(X11) >+ >+@@ -68,7 +67,7 @@ option(ENABLE_GAME "Enable compilation o >+ option(ENABLE_GAME "Enable compilation of the game" ON) >+ option(ENABLE_CAMPAIGN_SERVER "Enable compilation of campaign server") >+ option(ENABLE_SERVER "Enable compilation of server" ON) >+-option(ENABLE_TOOLS "Enable building and installation of tools for artists and WML maintainers") >++option(ENABLE_TOOLS "Enable building and installation of tools for artists and WML maintainers" OFF) >+ option(ENABLE_TESTS "Build unit tests") >+ option(ENABLE_NLS "Enable building of translations" ON) >+ option(ENABLE_POOL_ALLOC "Enable custom pool malloc" OFF) >+@@ -114,18 +113,18 @@ if(CMAKE_COMPILER_IS_GNUCXX) >+ endif(ENABLE_STRICT_COMPILATION) >+ >+ # Strict compilation for C files is disabled until somebody wants to clean them. >+- set(CMAKE_C_FLAGS "-O2 -W -Wall -ansi $ENV{CFLAGS}" >++ set(CMAKE_C_FLAGS "-W -Wall -ansi $ENV{CFLAGS}" >+ CACHE STRING "Flags used by the C compiler during normal builds." FORCE) >+- set(CMAKE_C_FLAGS_DEBUG "-O0 -DDEBUG -ggdb3 -W -Wall -ansi $ENV{CFLAGS}" >++ set(CMAKE_C_FLAGS_DEBUG "-DDEBUG -W -Wall -ansi $ENV{CFLAGS}" >+ CACHE STRING "Flags used by the C compiler during debug builds." FORCE) >+- set(CMAKE_C_FLAGS_RELEASE "-O3 -DNDEBUG -W -Wall -ansi $ENV{CFLAGS} -Wno-unused" >++ set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG -W -Wall -ansi $ENV{CFLAGS} -Wno-unused" >+ CACHE STRING "Flags used by the C compiler during release builds." FORCE) >+ >+- set(CMAKE_CXX_FLAGS "-O2 -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}" >++ set(CMAKE_CXX_FLAGS "-W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}" >+ CACHE STRING "Flags used by the CXX compiler during normal builds." FORCE) >+- set(CMAKE_CXX_FLAGS_DEBUG "-O0 -DDEBUG -ggdb3 -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}" >++ set(CMAKE_CXX_FLAGS_DEBUG "-DDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}" >+ CACHE STRING "Flags used by the CXX compiler during debug builds." FORCE) >+- set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS} -Wno-unused" >++ set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS} -Wno-unused" >+ CACHE STRING "Flags used by the CXX compiler during release builds." FORCE) >+ >+ endif(NOT CONFIGURED) >+@@ -154,6 +153,7 @@ add_definitions(-DLOCALEDIR=\\\"${LOCALE >+ if(LOCALEDIR MATCHES "^/") >+ add_definitions(-DHAS_RELATIVE_LOCALEDIR=0) >+ set(LOCALE_INSTALL ${LOCALEDIR}) >++ set(LOCALEDIR "translations") >+ else(LOCALEDIR MATCHES "^/") >+ add_definitions(-DHAS_RELATIVE_LOCALEDIR=1) >+ set(LOCALE_INSTALL ${DATADIR}/${LOCALEDIR}) >+@@ -213,10 +213,14 @@ if(ENABLE_TESTS) >+ find_package( Boost 1.35 REQUIRED COMPONENTS unit_test_framework ) >+ endif(ENABLE_TESTS) >+ if(ENABLE_GAME) >+- find_package( FriBiDi ) >++ pkg_check_modules( FRIBIDI fribidi>=0.19.0 ) >+ if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES) >+ add_definitions(-DHAVE_FRIBIDI) >+ elseif(ENABLE_FRIBIDI AND NOT FRIBIDI_LIBRARIES) >++ pkg_check_modules( FRIBIDI fribidi ) >++ if(FRIBIDI_LIBRARIES) >++ add_definitions(-DOLD_FRIBIDI) >++ endif(FRIBIDI_LIBRARIES) >+ message("Could not find FriBiDi. Disabling FriBiDi support.") >+ endif() >+ >diff -ruN wesnoth/files/patch-Makefile.am wesnoth.new/files/patch-Makefile.am >--- wesnoth/files/patch-Makefile.am 2010-09-27 04:13:10.000000000 -0500 >+++ wesnoth.new/files/patch-Makefile.am 1969-12-31 18:00:00.000000000 -0600 >@@ -1,18 +0,0 @@ >---- Makefile.am~ >-+++ Makefile.am >-@@ -73,6 +73,7 @@ if INSTALLDATA >- echo $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pkgdatadir)/$$f"; \ >- $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pkgdatadir)/$$f"; \ >- done >-+if INSTALLDOCS >- @echo "Replicate doc directory skeleton under target doc subdirectory" >- @echo "Then copy all corresponding files." >- test -z "$(docdir)" || $(mkdir_p) "$(DESTDIR)$(docdir)" >-@@ -84,6 +85,7 @@ if INSTALLDATA >- echo $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \ >- $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; cd ..; \ >- done >-+endif >- if TINYGUI >- @echo "Shrink installed images by a factor of two." >- (cd $(top_srcdir) && find data/core/images data/campaigns images \( $(findfilterflags) -a -name '*.png' -and -not -name 'bar-energy-tinygui.png' -print \) ) | while read p; do \ >diff -ruN wesnoth/files/patch-configure.ac wesnoth.new/files/patch-configure.ac >--- wesnoth/files/patch-configure.ac 2010-09-27 07:36:52.000000000 -0500 >+++ wesnoth.new/files/patch-configure.ac 1969-12-31 18:00:00.000000000 -0600 >@@ -1,14 +0,0 @@ >---- configure.ac~ >-+++ configure.ac >-@@ -213,6 +213,11 @@ esac >- AC_SUBST([FULLLOCALEDIR]) >- AC_SUBST([HAS_RELATIVE_LOCALEDIR]) >- >-+AC_ARG_WITH([docs], >-+ AS_HELP_STRING([--without-docs], [don't install wesnoth manual]), >-+ [docs=$withval], >-+ [docs=yes]) >-+AM_CONDITIONAL([INSTALLDOCS], [test x$docs = xyes]) >- >- AC_ARG_ENABLE([game], >- AS_HELP_STRING([--disable-game], [disable compilation of game]), >diff -ruN wesnoth/files/patch-doc-CMakeLists.txt wesnoth.new/files/patch-doc-CMakeLists.txt >--- wesnoth/files/patch-doc-CMakeLists.txt 1969-12-31 18:00:00.000000000 -0600 >+++ wesnoth.new/files/patch-doc-CMakeLists.txt 2012-02-20 11:01:03.000000000 -0600 >@@ -0,0 +1,7 @@ >+--- doc/CMakeLists.txt~ >++++ doc/CMakeLists.txt >+@@ -1,2 +1,4 @@ >+ add_subdirectory(man) >++if(NOT DOCDIR STREQUAL "none") >+ add_subdirectory(manual) >++endif(NOT DOCDIR STREQUAL "none") >diff -ruN wesnoth/files/patch-m4-boost.m4 wesnoth.new/files/patch-m4-boost.m4 >--- wesnoth/files/patch-m4-boost.m4 2010-08-26 06:28:04.000000000 -0500 >+++ wesnoth.new/files/patch-m4-boost.m4 1969-12-31 18:00:00.000000000 -0600 >@@ -1,11 +0,0 @@ >---- m4/boost.m4~ 2010-05-27 11:37:13.000000000 +0400 >-+++ m4/boost.m4 2010-08-23 07:12:17.014432212 +0400 >-@@ -729,7 +729,7 @@ AC_CACHE_CHECK([for the flags needed to >- esac >- # Generate the test file. >- AC_LANG_CONFTEST([AC_LANG_PROGRAM([#include <pthread.h>], >-- [pthread_t th; pthread_join(th, 0); >-+ [pthread_t th=NULL; pthread_join(th, 0); >- pthread_attr_init(0); pthread_cleanup_push(0, 0); >- pthread_create(0,0,0,0); pthread_cleanup_pop(0);])]) >- for boost_pthread_flag in '' $boost_pthread_flags; do >diff -ruN wesnoth/files/patch-m4-zlib.m4 wesnoth.new/files/patch-m4-zlib.m4 >--- wesnoth/files/patch-m4-zlib.m4 2010-07-20 05:57:07.000000000 -0500 >+++ wesnoth.new/files/patch-m4-zlib.m4 1969-12-31 18:00:00.000000000 -0600 >@@ -1,15 +0,0 @@ >---- m4/zlib.m4~ >-+++ m4/zlib.m4 >-@@ -16,11 +16,9 @@ fi >- AC_MSG_CHECKING([for zlib location]) >- if test x"$zlib_prefix" = x ; then >- zlib_header_found="no" >-- for dir in /usr/local /usr ; do >-+ for dir in /usr ; do >- if test -f "$dir/include/zlib.h" ; then >- zlib_header_found="yes" >-- ZLIB_CFLAGS="-I$dir/include" >-- ZLIB_LDFLAGS="-L$dir/lib" >- break >- fi >- done >diff -ruN wesnoth/files/patch-po-CMakeLists.txt wesnoth.new/files/patch-po-CMakeLists.txt >--- wesnoth/files/patch-po-CMakeLists.txt 1969-12-31 18:00:00.000000000 -0600 >+++ wesnoth.new/files/patch-po-CMakeLists.txt 2012-02-20 11:01:03.000000000 -0600 >@@ -0,0 +1,24 @@ >+--- po/CMakeLists.txt~ >++++ po/CMakeLists.txt >+@@ -273,9 +273,6 @@ if(ENABLE_NLS) >+ COMMENT "mo-update [${DOMAIN}-${LINGUA}]: Creating mo file." >+ ) >+ >+- install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo >+- DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES) >+- >+ set(mo-update-SRC ${mo-update-SRC} >+ ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo >+ ) >+@@ -285,6 +282,11 @@ if(ENABLE_NLS) >+ >+ endforeach(DOMAIN ${DOMAINS}) >+ >++ foreach(DOMAIN ${NORMAL_DOMAINS}) >++ install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo >++ DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES) >++ endforeach(DOMAIN ${NORMAL_DOMAINS}) >++ >+ if(ENABLE_POT_UPDATE_TARGET) >+ add_custom_target(mo-update-${LINGUA} >+ COMMENT "mo-update ${LINGUA}: Done." >diff -ruN wesnoth/files/patch-src-CMakeLists.txt wesnoth.new/files/patch-src-CMakeLists.txt >--- wesnoth/files/patch-src-CMakeLists.txt 1969-12-31 18:00:00.000000000 -0600 >+++ wesnoth.new/files/patch-src-CMakeLists.txt 2012-02-20 11:01:03.000000000 -0600 >@@ -0,0 +1,22 @@ >+--- src/CMakeLists.txt~ >++++ src/CMakeLists.txt >+@@ -123,7 +123,7 @@ set(tools-external-libs >+ ) >+ >+ if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES) >+- include_directories( ${FRIBIDI_INCLUDE_DIR} ) >++ include_directories( ${FRIBIDI_INCLUDE_DIRS} ) >+ set(game-external-libs ${game-external-libs} ${FRIBIDI_LIBRARIES}) >+ endif(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES) >+ >+@@ -826,7 +833,9 @@ if(ENABLE_TESTS) >+ boost_unit_test_framework >+ ) >+ set_target_properties(test >+- PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}test${BINARY_SUFFIX} >++ PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}wesnoth_test${BINARY_SUFFIX} >+ ) >++ >++ install(TARGETS test DESTINATION ${BINDIR}) >+ endif(ENABLE_TESTS) >+ >diff -ruN wesnoth/files/patch-src-Makefile.am wesnoth.new/files/patch-src-Makefile.am >--- wesnoth/files/patch-src-Makefile.am 2010-07-20 09:06:55.000000000 -0500 >+++ wesnoth.new/files/patch-src-Makefile.am 1969-12-31 18:00:00.000000000 -0600 >@@ -1,31 +0,0 @@ >---- src/Makefile.am~ >-+++ src/Makefile.am >-@@ -16,7 +16,7 @@ bin_PROGRAMS += campaignd >- endif >- >- if TESTS >--bin_PROGRAMS += test >-+bin_PROGRAMS += wesnoth_test >- endif >- >- 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 wesnoth/files/patch-src-ana-src-CMakeLists.txt wesnoth.new/files/patch-src-ana-src-CMakeLists.txt >--- wesnoth/files/patch-src-ana-src-CMakeLists.txt 1969-12-31 18:00:00.000000000 -0600 >+++ wesnoth.new/files/patch-src-ana-src-CMakeLists.txt 2012-02-20 11:01:03.000000000 -0600 >@@ -0,0 +1,34 @@ >+--- src/ana/src/CMakeLists.txt~ >++++ src/ana/src/CMakeLists.txt >+@@ -4,7 +4,7 @@ include_directories(../api) >+ >+ find_package(Boost 1.35 REQUIRED COMPONENTS thread system) >+ >+-set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -ggdb3") >++set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}") >+ >+ set(common_srcs asio_listener.cpp asio_sender.cpp asio_timers.cpp) >+ >+@@ -20,11 +20,11 @@ target_link_libraries( ana-static ${Boos >+ >+ set(CMAKE_INSTALL_PREFIX /usr/local) >+ >+-if(NOT MSVC) >++if(FALSE) >+ set(CMAKE_INSTALL_PREFIX /usr/local) >+ install(TARGETS ana LIBRARY DESTINATION lib) >+ install(TARGETS ana-static ARCHIVE DESTINATION lib) >+-endif(NOT MSVC) >++endif(FALSE) >+ >+ set(ana_headers >+ ../api/ana.hpp >+@@ -35,6 +35,6 @@ set(ana_headers >+ ../api/binary_streams.hpp >+ ) >+ >+-if(NOT MSVC) >++if(FALSE) >+ install(FILES ${ana_headers} DESTINATION include/ana) >+-endif(NOT MSVC) >++endif(FALSE) >diff -ruN wesnoth/files/patch-src-tests-main.cpp wesnoth.new/files/patch-src-tests-main.cpp >--- wesnoth/files/patch-src-tests-main.cpp 2010-08-26 06:28:04.000000000 -0500 >+++ wesnoth.new/files/patch-src-tests-main.cpp 1969-12-31 18:00:00.000000000 -0600 >@@ -1,10 +0,0 @@ >---- src/tests/main.cpp~ >-+++ src/tests/main.cpp >-@@ -15,6 +15,7 @@ >- #define GETTEXT_DOMAIN "wesnoth-test" >- >- >-+#define BOOST_TEST_DYN_LINK >- #define BOOST_TEST_MODULE wesnoth unit tests master suite >- #include <boost/test/unit_test.hpp> >- #include <boost/test/unit_test_monitor.hpp> >diff -ruN wesnoth/pkg-plist wesnoth.new/pkg-plist >--- wesnoth/pkg-plist 2011-12-17 16:50:23.000000000 -0600 >+++ wesnoth.new/pkg-plist 2012-02-20 11:27:41.000000000 -0600 >@@ -2,12 +2,12 @@ > %%TOOLS%%bin/cutter > %%TOOLS%%bin/exploder > bin/wesnoth >-%%TOOLS%%bin/wesnoth_addon_manager >+%%PYTHON%%%%TOOLS%%bin/wesnoth_addon_manager > %%TESTS%%bin/wesnoth_test > %%SERVER%%bin/wesnothd >-%%TOOLS%%bin/wmlindent >-%%TOOLS%%bin/wmllint >-%%TOOLS%%bin/wmlscope >+%%PYTHON%%%%TOOLS%%bin/wmlindent >+%%PYTHON%%%%TOOLS%%bin/wmllint >+%%PYTHON%%%%TOOLS%%bin/wmlscope > %%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.py > %%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyc > %%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyo >@@ -33,13 +33,15 @@ > %%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyc > %%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyo > share/applications/wesnoth.desktop >-%%EDITOR%%share/applications/wesnoth_editor.desktop >+share/applications/wesnoth_editor.desktop > %%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-dw.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-help.mo > %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-lib.mo >@@ -57,12 +59,64 @@ > %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-units.mo > %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-utbs.mo > %%NLS%%share/locale/af/LC_MESSAGES/wesnoth.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-anl.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-aoi.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-did.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dm.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dw.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-editor.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-ei.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-help.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-httt.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-l.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-lib.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-low.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-multiplayer.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-nr.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sof.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sotbe.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tb.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-test.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-thot.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-trow.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tsg.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tutorial.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-units.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-utbs.mo >+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-anl.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-aoi.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-did.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-dm.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-dw.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-editor.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-ei.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-help.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-httt.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-l.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-lib.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-low.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-multiplayer.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-nr.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-sof.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-sotbe.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tb.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-test.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-thot.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-trow.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tsg.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tutorial.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-units.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-utbs.mo >+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth.mo > %%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-dw.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-help.mo > %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-lib.mo >@@ -84,8 +138,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-lib.mo >@@ -107,8 +163,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-lib.mo >@@ -130,8 +188,10 @@ > %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-aoi.mo > %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-did.mo > %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dm.mo >+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dw.mo > %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo > %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo >+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-help.mo > %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-lib.mo >@@ -153,8 +213,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-lib.mo >@@ -176,8 +238,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-lib.mo >@@ -199,8 +263,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-lib.mo >@@ -222,8 +288,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-lib.mo >@@ -245,8 +313,10 @@ > %%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-aoi.mo > %%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-did.mo > %%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dm.mo >+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dw.mo > %%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-editor.mo > %%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-ei.mo >+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-help.mo > %%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-lib.mo >@@ -268,8 +338,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-lib.mo >@@ -291,8 +363,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-lib.mo >@@ -314,8 +388,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-lib.mo >@@ -337,8 +413,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-lib.mo >@@ -360,8 +438,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-lib.mo >@@ -383,8 +463,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-lib.mo >@@ -406,8 +488,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-lib.mo >@@ -429,8 +513,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-lib.mo >@@ -448,12 +534,39 @@ > %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-units.mo > %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-utbs.mo > %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-anl.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-aoi.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-did.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dm.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dw.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-editor.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-ei.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-help.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-httt.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-l.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-lib.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-low.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-multiplayer.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-nr.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sof.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sotbe.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tb.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-test.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-thot.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-trow.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tsg.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tutorial.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-units.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-utbs.mo >+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth.mo > %%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-dw.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-help.mo > %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-lib.mo >@@ -475,8 +588,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-lib.mo >@@ -498,8 +613,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-lib.mo >@@ -521,8 +638,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-lib.mo >@@ -544,8 +663,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-lib.mo >@@ -567,8 +688,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-lib.mo >@@ -590,8 +713,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-lib.mo >@@ -613,8 +738,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-lib.mo >@@ -636,8 +763,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-lib.mo >@@ -659,8 +788,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-lib.mo >@@ -682,8 +813,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-lib.mo >@@ -705,8 +838,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-lib.mo >@@ -728,8 +863,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-lib.mo >@@ -751,8 +888,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-lib.mo >@@ -774,8 +913,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-lib.mo >@@ -797,8 +938,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-lib.mo >@@ -820,8 +963,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-lib.mo >@@ -843,8 +988,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-lib.mo >@@ -866,8 +1013,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo >@@ -889,8 +1038,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-lib.mo >@@ -912,8 +1063,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-lib.mo >@@ -935,8 +1088,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-lib.mo >@@ -958,8 +1113,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-lib.mo >@@ -981,8 +1138,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-lib.mo >@@ -1004,8 +1163,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-lib.mo >@@ -1027,8 +1188,10 @@ > %%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-aoi.mo > %%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-did.mo > %%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dm.mo >+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dw.mo > %%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-editor.mo > %%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-ei.mo >+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-help.mo > %%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-lib.mo >@@ -1050,8 +1213,10 @@ > %%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-aoi.mo > %%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-did.mo > %%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dm.mo >+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dw.mo > %%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo > %%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo >+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-help.mo > %%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-lib.mo >@@ -1073,8 +1238,10 @@ > %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-aoi.mo > %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-did.mo > %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dm.mo >+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dw.mo > %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo > %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo >+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-help.mo > %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-lib.mo >@@ -1096,8 +1263,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-lib.mo >@@ -1119,8 +1288,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-lib.mo >@@ -1142,8 +1313,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-lib.mo >@@ -1165,8 +1338,10 @@ > %%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-dw.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-help.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 >@@ -1188,8 +1363,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-lib.mo >@@ -1211,8 +1388,10 @@ > %%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-dw.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-help.mo > %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo > %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-l.mo > %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-lib.mo >@@ -1231,10 +1410,14 @@ > %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-utbs.mo > %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth.mo > share/pixmaps/wesnoth-icon.png >-%%EDITOR%%share/pixmaps/wesnoth_editor-icon.png >+share/pixmaps/wesnoth_editor-icon.png > %%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/wesnoth > @dirrmtry man/af/man6 > @dirrmtry man/af >+@dirrmtry man/ang/man6 >+@dirrmtry man/ang >+@dirrmtry man/ang@latin/man6 >+@dirrmtry man/ang@latin > @dirrmtry man/ar/man6 > @dirrmtry man/ar > @dirrmtry man/bg/man6 >@@ -1269,6 +1452,8 @@ > @dirrmtry man/fr > @dirrmtry man/fur_IT/man6 > @dirrmtry man/fur_IT >+@dirrmtry man/ga/man6 >+@dirrmtry man/ga > @dirrmtry man/gl/man6 > @dirrmtry man/gl > @dirrmtry man/he/man6 >@@ -1336,6 +1521,10 @@ > @dirrmtry man/zh_TW/man6 > @dirrmtry man/zh_TW > @dirrmtry share/applications >+%%NLS%%@dirrmtry share/locale/ang/LC_MESSAGES >+%%NLS%%@dirrmtry share/locale/ang >+%%NLS%%@dirrmtry share/locale/ang@latin/LC_MESSAGES >+%%NLS%%@dirrmtry share/locale/ang@latin > %%NLS%%@dirrmtry share/locale/ca_ES@valencia/LC_MESSAGES > %%NLS%%@dirrmtry share/locale/ca_ES@valencia > %%NLS%%@dirrmtry share/locale/en@shaw/LC_MESSAGES >diff -ruN wesnoth/pkg-plist.rej wesnoth.new/pkg-plist.rej >--- wesnoth/pkg-plist.rej 2011-12-17 16:50:23.000000000 -0600 >+++ wesnoth.new/pkg-plist.rej 1969-12-31 18:00:00.000000000 -0600 >@@ -1,16 +0,0 @@ >-*************** >-*** 2,7 **** >- %%TOOLS%%bin/cutter >- %%TOOLS%%bin/exploder >- bin/wesnoth >- %%PYTHON%%%%TOOLS%%bin/wesnoth_addon_manager >- %%TESTS%%bin/wesnoth_test >- %%SERVER%%bin/wesnothd--- 2,9 ---- >- %%TOOLS%%bin/cutter >- %%TOOLS%%bin/exploder >- bin/wesnoth >-+ bin/schema_generator >-+ bin/schema_validator >- %%PYTHON%%%%TOOLS%%bin/wesnoth_addon_manager >- %%TESTS%%bin/wesnoth_test >- %%SERVER%%bin/wesnothd >\ No newline at end of file
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 165332
: 122197 |
122198
|
122199
|
122200
|
122201