View | Details | Raw Unified | Return to bug 154101
Collapse All | Expand All

(-)games/wesnoth-devel/Makefile (-98 / +62 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	wesnoth
8
PORTNAME=	wesnoth
9
PORTVERSION=	1.9.3
9
PORTVERSION=	1.9.4
10
CATEGORIES=	games
10
CATEGORIES=	games
11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \
11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \
12
		http://files.wesnoth.org/
12
		http://files.wesnoth.org/
Lines 25-48 CONFLICTS= wesnoth-[0-9]* Link Here
25
25
26
USE_SDL=	image mixer net ttf
26
USE_SDL=	image mixer net ttf
27
USE_GNOME=	gnometarget pango
27
USE_GNOME=	gnometarget pango
28
USE_GMAKE=	yes
29
MAKE_JOBS_SAFE=	yes
28
MAKE_JOBS_SAFE=	yes
30
USE_BZIP2=	yes
29
USE_BZIP2=	yes
31
USE_AUTOTOOLS=	aclocal autoheader automake autoconf
30
USE_CMAKE=	yes
32
ACLOCAL_ARGS=	-Im4
33
AUTOMAKE_ARGS=	--add-missing --copy
34
CONFIGURE_ENV=	PKG_CONFIG="${PKG_CONFIG}" \
35
		LDFLAGS="${LDFLAGS}"
36
CONFIGURE_ARGS=	--localstatedir=/var \
37
		--with-boost=${LOCALBASE} \
38
		--with-icondir=${PREFIX}/share/pixmaps \
39
		--with-libiconv-prefix=${LOCALBASE} \
40
		--with-libintl-prefix=${LOCALBASE} \
41
		--with-localedir=${PREFIX}/share/locale
42
PKG_CONFIG?=	${LOCALBASE}/bin/pkg-config
43
44
MANLANG=	"" cs de en_GB es et fi fr gl hu id it ja lt pl pt_BR sk \
45
		sr sr@ijekavian sr@ijekavianlatin sr@latin tr zh_CN zh_TW
46
31
47
MAN6=		wesnoth.6
32
MAN6=		wesnoth.6
48
33
Lines 50-215 PORTDOCS= * Link Here
50
PORTDATA=	*
35
PORTDATA=	*
51
36
52
OPTIONS=	ANA	 "Enable Asynchronous Network API (WIP)" On \
37
OPTIONS=	ANA	 "Enable Asynchronous Network API (WIP)" On \
53
		BWMON	 "Enable bandwidth monitoring for server" Off \
54
		CAMPAIGN "Enable campaign server"	On \
38
		CAMPAIGN "Enable campaign server"	On \
55
		EDITOR	 "Enable map editor"		On \
39
		EDITOR	 "Enable map editor"		On \
56
		FRIBIDI	 "Enable bidirectional support"	On \
40
		FRIBIDI	 "Enable bidirectional support"	On \
57
		LOWMEM	 "Reduce memory usage (disables animations)" Off \
41
		LOWMEM	 "Reduce memory usage (disables animations)" Off \
58
		NOTIFY	 "Enable desktop notifications"	On \
42
		NOTIFY	 "Enable desktop notifications"	On \
59
		POOLALLOC "Use wesnoth own memory allocator" Off \
43
		POOLALLOC "Use wesnoth own memory allocator" Off \
60
		PYTHON	 "Enable python developer tools" On \
44
		PYTHON	 "Enable python developer tools" Off \
61
		RAWSOCKETS "Use raw receiving sockets in multiplayer" Off \
45
		RAWSOCKETS "Use raw receiving sockets in multiplayer" Off \
62
		SERVER	 "Enable server"		On \
46
		SERVER	 "Enable server"		On \
63
		TESTS	 "Enable unit tests"		Off \
47
		TESTS	 "Enable unit tests"		Off \
64
		TINYGUI	 "Enable tiny gui (down to 320x200)" Off \
48
		TINYGUI	 "Enable tiny gui (down to 320x200)" Off \
65
		TOOLS	 "Enable extra tools for artists and translators" On
49
		TOOLS	 "Enable extra tools for artists and translators" On
66
50
67
.include <bsd.port.pre.mk>
51
.include <bsd.port.options.mk>
68
69
.if ${OSVERSION} < 700000
70
BROKEN=		does not compile
71
.endif
72
52
73
.if defined(WITH_DEBUG)
53
.if defined(WITH_DEBUG)
74
CONFIGURE_ARGS+=	--enable-debug
54
CMAKE_BUILD_TYPE=	debug
75
.endif
76
77
.if defined(WITH_PROFILE)
78
CONFIGURE_ARGS+=	--enable-profile
79
.endif
55
.endif
80
56
81
# XXX: breaks compilation because of -Werror
57
# XXX: breaks compilation because of -Werror
82
.if !defined(WITH_STRICT)
58
.if !defined(WITH_STRICT)
83
CONFIGURE_ARGS+=	--disable-strict-compilation
59
CMAKE_ARGS+=	-DENABLE_STRICT_COMPILATION=off
84
.endif
60
.endif
85
61
86
.if defined(WITHOUT_ANA)
62
.if defined(WITHOUT_ANA)
87
CONFIGURE_ARGS+=	--disable-ana
63
CMAKE_ARGS+=	-DUSE_ANA_NETWORK=off
88
.else
64
.else
89
CONFIGURE_ARGS+=	--enable-ana
65
CMAKE_ARGS+=	-DUSE_ANA_NETWORK=on
90
.endif
91
92
.if defined(WITHOUT_BWMON)
93
CONFIGURE_ARGS+=	--disable-bandwidth-monitor
94
.else
95
CONFIGURE_ARGS+=	--enable-bandwidth-monitor
96
.endif
66
.endif
97
67
98
.if defined(WITHOUT_CAMPAIGN)
68
.if defined(WITHOUT_CAMPAIGN)
99
CONFIGURE_ARGS+=	--disable-campaign-server
69
CMAKE_ARGS+=	-DENABLE_CAMPAIGN_SERVER=off
100
PLIST_SUB+=		CAMPAIGN="@comment "
70
PLIST_SUB+=	CAMPAIGN="@comment "
101
.else
71
.else
102
CONFIGURE_ARGS+=	--enable-campaign-server
72
CMAKE_ARGS+=	-DENABLE_CAMPAIGN_SERVER=on
103
PLIST_SUB+=		CAMPAIGN=""
73
PLIST_SUB+=	CAMPAIGN=""
104
.endif
74
.endif
105
75
106
.if defined(WITHOUT_EDITOR)
76
.if defined(WITHOUT_EDITOR)
107
CONFIGURE_ARGS+=	--disable-editor
77
CMAKE_ARGS+=	-DENABLE_EDITOR=off
108
PLIST_SUB+=		EDITOR="@comment "
78
PLIST_SUB+=	EDITOR="@comment "
109
.else
79
.else
110
CONFIGURE_ARGS+=	--enable-editor
80
CMAKE_ARGS+=	-DENABLE_EDITOR=on
111
PLIST_SUB+=		EDITOR=""
81
PLIST_SUB+=	EDITOR=""
112
.endif
82
.endif
113
83
114
.if defined(WITHOUT_FRIBIDI)
84
.if defined(WITHOUT_FRIBIDI)
115
CONFIGURE_ARGS+=	--without-fribidi
85
CMAKE_ARGS+=	-DENABLE_FRIBIDI=off
116
.else
86
.else
117
CONFIGURE_ARGS+=	--with-fribidi
87
CMAKE_ARGS+=	-DENABLE_FRIBIDI=on
118
LIB_DEPENDS+=		fribidi.3:${PORTSDIR}/converters/fribidi
88
LIB_DEPENDS+=	fribidi.3:${PORTSDIR}/converters/fribidi
119
.endif
89
.endif
120
90
121
.if defined(WITHOUT_LOWMEM)
91
.if defined(WITHOUT_LOWMEM)
122
CONFIGURE_ARGS+=	--disable-lowmem
92
CMAKE_ARGS+=	-DENABLE_LOW_MEM=off
123
.else
93
.else
124
CONFIGURE_ARGS+=	--enable-lowmem
94
CMAKE_ARGS+=	-DENABLE_LOW_MEM=off
125
.endif
95
.endif
126
96
127
.if defined(WITHOUT_NOTIFY)
97
.if defined(WITHOUT_NOTIFY)
128
CONFIGURE_ARGS+=	--disable-notifications
98
CMAKE_ARGS+=	-DENABLE_NOTIFICATIONS=off
129
.else
99
.else
130
CONFIGURE_ARGS+=	--enable-notifications --enable-dbus
100
CMAKE_ARGS+=	-DENABLE_NOTIFICATIONS=on
131
LIB_DEPENDS+=		dbus-1.3:${PORTSDIR}/devel/dbus
101
LIB_DEPENDS+=	dbus-1.3:${PORTSDIR}/devel/dbus
132
.endif
102
.endif
133
103
134
.if defined(WITHOUT_NLS)
104
.if defined(WITHOUT_NLS)
135
CONFIGURE_ARGS+=	--disable-nls
105
CMAKE_ARGS+=	-DENABLE_NLS=off
136
PLIST_SUB+=		NLS="@comment "
106
PLIST_SUB+=	NLS="@comment "
137
.else
107
.else
138
USE_GETTEXT=		yes
108
CMAKE_ARGS+=	-DENABLE_NLS=on -DLOCALEDIR=${PREFIX}/share/locale
139
CONFIGURE_ARGS+=	--enable-nls
109
USE_GETTEXT=	yes
140
PLIST_SUB+=		NLS=""
110
MANLANG=	"" cs de en_GB et fi fr gl hu id it ja lt pl pt_BR sk \
111
		sr sr@ijekavian sr@ijekavianlatin sr@latin zh_CN zh_TW
112
_MANPAGES+=	${PREFIX}/man/es/man6/wesnothd.6 \
113
		${PREFIX}/man/tr/man6/wesnothd.6
114
PLIST_SUB+=	NLS=""
141
.endif
115
.endif
142
116
143
.if defined(WITHOUT_POOLALLOC)
117
.if defined(WITHOUT_POOLALLOC)
144
CONFIGURE_ARGS+=	--disable-pool-alloc
118
CMAKE_ARGS+=	-DENABLE_POOL_ALLOC=off
145
.else
119
.else
146
CONFIGURE_ARGS+=	--enable-pool-alloc
120
CMAKE_ARGS+=	-DENABLE_POOL_ALLOC=on
147
.endif
121
.endif
148
122
149
.if defined(WITHOUT_PYTHON)
123
.if defined(WITHOUT_PYTHON)
150
CONFIGURE_ARGS+=	--disable-python-install
124
PLIST_SUB+=	PYTHON="@comment "
151
PLIST_SUB+=		PYTHON="@comment "
152
.else
125
.else
153
USE_PYTHON=		yes
126
BROKEN=		cmake build doesn\'t support installing python tools
154
CONFIGURE_ENV+=		PYTHON_PREFIX=${PREFIX} \
127
USE_PYTHON=	yes
155
			PYTHON_VERSION=${PYTHON_VERSION:S/python//}
128
CONFIGURE_ENV+=	PYTHON_PREFIX=${PREFIX} \
156
CONFIGURE_ARGS+=	--enable-python-install
129
		PYTHON_VERSION=${PYTHON_VERSION:S/python//}
157
PLIST_SUB+=		PYTHON=""
130
CONFIGURE_ARGS+=--enable-python-install
158
.include "${PORTSDIR}/Mk/bsd.python.mk"
131
PLIST_SUB+=	PYTHON=""
159
.endif
132
.endif
160
133
161
.if defined(WITHOUT_RAWSOCKETS)
134
.if !defined(WITHOUT_RAWSOCKETS)
162
CONFIGURE_ARGS+=	--disable-raw-sockets
135
CFLAGS+=	-DNETWORK_USE_RAW_SOCKETS
163
.else
164
CONFIGURE_ARGS+=	--enable-raw-sockets
165
.endif
136
.endif
166
137
167
.if defined(WITHOUT_SERVER)
138
.if defined(WITHOUT_SERVER)
168
CONFIGURE_ARGS+=	--disable-server
139
CMAKE_ARGS+=	-DENABLE_SERVER=off
169
PLIST_SUB+=		SERVER="@comment "
140
PLIST_SUB+=	SERVER="@comment "
170
.else
141
.else
171
CONFIGURE_ARGS+=	--enable-server
142
CMAKE_ARGS+=	-DENABLE_SERVER=on
172
MAN6+=			wesnothd.6
143
MAN6+=		wesnothd.6
173
PLIST_SUB+=		SERVER=""
144
PLIST_SUB+=	SERVER=""
174
.endif
145
.endif
175
146
176
.if defined(WITHOUT_TESTS)
147
.if defined(WITHOUT_TESTS)
177
CONFIGURE_ARGS+=	--disable-tests
148
CMAKE_ARGS+=	-DENABLE_TESTS=off
178
PLIST_SUB+=		TESTS="@comment "
149
PLIST_SUB+=	TESTS="@comment "
179
.else
150
.else
180
CONFIGURE_ARGS+=	--enable-tests
151
CMAKE_ARGS+=	-DENABLE_TESTS=on
181
PLIST_SUB+=		TESTS=""
152
PLIST_SUB+=	TESTS=""
182
.endif
153
.endif
183
154
184
.if defined(WITHOUT_TINYGUI)
155
.if !defined(WITHOUT_TINYGUI)
185
CONFIGURE_ARGS+=	--disable-tinygui
156
CMAKE_ARGS+=	-DGUI=tiny
186
.else
157
BUILD_DEPENDS+=	convert:${PORTSDIR}/graphics/ImageMagick
187
BUILD_DEPENDS+=		convert:${PORTSDIR}/graphics/ImageMagick
188
CONFIGURE_ARGS+=	--enable-tinygui
189
.endif
158
.endif
190
159
191
.if defined(WITHOUT_TOOLS)
160
.if defined(WITHOUT_TOOLS)
192
CONFIGURE_ARGS+=	--disable-tools
161
CMAKE_ARGS+=	-DENABLE_TOOLS=off
193
PLIST_SUB+=		TOOLS="@comment "
162
PLIST_SUB+=	TOOLS="@comment "
194
.else
163
.else
195
CONFIGURE_ARGS+=	--enable-tools
164
CMAKE_ARGS+=	-DENABLE_TOOLS=on
196
PLIST_SUB+=		TOOLS=""
165
PLIST_SUB+=	TOOLS=""
197
.endif
166
.endif
198
167
199
.if defined(NOPORTDOCS)
168
.if defined(NOPORTDOCS)
200
CONFIGURE_ARGS+=	--without-docs
169
CMAKE_ARGS+=	-DDOCDIR=none
201
.endif
170
.endif
202
171
203
.if defined(NOPORTDATA)
172
.if defined(NOPORTDATA)
204
IGNORE=		game data is required, undefine NOPORTDATA
173
IGNORE=		game data is required, undefine NOPORTDATA
205
.endif
174
.endif
206
175
207
post-patch:	.SILENT
208
	${REINPLACE_CMD} -e 's|png_voidp_NULL|NULL|g' \
209
		-e 's|png_error_ptr_NULL|NULL|g' \
210
		${WRKSRC}/src/tools/exploder_utils.cpp
211
212
post-install:
176
post-install:
213
	-update-desktop-database ${PREFIX}/share/applications
177
	-update-desktop-database ${PREFIX}/share/applications
214
178
215
.include <bsd.port.post.mk>
179
.include <bsd.port.mk>
(-)games/wesnoth-devel/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (wesnoth-1.9.3.tar.bz2) = 1c804b20cc20636ce2ca216d6b304c1c76ff8f8430a0eb85e44029da3aa46bdf
1
SHA256 (wesnoth-1.9.4.tar.bz2) = 8644fc2efe071c91a306ca91419ccd11221c6930a1889d356c3a31501765e8d0
2
SIZE (wesnoth-1.9.3.tar.bz2) = 332594366
2
SIZE (wesnoth-1.9.4.tar.bz2) = 334376625
(-)games/wesnoth-devel/pkg-plist (+79 lines)
Lines 41-46 share/applications/wesnoth.desktop Link Here
41
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dw.mo
41
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dw.mo
42
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-editor.mo
42
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-editor.mo
43
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ei.mo
43
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ei.mo
44
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-help.mo
44
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo
45
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo
45
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-l.mo
46
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-l.mo
46
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-lib.mo
47
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-lib.mo
Lines 65-70 share/applications/wesnoth.desktop Link Here
65
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dw.mo
66
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dw.mo
66
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-editor.mo
67
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-editor.mo
67
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-ei.mo
68
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-ei.mo
69
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-help.mo
68
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo
70
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo
69
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-l.mo
71
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-l.mo
70
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-lib.mo
72
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-lib.mo
Lines 89-94 share/applications/wesnoth.desktop Link Here
89
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dw.mo
91
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dw.mo
90
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-editor.mo
92
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-editor.mo
91
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ei.mo
93
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ei.mo
94
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-help.mo
92
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo
95
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo
93
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-l.mo
96
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-l.mo
94
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-lib.mo
97
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-lib.mo
Lines 113-118 share/applications/wesnoth.desktop Link Here
113
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dw.mo
116
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dw.mo
114
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
117
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
115
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
118
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
119
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-help.mo
116
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
120
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
117
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-l.mo
121
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-l.mo
118
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-lib.mo
122
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-lib.mo
Lines 137-142 share/applications/wesnoth.desktop Link Here
137
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dw.mo
141
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dw.mo
138
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo
142
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo
139
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo
143
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo
144
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-help.mo
140
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo
145
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo
141
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-l.mo
146
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-l.mo
142
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-lib.mo
147
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-lib.mo
Lines 161-166 share/applications/wesnoth.desktop Link Here
161
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dw.mo
166
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dw.mo
162
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-editor.mo
167
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-editor.mo
163
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-ei.mo
168
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-ei.mo
169
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-help.mo
164
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo
170
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo
165
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-l.mo
171
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-l.mo
166
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-lib.mo
172
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-lib.mo
Lines 185-190 share/applications/wesnoth.desktop Link Here
185
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dw.mo
191
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dw.mo
186
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-editor.mo
192
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-editor.mo
187
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-ei.mo
193
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-ei.mo
194
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-help.mo
188
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo
195
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo
189
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-l.mo
196
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-l.mo
190
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-lib.mo
197
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-lib.mo
Lines 209-214 share/applications/wesnoth.desktop Link Here
209
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dw.mo
216
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dw.mo
210
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-editor.mo
217
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-editor.mo
211
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-ei.mo
218
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-ei.mo
219
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-help.mo
212
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo
220
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo
213
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-l.mo
221
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-l.mo
214
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-lib.mo
222
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-lib.mo
Lines 233-238 share/applications/wesnoth.desktop Link Here
233
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dw.mo
241
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dw.mo
234
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-editor.mo
242
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-editor.mo
235
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-ei.mo
243
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-ei.mo
244
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-help.mo
236
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo
245
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo
237
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-l.mo
246
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-l.mo
238
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-lib.mo
247
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-lib.mo
Lines 257-262 share/applications/wesnoth.desktop Link Here
257
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dw.mo
266
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dw.mo
258
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-editor.mo
267
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-editor.mo
259
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-ei.mo
268
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-ei.mo
269
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-help.mo
260
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-httt.mo
270
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-httt.mo
261
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-l.mo
271
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-l.mo
262
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-lib.mo
272
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-lib.mo
Lines 281-286 share/applications/wesnoth.desktop Link Here
281
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dw.mo
291
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dw.mo
282
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo
292
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo
283
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo
293
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo
294
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-help.mo
284
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo
295
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo
285
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-l.mo
296
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-l.mo
286
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-lib.mo
297
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-lib.mo
Lines 305-310 share/applications/wesnoth.desktop Link Here
305
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dw.mo
316
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dw.mo
306
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-editor.mo
317
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-editor.mo
307
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ei.mo
318
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ei.mo
319
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-help.mo
308
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo
320
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo
309
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-l.mo
321
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-l.mo
310
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-lib.mo
322
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-lib.mo
Lines 329-334 share/applications/wesnoth.desktop Link Here
329
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dw.mo
341
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dw.mo
330
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-editor.mo
342
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-editor.mo
331
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-ei.mo
343
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-ei.mo
344
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-help.mo
332
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo
345
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo
333
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-l.mo
346
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-l.mo
334
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-lib.mo
347
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-lib.mo
Lines 353-358 share/applications/wesnoth.desktop Link Here
353
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dw.mo
366
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dw.mo
354
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-editor.mo
367
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-editor.mo
355
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-ei.mo
368
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-ei.mo
369
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-help.mo
356
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo
370
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo
357
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-l.mo
371
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-l.mo
358
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-lib.mo
372
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-lib.mo
Lines 377-382 share/applications/wesnoth.desktop Link Here
377
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dw.mo
391
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dw.mo
378
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-editor.mo
392
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-editor.mo
379
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-ei.mo
393
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-ei.mo
394
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-help.mo
380
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo
395
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo
381
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-l.mo
396
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-l.mo
382
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-lib.mo
397
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-lib.mo
Lines 401-406 share/applications/wesnoth.desktop Link Here
401
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dw.mo
416
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dw.mo
402
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-editor.mo
417
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-editor.mo
403
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-ei.mo
418
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-ei.mo
419
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-help.mo
404
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo
420
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo
405
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-l.mo
421
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-l.mo
406
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-lib.mo
422
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-lib.mo
Lines 425-430 share/applications/wesnoth.desktop Link Here
425
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dw.mo
441
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dw.mo
426
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-editor.mo
442
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-editor.mo
427
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-ei.mo
443
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-ei.mo
444
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-help.mo
428
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo
445
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo
429
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-l.mo
446
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-l.mo
430
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-lib.mo
447
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-lib.mo
Lines 449-454 share/applications/wesnoth.desktop Link Here
449
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dw.mo
466
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dw.mo
450
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-editor.mo
467
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-editor.mo
451
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-ei.mo
468
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-ei.mo
469
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-help.mo
452
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo
470
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo
453
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-l.mo
471
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-l.mo
454
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-lib.mo
472
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-lib.mo
Lines 466-471 share/applications/wesnoth.desktop Link Here
466
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-units.mo
484
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-units.mo
467
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-utbs.mo
485
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-utbs.mo
468
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth.mo
486
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth.mo
487
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-anl.mo
488
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-aoi.mo
489
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-did.mo
490
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dm.mo
491
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dw.mo
492
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-editor.mo
493
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-ei.mo
494
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-help.mo
495
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-httt.mo
496
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-l.mo
497
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-lib.mo
498
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-low.mo
499
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-multiplayer.mo
500
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-nr.mo
501
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sof.mo
502
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sotbe.mo
503
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tb.mo
504
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-test.mo
505
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-thot.mo
506
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-trow.mo
507
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tsg.mo
508
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tutorial.mo
509
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-units.mo
510
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-utbs.mo
511
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth.mo
469
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-anl.mo
512
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-anl.mo
470
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-aoi.mo
513
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-aoi.mo
471
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-did.mo
514
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-did.mo
Lines 473-478 share/applications/wesnoth.desktop Link Here
473
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dw.mo
516
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dw.mo
474
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-editor.mo
517
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-editor.mo
475
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ei.mo
518
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ei.mo
519
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-help.mo
476
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo
520
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo
477
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-l.mo
521
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-l.mo
478
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-lib.mo
522
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-lib.mo
Lines 497-502 share/applications/wesnoth.desktop Link Here
497
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dw.mo
541
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dw.mo
498
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-editor.mo
542
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-editor.mo
499
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-ei.mo
543
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-ei.mo
544
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-help.mo
500
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo
545
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo
501
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-l.mo
546
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-l.mo
502
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-lib.mo
547
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-lib.mo
Lines 521-526 share/applications/wesnoth.desktop Link Here
521
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dw.mo
566
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dw.mo
522
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-editor.mo
567
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-editor.mo
523
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-ei.mo
568
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-ei.mo
569
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-help.mo
524
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo
570
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo
525
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-l.mo
571
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-l.mo
526
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-lib.mo
572
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-lib.mo
Lines 545-550 share/applications/wesnoth.desktop Link Here
545
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dw.mo
591
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dw.mo
546
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-editor.mo
592
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-editor.mo
547
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-ei.mo
593
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-ei.mo
594
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-help.mo
548
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo
595
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo
549
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-l.mo
596
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-l.mo
550
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-lib.mo
597
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-lib.mo
Lines 569-574 share/applications/wesnoth.desktop Link Here
569
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dw.mo
616
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dw.mo
570
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-editor.mo
617
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-editor.mo
571
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-ei.mo
618
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-ei.mo
619
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-help.mo
572
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo
620
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo
573
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-l.mo
621
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-l.mo
574
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-lib.mo
622
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-lib.mo
Lines 593-598 share/applications/wesnoth.desktop Link Here
593
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dw.mo
641
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dw.mo
594
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-editor.mo
642
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-editor.mo
595
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-ei.mo
643
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-ei.mo
644
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-help.mo
596
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo
645
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo
597
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-l.mo
646
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-l.mo
598
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-lib.mo
647
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-lib.mo
Lines 617-622 share/applications/wesnoth.desktop Link Here
617
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dw.mo
666
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dw.mo
618
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-editor.mo
667
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-editor.mo
619
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-ei.mo
668
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-ei.mo
669
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-help.mo
620
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo
670
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo
621
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-l.mo
671
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-l.mo
622
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-lib.mo
672
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-lib.mo
Lines 641-646 share/applications/wesnoth.desktop Link Here
641
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dw.mo
691
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dw.mo
642
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-editor.mo
692
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-editor.mo
643
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-ei.mo
693
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-ei.mo
694
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-help.mo
644
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo
695
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo
645
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-l.mo
696
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-l.mo
646
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-lib.mo
697
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-lib.mo
Lines 665-670 share/applications/wesnoth.desktop Link Here
665
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dw.mo
716
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dw.mo
666
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-editor.mo
717
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-editor.mo
667
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-ei.mo
718
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-ei.mo
719
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-help.mo
668
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo
720
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo
669
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-l.mo
721
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-l.mo
670
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-lib.mo
722
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-lib.mo
Lines 689-694 share/applications/wesnoth.desktop Link Here
689
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dw.mo
741
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dw.mo
690
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-editor.mo
742
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-editor.mo
691
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-ei.mo
743
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-ei.mo
744
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-help.mo
692
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo
745
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo
693
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-l.mo
746
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-l.mo
694
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-lib.mo
747
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-lib.mo
Lines 713-718 share/applications/wesnoth.desktop Link Here
713
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dw.mo
766
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dw.mo
714
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-editor.mo
767
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-editor.mo
715
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-ei.mo
768
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-ei.mo
769
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-help.mo
716
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo
770
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo
717
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-l.mo
771
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-l.mo
718
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-lib.mo
772
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-lib.mo
Lines 737-742 share/applications/wesnoth.desktop Link Here
737
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dw.mo
791
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dw.mo
738
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-editor.mo
792
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-editor.mo
739
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-ei.mo
793
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-ei.mo
794
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-help.mo
740
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo
795
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo
741
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-l.mo
796
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-l.mo
742
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-lib.mo
797
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-lib.mo
Lines 761-766 share/applications/wesnoth.desktop Link Here
761
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dw.mo
816
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dw.mo
762
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-editor.mo
817
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-editor.mo
763
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-ei.mo
818
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-ei.mo
819
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-help.mo
764
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo
820
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo
765
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-l.mo
821
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-l.mo
766
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-lib.mo
822
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-lib.mo
Lines 785-790 share/applications/wesnoth.desktop Link Here
785
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dw.mo
841
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dw.mo
786
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-editor.mo
842
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-editor.mo
787
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-ei.mo
843
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-ei.mo
844
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-help.mo
788
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo
845
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo
789
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-l.mo
846
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-l.mo
790
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-lib.mo
847
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-lib.mo
Lines 809-814 share/applications/wesnoth.desktop Link Here
809
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dw.mo
866
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dw.mo
810
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo
867
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo
811
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo
868
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo
869
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-help.mo
812
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo
870
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo
813
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-l.mo
871
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-l.mo
814
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-lib.mo
872
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-lib.mo
Lines 833-838 share/applications/wesnoth.desktop Link Here
833
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dw.mo
891
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dw.mo
834
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-editor.mo
892
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-editor.mo
835
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-ei.mo
893
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-ei.mo
894
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-help.mo
836
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo
895
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo
837
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-l.mo
896
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-l.mo
838
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-lib.mo
897
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-lib.mo
Lines 857-862 share/applications/wesnoth.desktop Link Here
857
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dw.mo
916
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dw.mo
858
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-editor.mo
917
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-editor.mo
859
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-ei.mo
918
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-ei.mo
919
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-help.mo
860
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo
920
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo
861
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-l.mo
921
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-l.mo
862
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-lib.mo
922
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-lib.mo
Lines 881-886 share/applications/wesnoth.desktop Link Here
881
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dw.mo
941
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dw.mo
882
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo
942
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo
883
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo
943
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo
944
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-help.mo
884
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo
945
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo
885
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-l.mo
946
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-l.mo
886
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-lib.mo
947
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-lib.mo
Lines 905-910 share/applications/wesnoth.desktop Link Here
905
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dw.mo
966
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dw.mo
906
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo
967
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo
907
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo
968
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo
969
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-help.mo
908
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo
970
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo
909
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-l.mo
971
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-l.mo
910
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo
972
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo
Lines 929-934 share/applications/wesnoth.desktop Link Here
929
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dw.mo
991
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dw.mo
930
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-editor.mo
992
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-editor.mo
931
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-ei.mo
993
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-ei.mo
994
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-help.mo
932
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo
995
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo
933
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-l.mo
996
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-l.mo
934
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-lib.mo
997
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-lib.mo
Lines 953-958 share/applications/wesnoth.desktop Link Here
953
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dw.mo
1016
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dw.mo
954
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-editor.mo
1017
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-editor.mo
955
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-ei.mo
1018
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-ei.mo
1019
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-help.mo
956
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo
1020
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo
957
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-l.mo
1021
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-l.mo
958
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-lib.mo
1022
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-lib.mo
Lines 977-982 share/applications/wesnoth.desktop Link Here
977
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dw.mo
1041
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dw.mo
978
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-editor.mo
1042
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-editor.mo
979
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-ei.mo
1043
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-ei.mo
1044
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-help.mo
980
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo
1045
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo
981
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-l.mo
1046
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-l.mo
982
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-lib.mo
1047
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-lib.mo
Lines 1001-1006 share/applications/wesnoth.desktop Link Here
1001
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dw.mo
1066
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dw.mo
1002
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-editor.mo
1067
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-editor.mo
1003
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-ei.mo
1068
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-ei.mo
1069
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-help.mo
1004
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo
1070
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo
1005
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-l.mo
1071
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-l.mo
1006
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-lib.mo
1072
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-lib.mo
Lines 1025-1030 share/applications/wesnoth.desktop Link Here
1025
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dw.mo
1091
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dw.mo
1026
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-editor.mo
1092
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-editor.mo
1027
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-ei.mo
1093
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-ei.mo
1094
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-help.mo
1028
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo
1095
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo
1029
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-l.mo
1096
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-l.mo
1030
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-lib.mo
1097
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-lib.mo
Lines 1049-1054 share/applications/wesnoth.desktop Link Here
1049
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dw.mo
1116
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dw.mo
1050
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo
1117
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo
1051
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo
1118
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo
1119
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-help.mo
1052
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo
1120
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo
1053
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-l.mo
1121
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-l.mo
1054
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-lib.mo
1122
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-lib.mo
Lines 1073-1078 share/applications/wesnoth.desktop Link Here
1073
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dw.mo
1141
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dw.mo
1074
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-editor.mo
1142
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-editor.mo
1075
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-ei.mo
1143
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-ei.mo
1144
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-help.mo
1076
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-httt.mo
1145
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-httt.mo
1077
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-l.mo
1146
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-l.mo
1078
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-lib.mo
1147
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-lib.mo
Lines 1097-1102 share/applications/wesnoth.desktop Link Here
1097
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dw.mo
1166
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dw.mo
1098
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo
1167
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo
1099
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo
1168
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo
1169
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-help.mo
1100
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo
1170
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo
1101
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-l.mo
1171
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-l.mo
1102
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-lib.mo
1172
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-lib.mo
Lines 1121-1126 share/applications/wesnoth.desktop Link Here
1121
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dw.mo
1191
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dw.mo
1122
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo
1192
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo
1123
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo
1193
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo
1194
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-help.mo
1124
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo
1195
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo
1125
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-l.mo
1196
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-l.mo
1126
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-lib.mo
1197
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-lib.mo
Lines 1145-1150 share/applications/wesnoth.desktop Link Here
1145
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dw.mo
1216
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dw.mo
1146
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-editor.mo
1217
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-editor.mo
1147
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-ei.mo
1218
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-ei.mo
1219
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-help.mo
1148
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo
1220
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo
1149
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-l.mo
1221
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-l.mo
1150
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-lib.mo
1222
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-lib.mo
Lines 1169-1174 share/applications/wesnoth.desktop Link Here
1169
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dw.mo
1241
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dw.mo
1170
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-editor.mo
1242
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-editor.mo
1171
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-ei.mo
1243
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-ei.mo
1244
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-help.mo
1172
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo
1245
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo
1173
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-l.mo
1246
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-l.mo
1174
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-lib.mo
1247
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-lib.mo
Lines 1193-1198 share/applications/wesnoth.desktop Link Here
1193
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dw.mo
1266
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dw.mo
1194
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-editor.mo
1267
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-editor.mo
1195
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-ei.mo
1268
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-ei.mo
1269
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-help.mo
1196
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo
1270
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo
1197
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-l.mo
1271
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-l.mo
1198
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-lib.mo
1272
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-lib.mo
Lines 1217-1222 share/applications/wesnoth.desktop Link Here
1217
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dw.mo
1291
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dw.mo
1218
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-editor.mo
1292
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-editor.mo
1219
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ei.mo
1293
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ei.mo
1294
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-help.mo
1220
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-httt.mo
1295
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-httt.mo
1221
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-l.mo
1296
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-l.mo
1222
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-lib.mo
1297
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-lib.mo
Lines 1241-1246 share/applications/wesnoth.desktop Link Here
1241
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dw.mo
1316
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dw.mo
1242
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo
1317
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo
1243
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo
1318
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo
1319
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-help.mo
1244
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo
1320
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo
1245
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-l.mo
1321
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-l.mo
1246
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-lib.mo
1322
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-lib.mo
Lines 1265-1270 share/applications/wesnoth.desktop Link Here
1265
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dw.mo
1341
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dw.mo
1266
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo
1342
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo
1267
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo
1343
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo
1344
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-help.mo
1268
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo
1345
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo
1269
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-l.mo
1346
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-l.mo
1270
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-lib.mo
1347
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-lib.mo
Lines 1321-1326 share/pixmaps/wesnoth-icon.png Link Here
1321
@dirrmtry man/fr
1398
@dirrmtry man/fr
1322
@dirrmtry man/fur_IT/man6
1399
@dirrmtry man/fur_IT/man6
1323
@dirrmtry man/fur_IT
1400
@dirrmtry man/fur_IT
1401
@dirrmtry man/ga/man6
1402
@dirrmtry man/ga
1324
@dirrmtry man/gl/man6
1403
@dirrmtry man/gl/man6
1325
@dirrmtry man/gl
1404
@dirrmtry man/gl
1326
@dirrmtry man/he/man6
1405
@dirrmtry man/he/man6
(-)games/wesnoth-devel/files/patch-CMakeLists.txt (+82 lines)
Added Link Here
1
--- CMakeLists.txt~
2
+++ CMakeLists.txt
3
@@ -21,11 +21,10 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR
4
 find_package(SDL 1.2.7 REQUIRED)
5
 find_package(Boost 1.35 REQUIRED COMPONENTS iostreams regex)
6
 
7
-# no, gettext executables are not required when NLS is deactivated
8
+if(ENABLE_NLS)
9
 find_package(Gettext)
10
-# yes, libintl is *required* even when NLS is deactivated (this is to compile
11
-# src/gettext.cpp since it includes libintl.h)
12
 find_package(Libintl REQUIRED)
13
+endif(ENABLE_NLS)
14
 
15
 find_package(X11)
16
 
17
@@ -68,7 +67,7 @@ option(ENABLE_GAME "Enable compilation o
18
 option(ENABLE_CAMPAIGN_SERVER "Enable compilation of campaign server")
19
 option(ENABLE_SERVER "Enable compilation of server" ON)
20
 option(ENABLE_EDITOR "Enable compilation of the new map editor into the game executable" ON)
21
-option(ENABLE_TOOLS "Enable building and installation of tools for artists and WML maintainers")
22
+option(ENABLE_TOOLS "Enable building and installation of tools for artists and WML maintainers" OFF)
23
 option(ENABLE_TESTS "Build unit tests")
24
 option(ENABLE_NLS "Enable building of translations" ON)
25
 option(ENABLE_POOL_ALLOC "Enable custom pool malloc" OFF)
26
@@ -114,18 +113,18 @@ if(CMAKE_COMPILER_IS_GNUCXX)
27
 		endif(ENABLE_STRICT_COMPILATION)
28
 
29
 		# Strict compilation for C files is disabled until somebody wants to clean them.
30
-		set(CMAKE_C_FLAGS "-O2 -W -Wall -ansi $ENV{CFLAGS}" 
31
+		set(CMAKE_C_FLAGS "-W -Wall -ansi $ENV{CFLAGS}" 
32
 				CACHE STRING "Flags used by the C compiler during normal builds." FORCE)
33
-		set(CMAKE_C_FLAGS_DEBUG "-O0 -DDEBUG -ggdb3 -W -Wall -ansi $ENV{CFLAGS}"
34
+		set(CMAKE_C_FLAGS_DEBUG "-DDEBUG -W -Wall -ansi $ENV{CFLAGS}"
35
 				CACHE STRING "Flags used by the C compiler during debug builds." FORCE)
36
-		set(CMAKE_C_FLAGS_RELEASE "-O3 -DNDEBUG -W -Wall -ansi $ENV{CFLAGS} -Wno-unused"
37
+		set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG -W -Wall -ansi $ENV{CFLAGS} -Wno-unused"
38
 				CACHE STRING "Flags used by the C compiler during release builds." FORCE)
39
 
40
-		set(CMAKE_CXX_FLAGS "-O2 -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}"
41
+		set(CMAKE_CXX_FLAGS "-W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}"
42
 				CACHE STRING "Flags used by the CXX compiler during normal builds." FORCE)
43
-		set(CMAKE_CXX_FLAGS_DEBUG "-O0 -DDEBUG -ggdb3 -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}"
44
+		set(CMAKE_CXX_FLAGS_DEBUG "-DDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}"
45
 				CACHE STRING "Flags used by the CXX compiler during debug builds." FORCE)
46
-		set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS} -Wno-unused"
47
+		set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS} -Wno-unused"
48
 				CACHE STRING "Flags used by the CXX compiler during release builds." FORCE)
49
 
50
 	endif(NOT CONFIGURED)
51
@@ -151,9 +150,15 @@ if(X11_FOUND)
52
 	add_definitions(-D_X11)
53
 endif(X11_FOUND)
54
 
55
+if(IS_ABSOLUTE ${LOCALEDIR})
56
+	set(LOCALE_INSTALL ${LOCALEDIR})
57
+	add_definitions(-DLOCALEDIR=\\\"${LOCALE_INSTALL}\\\")
58
+	set(LOCALEDIR "translations")
59
+else(IS_ABSOLUTE ${LOCALEDIR})
60
 add_definitions(-DHAS_RELATIVE_LOCALEDIR=1)
61
 add_definitions(-DLOCALEDIR=\\\"${LOCALEDIR}\\\")
62
 set(LOCALE_INSTALL ${DATADIR}/${LOCALEDIR})
63
+endif(IS_ABSOLUTE ${LOCALEDIR})
64
 
65
 add_definitions(-DFIFODIR=\\\"${FIFO_DIR}\\\")
66
 
67
@@ -201,10 +206,14 @@ if(ENABLE_GAME)
68
 		pkg_check_modules( FONTCONFIG REQUIRED fontconfig>=2.4.1 )
69
 	endif(NOT MSVC)
70
 
71
-	find_package( FriBiDi )
72
+	pkg_check_modules( FRIBIDI fribidi>=0.19.0 )
73
 	if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES)
74
 		add_definitions(-DHAVE_FRIBIDI)
75
 	elseif(ENABLE_FRIBIDI AND NOT FRIBIDI_LIBRARIES)
76
+		pkg_check_modules( FRIBIDI fribidi )
77
+		if(FRIBIDI_LIBRARIES)
78
+			add_definitions(-DOLD_FRIBIDI)
79
+		endif(FRIBIDI_LIBRARIES)
80
 		message("Could not find FriBiDi. Disabling FriBiDi support.")
81
 	endif()
82
 
(-)games/wesnoth-devel/files/patch-Makefile.am (-18 lines)
Removed Link Here
1
--- Makefile.am~
2
+++ Makefile.am
3
@@ -73,6 +73,7 @@ if INSTALLDATA
4
 	  echo $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pkgdatadir)/$$f"; \
5
 	  $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pkgdatadir)/$$f"; \
6
 	done
7
+if INSTALLDOCS
8
 	@echo "Replicate doc directory skeleton under target doc subdirectory"
9
 	@echo "Then copy all corresponding files."
10
 	test -z "$(docdir)" || $(mkdir_p) "$(DESTDIR)$(docdir)"
11
@@ -84,6 +85,7 @@ if INSTALLDATA
12
 	  echo $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \
13
 	  $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; cd ..; \
14
 	done
15
+endif
16
 if TINYGUI
17
 	@echo "Shrink installed images by a factor of two."
18
 	(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 \
(-)games/wesnoth-devel/files/patch-configure.ac (-14 lines)
Removed Link Here
1
--- configure.ac~
2
+++ configure.ac
3
@@ -213,6 +213,11 @@ esac
4
 AC_SUBST([FULLLOCALEDIR])
5
 AC_SUBST([HAS_RELATIVE_LOCALEDIR])
6
 
7
+AC_ARG_WITH([docs],
8
+	         AS_HELP_STRING([--without-docs], [don't install wesnoth manual]),
9
+	      [docs=$withval],
10
+	      [docs=yes])
11
+AM_CONDITIONAL([INSTALLDOCS], [test x$docs = xyes])
12
 
13
 AC_ARG_ENABLE([game],
14
               AS_HELP_STRING([--disable-game], [disable compilation of game]),
(-)games/wesnoth-devel/files/patch-doc-CMakeLists.txt (+7 lines)
Added Link Here
1
--- doc/CMakeLists.txt~
2
+++ doc/CMakeLists.txt
3
@@ -1,2 +1,4 @@
4
 add_subdirectory(man)
5
+if(NOT DOCDIR STREQUAL "none")
6
 add_subdirectory(manual)
7
+endif(NOT DOCDIR STREQUAL "none")
(-)games/wesnoth-devel/files/patch-m4-boost.m4 (-11 lines)
Removed Link Here
1
--- m4/boost.m4~	2010-05-27 11:37:13.000000000 +0400
2
+++ m4/boost.m4	2010-08-23 07:12:17.014432212 +0400
3
@@ -729,7 +729,7 @@ AC_CACHE_CHECK([for the flags needed to 
4
   esac
5
   # Generate the test file.
6
   AC_LANG_CONFTEST([AC_LANG_PROGRAM([#include <pthread.h>],
7
-    [pthread_t th; pthread_join(th, 0);
8
+    [pthread_t th=NULL; pthread_join(th, 0);
9
     pthread_attr_init(0); pthread_cleanup_push(0, 0);
10
     pthread_create(0,0,0,0); pthread_cleanup_pop(0);])])
11
   for boost_pthread_flag in '' $boost_pthread_flags; do
(-)games/wesnoth-devel/files/patch-m4-zlib.m4 (-15 lines)
Removed Link Here
1
--- m4/zlib.m4~
2
+++ m4/zlib.m4
3
@@ -16,11 +16,9 @@ fi
4
 AC_MSG_CHECKING([for zlib location])
5
 if test x"$zlib_prefix" = x ; then
6
   zlib_header_found="no"
7
-  for dir in /usr/local /usr ; do
8
+  for dir in /usr ; do
9
   if test -f "$dir/include/zlib.h" ; then
10
     zlib_header_found="yes"
11
-    ZLIB_CFLAGS="-I$dir/include"
12
-    ZLIB_LDFLAGS="-L$dir/lib"
13
     break
14
   fi
15
   done
(-)games/wesnoth-devel/files/patch-po-CMakeLists.txt (+24 lines)
Added Link Here
1
--- po/CMakeLists.txt~
2
+++ po/CMakeLists.txt
3
@@ -273,9 +273,6 @@ if(ENABLE_NLS)
4
 				COMMENT "mo-update [${DOMAIN}-${LINGUA}]: Creating mo file."
5
 			)
6
 
7
-			install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo
8
-					DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES)
9
-
10
 			set(mo-update-SRC ${mo-update-SRC} 
11
 				${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo
12
 			)
13
@@ -285,6 +282,11 @@ if(ENABLE_NLS)
14
 
15
 		endforeach(DOMAIN ${DOMAINS})
16
 
17
+		foreach(DOMAIN ${NORMAL_DOMAINS})
18
+			install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo
19
+					DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES)
20
+		endforeach(DOMAIN ${NORMAL_DOMAINS})
21
+
22
 		if(ENABLE_POT_UPDATE_TARGET)
23
 			add_custom_target(mo-update-${LINGUA}
24
 				COMMENT "mo-update ${LINGUA}: Done."
(-)games/wesnoth-devel/files/patch-src-CMakeLists.txt (+36 lines)
Added Link Here
1
--- src/CMakeLists.txt~
2
+++ src/CMakeLists.txt
3
@@ -123,7 +123,7 @@ set(tools-external-libs
4
 )
5
 
6
 if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES)
7
-	include_directories( ${FRIBIDI_INCLUDE_DIR} )
8
+	include_directories( ${FRIBIDI_INCLUDE_DIRS} )
9
 	set(game-external-libs ${game-external-libs} ${FRIBIDI_LIBRARIES})
10
 endif(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES)
11
 
12
@@ -782,6 +782,13 @@ set_target_properties(cutter PROPERTIES 
13
 
14
 install(TARGETS cutter DESTINATION ${BINDIR})
15
 
16
+set(tools_data ../data/tools/wmlscope
17
+               ../data/tools/wmllint
18
+               ../data/tools/wmlindent
19
+               ../data/tools/wesnoth_addon_manager )
20
+
21
+install(FILES ${tools_data} DESTINATION ${BINDIR})
22
+
23
 endif(ENABLE_TOOLS)
24
 
25
 ########### Unit tests ###############
26
@@ -826,7 +833,9 @@ if(ENABLE_TESTS)
27
 		boost_unit_test_framework
28
 	)
29
 	set_target_properties(test
30
-		PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}test${BINARY_SUFFIX}
31
+		PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}wesnoth_test${BINARY_SUFFIX}
32
 	)
33
+
34
+	install(TARGETS test DESTINATION ${BINDIR})
35
 endif(ENABLE_TESTS)
36
 
(-)games/wesnoth-devel/files/patch-src-Makefile.am (-38 lines)
Removed Link Here
1
--- src/Makefile.am~
2
+++ src/Makefile.am
3
@@ -16,7 +16,7 @@ bin_PROGRAMS += campaignd
4
 endif
5
 
6
 if TESTS
7
-bin_PROGRAMS += test
8
+bin_PROGRAMS += wesnoth_test
9
 endif
10
 
11
 CLEANFILES = revision.hpp
12
@@ -342,7 +342,7 @@ cutter_DEPENDENCIES=libwesnoth-core.a
13
 #    Unit tests                                                             #
14
 #############################################################################
15
 
16
-test_SOURCES =  \
17
+wesnoth_test_SOURCES =  \
18
 	tests/main.cpp \
19
 	tests/utils/fake_display.cpp \
20
 	tests/utils/fake_event_source.cpp \
21
@@ -450,12 +450,12 @@ test_SOURCES =  \
22
 	tests/gui/test_save_dialog.cpp \
23
 	$(wesnoth_source)
24
 
25
-test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS) lua/liblua.a
26
-test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a lua/liblua.a
27
+wesnoth_test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS) lua/liblua.a
28
+wesnoth_test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a lua/liblua.a
29
 if ANA
30
-test_LDADD += $(BOOST_SYSTEM_LIBS) $(BOOST_THREAD_LIBS) -lana
31
-test_DEPENDENCIES += libana.a
32
-test_SOURCES += network_worker.cpp
33
+wesnoth_test_LDADD += $(BOOST_SYSTEM_LIBS) $(BOOST_THREAD_LIBS) -lana
34
+wesnoth_test_DEPENDENCIES += libana.a
35
+wesnoth_test_SOURCES += network_worker.cpp
36
 endif
37
 
38
 #############################################################################
(-)games/wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt (+32 lines)
Added Link Here
1
--- src/ana/src/CMakeLists.txt~
2
+++ src/ana/src/CMakeLists.txt
3
@@ -4,7 +4,7 @@ include_directories( ../api )
4
 
5
 find_package( Boost 1.35 REQUIRED COMPONENTS thread system)
6
 
7
-set ( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -ggdb3" )
8
+set ( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}" )
9
 
10
 set ( common_srcs asio_listener.cpp asio_sender.cpp asio_timers.cpp )
11
 
12
@@ -20,19 +20,9 @@ target_link_libraries( ana-static ${Boos
13
 
14
 set ( CMAKE_INSTALL_PREFIX /usr/local )
15
 
16
-IF(NOT MSVC)
17
-       set ( CMAKE_INSTALL_PREFIX /usr/local )
18
-       install ( TARGETS ana LIBRARY DESTINATION lib )
19
-       install ( TARGETS ana-static ARCHIVE DESTINATION lib )
20
-ENDIF(NOT MSVC)
21
-
22
 set ( ana_headers ../api/ana.hpp
23
                   ../api/common.hpp
24
                   ../api/timers.hpp
25
                   ../api/buffers.hpp
26
                   ../api/predicates.hpp
27
                   ../api/binary_streams.hpp )
28
-
29
-IF(NOT MSVC)
30
-       install ( FILES  ${ana_headers} DESTINATION include/ana )
31
-ENDIF(NOT MSVC)
32
\ No newline at end of file
(-)games/wesnoth-devel/files/patch-src-tests-main.cpp (-10 lines)
Removed Link Here
1
--- src/tests/main.cpp~
2
+++ src/tests/main.cpp
3
@@ -15,6 +15,7 @@
4
 #define GETTEXT_DOMAIN "wesnoth-test"
5
 
6
 
7
+#define BOOST_TEST_DYN_LINK
8
 #define BOOST_TEST_MODULE wesnoth unit tests master suite
9
 #include <boost/test/unit_test.hpp>
10
 #include <boost/test/unit_test_monitor.hpp>

Return to bug 154101