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

(-)games/boswars/Makefile (-25 / +16 lines)
Lines 6-61 Link Here
6
#
6
#
7
7
8
PORTNAME=	boswars
8
PORTNAME=	boswars
9
PORTVERSION=	2.5
9
PORTVERSION=	2.6.1
10
PORTREVISION=	3
11
CATEGORIES=	games
10
CATEGORIES=	games
12
MASTER_SITES=	http://www.boswars.org/dist/releases/
11
MASTER_SITES=	http://www.boswars.org/dist/releases/
13
DISTNAME=	${PORTNAME}-${PORTVERSION}-src
12
DISTNAME=	${PORTNAME}-${PORTVERSION}-src
14
13
15
MAINTAINER=	ports@FreeBSD.org
14
MAINTAINER=	martin@arp242.net
16
COMMENT=	A real-time strategy game
15
COMMENT=	A real-time strategy game
17
16
17
LICENSE=	GPLv2
18
18
LIB_DEPENDS=	png.6:${PORTSDIR}/graphics/png \
19
LIB_DEPENDS=	png.6:${PORTSDIR}/graphics/png \
19
		theora.0:${PORTSDIR}/multimedia/libtheora \
20
		theora.0:${PORTSDIR}/multimedia/libtheora \
20
		vorbis.4:${PORTSDIR}/audio/libvorbis
21
		vorbis.4:${PORTSDIR}/audio/libvorbis
21
22
22
USE_LUA=	5.0
23
USE_LUA=	5.1
23
USE_SDL=	sdl
24
USE_SDL=	sdl
25
USE_GL=		yes
24
USE_SCONS=	yes
26
USE_SCONS=	yes
27
SCONS_ARGS+=	opengl=1
25
CPPPATH=	${LOCALBASE}/include ${LUA_INCDIR}
28
CPPPATH=	${LOCALBASE}/include ${LUA_INCDIR}
26
LIBPATH=	${LOCALBASE}/lib ${LUA_LIBDIR}
29
LIBPATH=	${LOCALBASE}/lib ${LUA_LIBDIR}
27
CFLAGS+=	-DSTRATAGUS_LIB_PATH='"\"${DATADIR}\""'
30
CFLAGS+=	-DSTRATAGUS_LIB_PATH='"\"${DATADIR}\""'
28
31
29
OPTIONS=	GL "Enable OpenGL support" on \
30
		OPTIMIZED_CFLAGS "Enable compilation optimizations" on
31
32
.include <bsd.port.pre.mk>
33
34
.if !defined(WITHOUT_GL)
35
USE_GL=		yes
36
SCONS_ARGS+=	opengl=1
37
CPPPATH+=	${LOCALBASE}/include
38
LIBPATH+=	${LOCALBASE}/lib
39
.endif
40
41
.if !defined(WITHOUT_OPTIMIZED_CFLAGS)
42
CFLAGS+=	-fomit-frame-pointer -fexpensive-optimizations -ffast-math
43
.endif
44
45
post-patch:
32
post-patch:
46
	@${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \
33
	@${REINPLACE_CMD} -e '\
47
		${WRKSRC}/SConstruct
34
		s|-pthread|${PTHREAD_LIBS}|g; \
35
		s|/usr/local|${LOCALBASE}|g; \
36
		s|lua51|lua-${LUA_VER}|g;' \
37
	${WRKSRC}/SConstruct
48
38
49
do-install:
39
do-install:
50
	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
40
	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
51
	${MKDIR} ${DATADIR}
41
	${MKDIR} ${DATADIR}
52
.for f in campaigns graphics intro languages maps scripts sounds units
42
.for f in campaigns graphics intro languages maps patches scripts sounds units
53
	${CP} -R ${WRKSRC}/${f} ${DATADIR}
43
	${CP} -R ${WRKSRC}/${f} ${DATADIR}
54
.endfor
44
.endfor
45
55
.if !defined(NOPORTDOCS)
46
.if !defined(NOPORTDOCS)
56
	${MKDIR} ${DOCSDIR}
47
	${MKDIR} ${DOCSDIR}
57
	${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${WRKSRC}/README.txt ${DOCSDIR}
48
	${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${WRKSRC}/README.txt ${DOCSDIR}
58
	${CP} -R ${WRKSRC}/doc ${DOCSDIR}
49
	${CP} -R ${WRKSRC}/doc/* ${DOCSDIR}
59
.endif
50
.endif
60
51
61
.include <bsd.port.post.mk>
52
.include <bsd.port.mk>
(-)games/boswars/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (boswars-2.5-src.tar.gz) = ac5d9c8227fec012087ff617ea62666c7517b7bf2ac4c52be9030bd5ccef7f13
1
SHA256 (boswars-2.6.1-src.tar.gz) = 6003307692bde9913f6b5c227bf351e43e33d44ffaab198f0d0677e8fef86315
2
SIZE (boswars-2.5-src.tar.gz) = 63851225
2
SIZE (boswars-2.6.1-src.tar.gz) = 64708620
(-)games/boswars/files/patch-SConstruct (-8 / +8 lines)
Lines 1-6 Link Here
1
--- SConstruct.orig	2008-04-13 19:55:45.000000000 -0500
1
--- SConstruct.orig	2011-11-11 23:38:26.000000000 +0100
2
+++ SConstruct	2008-04-13 19:56:57.000000000 -0500
2
+++ SConstruct	2011-11-11 23:38:53.000000000 +0100
3
@@ -48,8 +48,10 @@
3
@@ -49,8 +49,10 @@
4
 
4
 
5
 
5
 
6
 opts = DefineOptions("build_options.py", ARGUMENTS)
6
 opts = DefineOptions("build_options.py", ARGUMENTS)
Lines 11-19 Link Here
11
+env['CPPPATH'] = Split(env['CPPPATH'])
11
+env['CPPPATH'] = Split(env['CPPPATH'])
12
+env['LIBPATH'] = Split(env['LIBPATH'])
12
+env['LIBPATH'] = Split(env['LIBPATH'])
13
 Help(opts.GenerateHelpText(env))
13
 Help(opts.GenerateHelpText(env))
14
 mingw = env.Copy()
14
 mingw = env.Clone()
15
 optionsChanged = True
15
 optionsChanged = True
16
@@ -143,6 +145,10 @@
16
@@ -144,6 +146,10 @@
17
       'LIBS': ['GL'], 
17
       'LIBS': ['GL'], 
18
       'LIBPATH': ['/usr/lib', '/usr/X11R6/lib'],
18
       'LIBPATH': ['/usr/lib', '/usr/X11R6/lib'],
19
       'CPPPATH': ['/usr/include']}
19
       'CPPPATH': ['/usr/include']}
Lines 24-30 Link Here
24
   opengl['cygwin'] = {
24
   opengl['cygwin'] = {
25
       'LIBS': ['opengl3']}
25
       'LIBS': ['opengl3']}
26
   opengl['darwin'] = {
26
   opengl['darwin'] = {
27
@@ -154,6 +160,8 @@
27
@@ -155,6 +161,8 @@
28
   else:
28
   else:
29
      if sys.platform[:5] == 'linux':
29
      if sys.platform[:5] == 'linux':
30
         platform = 'linux'
30
         platform = 'linux'
Lines 33-42 Link Here
33
      glconfig = opengl.get(platform, {})
33
      glconfig = opengl.get(platform, {})
34
   for key in glconfig:
34
   for key in glconfig:
35
       if key != 'LIBS':
35
       if key != 'LIBS':
36
@@ -283,7 +291,6 @@
36
@@ -265,7 +273,6 @@
37
 
37
 
38
 # define the different build environments (variants)
38
 # define the different build environments (variants)
39
 release = env.Copy()
39
 release = env.Clone()
40
-release.Append(CCFLAGS = Split('-O2 -pipe -fomit-frame-pointer -fexpensive-optimizations -ffast-math'))
40
-release.Append(CCFLAGS = Split('-O2 -pipe -fomit-frame-pointer -fexpensive-optimizations -ffast-math'))
41
 
41
 
42
 if mingw['extrapath']:
42
 if mingw['extrapath']:
(-)games/boswars/pkg-descr (+18 lines)
Lines 1-4 Link Here
1
Bos Wars is a real-time strategy game that uses a modified version of the
1
Bos Wars is a real-time strategy game that uses a modified version of the
2
Stratagus game engine.
2
Stratagus game engine.
3
3
4
Bos Wars is a futuristic real time strategy game (RTS). In a RTS game, the
5
player has to combat his enemies while developing his war economy. Everything
6
runs in real-time, as opposed to turn-based games where the player always has
7
to wait for his turn. The trick is to balance the effort put into building his
8
economy and building an army to defend and attack the enemies. 
9
10
Bos Wars has a dynamic rate based economy. Energy is produced by power plants
11
and magma gets pumped from hot spots. Buildings and mobile units are also
12
built at a continuous rate. Control of larger parts of the map creates the
13
potential to increase your economy throughput. Holding key points like roads
14
and passages allow for different strategies. 
15
16
It is possible to play against human opponents over LAN, internet, or against
17
the computer. Bos Wars successfully runs under Linux, MS Windows, BSD, and Mac
18
OS X. 
19
20
Bos Wars aims to create a completely original and fun open source RTS game.
21
4
WWW: http://www.boswars.org/
22
WWW: http://www.boswars.org/
(-)games/boswars/pkg-plist (-252 / +280 lines)
Lines 1-36 Link Here
1
bin/boswars
1
bin/boswars
2
%%DATADIR%%/campaigns/elites/campaign.lua
2
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG
3
%%DATADIR%%/campaigns/elites/level01.smp
3
%%PORTDOCS%%%%DOCSDIR%%/README.txt
4
%%DATADIR%%/campaigns/elites/level01.sms
4
%%PORTDOCS%%%%DOCSDIR%%/scripts/unittype.html
5
%%DATADIR%%/campaigns/elites/level01.txt
5
%%PORTDOCS%%%%DOCSDIR%%/scripts/config.html
6
%%DATADIR%%/campaigns/elites/level02.smp
6
%%PORTDOCS%%%%DOCSDIR%%/scripts/findlua.py
7
%%DATADIR%%/campaigns/elites/level02.sms
7
%%PORTDOCS%%%%DOCSDIR%%/scripts/game.html
8
%%DATADIR%%/campaigns/elites/level02.txt
8
%%PORTDOCS%%%%DOCSDIR%%/scripts/index.html
9
%%DATADIR%%/campaigns/elites/level03.smp
9
%%PORTDOCS%%%%DOCSDIR%%/scripts/limits.html
10
%%DATADIR%%/campaigns/elites/level03.sms
10
%%PORTDOCS%%%%DOCSDIR%%/scripts/magic.html
11
%%DATADIR%%/campaigns/elites/level03.txt
11
%%PORTDOCS%%%%DOCSDIR%%/scripts/makeindex.py
12
%%DATADIR%%/campaigns/elites/level04.smp
12
%%PORTDOCS%%%%DOCSDIR%%/scripts/mappresentation.html
13
%%DATADIR%%/campaigns/elites/level04.sms
13
%%PORTDOCS%%%%DOCSDIR%%/scripts/mapsetup.html
14
%%DATADIR%%/campaigns/elites/level04.txt
14
%%PORTDOCS%%%%DOCSDIR%%/scripts/savegame.html
15
%%DATADIR%%/campaigns/elites/level05.smp
15
%%PORTDOCS%%%%DOCSDIR%%/scripts/showindex.py
16
%%DATADIR%%/campaigns/elites/level05.sms
16
%%PORTDOCS%%%%DOCSDIR%%/scripts/sound.html
17
%%DATADIR%%/campaigns/elites/level05.txt
17
%%PORTDOCS%%%%DOCSDIR%%/scripts/triggers.html
18
%%DATADIR%%/campaigns/elites/level06.smp
18
%%PORTDOCS%%%%DOCSDIR%%/scripts/ui.html
19
%%DATADIR%%/campaigns/elites/level06.sms
19
%%PORTDOCS%%%%DOCSDIR%%/scripts/ai.html
20
%%DATADIR%%/campaigns/elites/level06.txt
20
%%PORTDOCS%%%%DOCSDIR%%/tolua-copyright.txt
21
%%DATADIR%%/campaigns/elites/level07.smp
21
%%PORTDOCS%%%%DOCSDIR%%/stratagus-changelog.html
22
%%DATADIR%%/campaigns/elites/level07.sms
22
%%PORTDOCS%%%%DOCSDIR%%/media.html
23
%%DATADIR%%/campaigns/elites/level07.txt
23
%%PORTDOCS%%%%DOCSDIR%%/lua5-copyright.txt
24
%%DATADIR%%/campaigns/elites/level08.smp
24
%%PORTDOCS%%%%DOCSDIR%%/install.html
25
%%DATADIR%%/campaigns/elites/level08.sms
25
%%PORTDOCS%%%%DOCSDIR%%/index.html
26
%%DATADIR%%/campaigns/elites/level08.txt
26
%%PORTDOCS%%%%DOCSDIR%%/guichan-copyright.txt
27
%%DATADIR%%/campaigns/elites/level09.smp
27
%%PORTDOCS%%%%DOCSDIR%%/gpl3.txt
28
%%DATADIR%%/campaigns/elites/level09.sms
28
%%PORTDOCS%%%%DOCSDIR%%/gpl.html
29
%%DATADIR%%/campaigns/elites/level09.txt
29
%%PORTDOCS%%%%DOCSDIR%%/gcclibs-copyright.txt
30
%%DATADIR%%/campaigns/elites/level10.smp
30
%%PORTDOCS%%%%DOCSDIR%%/faq.html
31
%%DATADIR%%/campaigns/elites/level10.sms
31
%%PORTDOCS%%%%DOCSDIR%%/development.html
32
%%DATADIR%%/campaigns/elites/level10.txt
32
%%PORTDOCS%%%%DOCSDIR%%/xiph-copyright.txt
33
%%DATADIR%%/campaigns/tutorial/campaign.lua
33
%%PORTDOCS%%%%DOCSDIR%%/README-SDL.txt
34
%%DATADIR%%/campaigns/swindler/campaign.lua
35
%%DATADIR%%/campaigns/swindler/level01.smp
36
%%DATADIR%%/campaigns/swindler/level01.sms
37
%%DATADIR%%/campaigns/swindler/swindler.png
38
%%DATADIR%%/campaigns/tutorial/level03.sms
34
%%DATADIR%%/campaigns/tutorial/level01-01.wav
39
%%DATADIR%%/campaigns/tutorial/level01-01.wav
35
%%DATADIR%%/campaigns/tutorial/level01-03.wav
40
%%DATADIR%%/campaigns/tutorial/level01-03.wav
36
%%DATADIR%%/campaigns/tutorial/level01-04.wav
41
%%DATADIR%%/campaigns/tutorial/level01-04.wav
Lines 41-48 Link Here
41
%%DATADIR%%/campaigns/tutorial/level02.smp
46
%%DATADIR%%/campaigns/tutorial/level02.smp
42
%%DATADIR%%/campaigns/tutorial/level02.sms
47
%%DATADIR%%/campaigns/tutorial/level02.sms
43
%%DATADIR%%/campaigns/tutorial/level03.smp
48
%%DATADIR%%/campaigns/tutorial/level03.smp
44
%%DATADIR%%/campaigns/tutorial/level03.sms
49
%%DATADIR%%/campaigns/tutorial/campaign.lua
45
%%DATADIR%%/graphics/explosions/expl_160x128x1.png
50
%%DATADIR%%/graphics/explosions/smokelight48.png
46
%%DATADIR%%/graphics/explosions/expl_288x288x1.png
51
%%DATADIR%%/graphics/explosions/expl_288x288x1.png
47
%%DATADIR%%/graphics/explosions/expl_64x64x1.png
52
%%DATADIR%%/graphics/explosions/expl_64x64x1.png
48
%%DATADIR%%/graphics/explosions/explosion.png
53
%%DATADIR%%/graphics/explosions/explosion.png
Lines 97-104 Link Here
97
%%DATADIR%%/graphics/explosions/smokelight36.png
102
%%DATADIR%%/graphics/explosions/smokelight36.png
98
%%DATADIR%%/graphics/explosions/smokelight40.png
103
%%DATADIR%%/graphics/explosions/smokelight40.png
99
%%DATADIR%%/graphics/explosions/smokelight44.png
104
%%DATADIR%%/graphics/explosions/smokelight44.png
100
%%DATADIR%%/graphics/explosions/smokelight48.png
105
%%DATADIR%%/graphics/explosions/expl_160x128x1.png
101
%%DATADIR%%/graphics/general/commands.png
106
%%DATADIR%%/graphics/general/mana2.png
102
%%DATADIR%%/graphics/general/dejavusans10.png
107
%%DATADIR%%/graphics/general/dejavusans10.png
103
%%DATADIR%%/graphics/general/dejavusans12.png
108
%%DATADIR%%/graphics/general/dejavusans12.png
104
%%DATADIR%%/graphics/general/dejavusans14.png
109
%%DATADIR%%/graphics/general/dejavusans14.png
Lines 108-129 Link Here
108
%%DATADIR%%/graphics/general/fog.png
113
%%DATADIR%%/graphics/general/fog.png
109
%%DATADIR%%/graphics/general/freesansbold14.png
114
%%DATADIR%%/graphics/general/freesansbold14.png
110
%%DATADIR%%/graphics/general/health2.png
115
%%DATADIR%%/graphics/general/health2.png
111
%%DATADIR%%/graphics/general/mana2.png
116
%%DATADIR%%/graphics/general/commands.png
112
%%DATADIR%%/graphics/missiles/big_fire.png
117
%%DATADIR%%/graphics/missiles/big_fire.png
113
%%DATADIR%%/graphics/missiles/green_cross.png
118
%%DATADIR%%/graphics/missiles/green_cross.png
114
%%DATADIR%%/graphics/missiles/grenade.png
119
%%DATADIR%%/graphics/missiles/grenade.png
115
%%DATADIR%%/graphics/missiles/nuke.png
120
%%DATADIR%%/graphics/missiles/nuke.png
116
%%DATADIR%%/graphics/missiles/rocket.png
121
%%DATADIR%%/graphics/missiles/rocket.png
117
%%DATADIR%%/graphics/missiles/small_fire.png
122
%%DATADIR%%/graphics/missiles/small_fire.png
123
%%DATADIR%%/graphics/neutral/units/corpses.png
118
%%DATADIR%%/graphics/neutral/destroyed_site.png
124
%%DATADIR%%/graphics/neutral/destroyed_site.png
119
%%DATADIR%%/graphics/neutral/small_destroyed_site.png
125
%%DATADIR%%/graphics/neutral/small_destroyed_site.png
120
%%DATADIR%%/graphics/neutral/units/corpses.png
121
%%DATADIR%%/graphics/screens/defeat.png
126
%%DATADIR%%/graphics/screens/defeat.png
122
%%DATADIR%%/graphics/screens/menu.png
127
%%DATADIR%%/graphics/screens/menu.png
123
%%DATADIR%%/graphics/screens/victory.png
128
%%DATADIR%%/graphics/screens/victory.png
124
%%DATADIR%%/graphics/tiles/desert.png
129
%%DATADIR%%/graphics/ui/cursors/yellow.png
125
%%DATADIR%%/graphics/ui/cursor-info.png
126
%%DATADIR%%/graphics/ui/cursors/arrow_E.png
127
%%DATADIR%%/graphics/ui/cursors/arrow_N.png
130
%%DATADIR%%/graphics/ui/cursors/arrow_N.png
128
%%DATADIR%%/graphics/ui/cursors/arrow_NE.png
131
%%DATADIR%%/graphics/ui/cursors/arrow_NE.png
129
%%DATADIR%%/graphics/ui/cursors/arrow_NW.png
132
%%DATADIR%%/graphics/ui/cursors/arrow_NW.png
Lines 135-141 Link Here
135
%%DATADIR%%/graphics/ui/cursors/green.png
138
%%DATADIR%%/graphics/ui/cursors/green.png
136
%%DATADIR%%/graphics/ui/cursors/red.png
139
%%DATADIR%%/graphics/ui/cursors/red.png
137
%%DATADIR%%/graphics/ui/cursors/small_green_cross.png
140
%%DATADIR%%/graphics/ui/cursors/small_green_cross.png
138
%%DATADIR%%/graphics/ui/cursors/yellow.png
141
%%DATADIR%%/graphics/ui/cursors/arrow_E.png
142
%%DATADIR%%/graphics/ui/patcheditor/water.png
143
%%DATADIR%%/graphics/ui/patcheditor/impassable.png
144
%%DATADIR%%/graphics/ui/patcheditor/speed0-small.png
145
%%DATADIR%%/graphics/ui/patcheditor/speed0.png
146
%%DATADIR%%/graphics/ui/patcheditor/speed1-small.png
147
%%DATADIR%%/graphics/ui/patcheditor/speed1.png
148
%%DATADIR%%/graphics/ui/patcheditor/speed2-small.png
149
%%DATADIR%%/graphics/ui/patcheditor/speed2.png
150
%%DATADIR%%/graphics/ui/patcheditor/speed3-small.png
151
%%DATADIR%%/graphics/ui/patcheditor/speed3.png
152
%%DATADIR%%/graphics/ui/patcheditor/speed4-small.png
153
%%DATADIR%%/graphics/ui/patcheditor/speed4.png
154
%%DATADIR%%/graphics/ui/patcheditor/speed5-small.png
155
%%DATADIR%%/graphics/ui/patcheditor/speed5.png
156
%%DATADIR%%/graphics/ui/patcheditor/speed6-small.png
157
%%DATADIR%%/graphics/ui/patcheditor/speed6.png
158
%%DATADIR%%/graphics/ui/patcheditor/speed7-small.png
159
%%DATADIR%%/graphics/ui/patcheditor/speed7.png
160
%%DATADIR%%/graphics/ui/patcheditor/transparent-small.png
161
%%DATADIR%%/graphics/ui/patcheditor/transparent.png
162
%%DATADIR%%/graphics/ui/patcheditor/water-small.png
163
%%DATADIR%%/graphics/ui/patcheditor/impassable-small.png
139
%%DATADIR%%/graphics/ui/elites_claw.png
164
%%DATADIR%%/graphics/ui/elites_claw.png
140
%%DATADIR%%/graphics/ui/rosace1.png
165
%%DATADIR%%/graphics/ui/rosace1.png
141
%%DATADIR%%/graphics/ui/ui_1024_bpanel.png
166
%%DATADIR%%/graphics/ui/ui_1024_bpanel.png
Lines 146-163 Link Here
146
%%DATADIR%%/graphics/ui/ui_info.png
171
%%DATADIR%%/graphics/ui/ui_info.png
147
%%DATADIR%%/graphics/ui/ui_minimap.png
172
%%DATADIR%%/graphics/ui/ui_minimap.png
148
%%DATADIR%%/graphics/ui/ui_res_icons.png
173
%%DATADIR%%/graphics/ui/ui_res_icons.png
174
%%DATADIR%%/graphics/ui/cursor-info.png
149
%%DATADIR%%/graphics/ui/x_startpoint.png
175
%%DATADIR%%/graphics/ui/x_startpoint.png
176
%%DATADIR%%/graphics/ui/editor_patch.png
150
%%DATADIR%%/intro/boswars_intro.ogg
177
%%DATADIR%%/intro/boswars_intro.ogg
151
%%DATADIR%%/intro/logo_boswars.png
178
%%DATADIR%%/intro/logo_boswars.png
152
%%DATADIR%%/languages/bg.po
179
%%DATADIR%%/languages/updatepo.sh
153
%%DATADIR%%/languages/bos-cs.po
180
%%DATADIR%%/languages/bos-cs.po
154
%%DATADIR%%/languages/bos-da.po
181
%%DATADIR%%/languages/bos-da.po
155
%%DATADIR%%/languages/bos-de.po
182
%%DATADIR%%/languages/bos-de.po
156
%%DATADIR%%/languages/bos-es.po
183
%%DATADIR%%/languages/bos-es.po
157
%%DATADIR%%/languages/bos-fi.po
184
%%DATADIR%%/languages/bos-fi.po
158
%%DATADIR%%/languages/bos-fr.po
185
%%DATADIR%%/languages/bos-fr.po
186
%%DATADIR%%/languages/bos-it.po
159
%%DATADIR%%/languages/bos-nl.po
187
%%DATADIR%%/languages/bos-nl.po
160
%%DATADIR%%/languages/bos-pt.po
188
%%DATADIR%%/languages/bos-pt-br.po
189
%%DATADIR%%/languages/bos-pt-pt.po
161
%%DATADIR%%/languages/bos-sv.po
190
%%DATADIR%%/languages/bos-sv.po
162
%%DATADIR%%/languages/bos-tr.po
191
%%DATADIR%%/languages/bos-tr.po
163
%%DATADIR%%/languages/bos.pot
192
%%DATADIR%%/languages/bos.pot
Lines 169-296 Link Here
169
%%DATADIR%%/languages/fi.po
198
%%DATADIR%%/languages/fi.po
170
%%DATADIR%%/languages/fr.po
199
%%DATADIR%%/languages/fr.po
171
%%DATADIR%%/languages/genpot.sh
200
%%DATADIR%%/languages/genpot.sh
201
%%DATADIR%%/languages/it.po
172
%%DATADIR%%/languages/makesame.py
202
%%DATADIR%%/languages/makesame.py
173
%%DATADIR%%/languages/nl.po
203
%%DATADIR%%/languages/nl.po
174
%%DATADIR%%/languages/pl.po
204
%%DATADIR%%/languages/pl.po
175
%%DATADIR%%/languages/pt.po
205
%%DATADIR%%/languages/pt-br.po
206
%%DATADIR%%/languages/pt-pt.po
176
%%DATADIR%%/languages/sv.po
207
%%DATADIR%%/languages/sv.po
177
%%DATADIR%%/languages/tr.po
208
%%DATADIR%%/languages/tr.po
178
%%DATADIR%%/languages/updatepo.sh
209
%%DATADIR%%/languages/bg.po
210
%%DATADIR%%/maps/go-east.map/presentation.smp
211
%%DATADIR%%/maps/go-east.map/setup.sms
212
%%DATADIR%%/maps/antarticum.map/patch.lua
179
%%DATADIR%%/maps/antarticum.map/presentation.smp
213
%%DATADIR%%/maps/antarticum.map/presentation.smp
180
%%DATADIR%%/maps/antarticum.map/setup.sms
214
%%DATADIR%%/maps/antarticum.map/setup.sms
181
%%DATADIR%%/maps/antarticum.map/terrain.lua
182
%%DATADIR%%/maps/antarticum.map/terrain.png
215
%%DATADIR%%/maps/antarticum.map/terrain.png
216
%%DATADIR%%/maps/battlefield.map/patch.lua
183
%%DATADIR%%/maps/battlefield.map/presentation.smp
217
%%DATADIR%%/maps/battlefield.map/presentation.smp
184
%%DATADIR%%/maps/battlefield.map/setup.sms
218
%%DATADIR%%/maps/battlefield.map/setup.sms
185
%%DATADIR%%/maps/battlefield.map/terrain.lua
186
%%DATADIR%%/maps/battlefield.map/terrain.png
219
%%DATADIR%%/maps/battlefield.map/terrain.png
187
%%DATADIR%%/maps/braza.map/presentation.smp
220
%%DATADIR%%/maps/bottleneck.map/presentation.smp
188
%%DATADIR%%/maps/braza.map/setup.sms
221
%%DATADIR%%/maps/bottleneck.map/setup.sms
189
%%DATADIR%%/maps/bridge.map/access-fast.lua
222
%%DATADIR%%/maps/bridge.map/patch.lua
190
%%DATADIR%%/maps/bridge.map/access-water.lua
191
%%DATADIR%%/maps/bridge.map/presentation.smp
223
%%DATADIR%%/maps/bridge.map/presentation.smp
192
%%DATADIR%%/maps/bridge.map/setup.sms
224
%%DATADIR%%/maps/bridge.map/setup.sms
193
%%DATADIR%%/maps/bridge.map/terrain.lua
194
%%DATADIR%%/maps/bridge.map/terrain.png
225
%%DATADIR%%/maps/bridge.map/terrain.png
195
%%DATADIR%%/maps/bridge2far.map/access-unpassable.lua
196
%%DATADIR%%/maps/bridge2far.map/class-no-pass.png
226
%%DATADIR%%/maps/bridge2far.map/class-no-pass.png
227
%%DATADIR%%/maps/bridge2far.map/patch.lua
197
%%DATADIR%%/maps/bridge2far.map/presentation.smp
228
%%DATADIR%%/maps/bridge2far.map/presentation.smp
198
%%DATADIR%%/maps/bridge2far.map/setup.sms
229
%%DATADIR%%/maps/bridge2far.map/setup.sms
199
%%DATADIR%%/maps/bridge2far.map/terrain.lua
200
%%DATADIR%%/maps/bridge2far.map/terrain.png
230
%%DATADIR%%/maps/bridge2far.map/terrain.png
201
%%DATADIR%%/maps/campaigns/elites/Aiglier.map/presentation.smp
202
%%DATADIR%%/maps/campaigns/elites/Aiglier.map/setup.sms
203
%%DATADIR%%/maps/campaigns/elites/Bellegarde.map/presentation.smp
204
%%DATADIR%%/maps/campaigns/elites/Bellegarde.map/setup.sms
205
%%DATADIR%%/maps/campaigns/elites/Buffy_Forest.map/presentation.smp
206
%%DATADIR%%/maps/campaigns/elites/Buffy_Forest.map/setup.sms
207
%%DATADIR%%/maps/campaigns/elites/Fort_Savoy.map/presentation.smp
208
%%DATADIR%%/maps/campaigns/elites/Fort_Savoy.map/setup.sms
209
%%DATADIR%%/maps/campaigns/elites/Green_Valley.map/presentation.smp
210
%%DATADIR%%/maps/campaigns/elites/Green_Valley.map/setup.sms
211
%%DATADIR%%/maps/campaigns/elites/Rochebrune.map/presentation.smp
212
%%DATADIR%%/maps/campaigns/elites/Rochebrune.map/setup.sms
213
%%DATADIR%%/maps/campaigns/elites/Savoy_Lake.map/presentation.smp
214
%%DATADIR%%/maps/campaigns/elites/Savoy_Lake.map/setup.sms
215
%%DATADIR%%/maps/campaigns/elites/Savoy_Steps.map/presentation.smp
216
%%DATADIR%%/maps/campaigns/elites/Savoy_Steps.map/setup.sms
217
%%DATADIR%%/maps/campaigns/elites/Shield_of_Wasteland.map/presentation.smp
218
%%DATADIR%%/maps/campaigns/elites/Shield_of_Wasteland.map/setup.sms
219
%%DATADIR%%/maps/campaigns/elites/The_River.map/presentation.smp
220
%%DATADIR%%/maps/campaigns/elites/The_River.map/setup.sms
221
%%DATADIR%%/maps/campaigns/tutorial/tutorial.map/access-unpassable.lua
222
%%DATADIR%%/maps/campaigns/tutorial/tutorial.map/presentation.smp
231
%%DATADIR%%/maps/campaigns/tutorial/tutorial.map/presentation.smp
223
%%DATADIR%%/maps/campaigns/tutorial/tutorial.map/setup.sms
232
%%DATADIR%%/maps/campaigns/tutorial/tutorial.map/setup.sms
224
%%DATADIR%%/maps/campaigns/tutorial/tutorial.map/terrain.lua
225
%%DATADIR%%/maps/campaigns/tutorial/tutorial.map/terrain.png
226
%%DATADIR%%/maps/campaigns/tutorial/tutorial.map/unpassable.png
227
%%DATADIR%%/maps/canyon.map/access-unpassable.lua
228
%%DATADIR%%/maps/canyon.map/class-no-pass.png
233
%%DATADIR%%/maps/canyon.map/class-no-pass.png
234
%%DATADIR%%/maps/canyon.map/patch.lua
229
%%DATADIR%%/maps/canyon.map/presentation.smp
235
%%DATADIR%%/maps/canyon.map/presentation.smp
230
%%DATADIR%%/maps/canyon.map/setup.sms
236
%%DATADIR%%/maps/canyon.map/setup.sms
231
%%DATADIR%%/maps/canyon.map/terrain.lua
232
%%DATADIR%%/maps/canyon.map/terrain.png
237
%%DATADIR%%/maps/canyon.map/terrain.png
233
%%DATADIR%%/maps/cross.map/presentation.smp
238
%%DATADIR%%/maps/4on4.map/presentation.smp
234
%%DATADIR%%/maps/cross.map/setup.sms
239
%%DATADIR%%/maps/4on4.map/setup.sms
235
%%DATADIR%%/maps/forest.map/presentation.smp
240
%%DATADIR%%/maps/4on4.map/spacious.lua
236
%%DATADIR%%/maps/forest.map/setup.sms
241
%%DATADIR%%/maps/guerillawarfare.map/patch.lua
237
%%DATADIR%%/maps/guerillawarfare.map/access-unpassable.lua
238
%%DATADIR%%/maps/guerillawarfare.map/presentation.smp
242
%%DATADIR%%/maps/guerillawarfare.map/presentation.smp
239
%%DATADIR%%/maps/guerillawarfare.map/setup.sms
243
%%DATADIR%%/maps/guerillawarfare.map/setup.sms
240
%%DATADIR%%/maps/guerillawarfare.map/terrain-no-access.png
244
%%DATADIR%%/maps/guerillawarfare.map/terrain-no-access.png
241
%%DATADIR%%/maps/guerillawarfare.map/terrain.lua
242
%%DATADIR%%/maps/guerillawarfare.map/terrain.png
245
%%DATADIR%%/maps/guerillawarfare.map/terrain.png
243
%%DATADIR%%/maps/highlands.map/presentation.smp
246
%%DATADIR%%/maps/hospitality.map/presentation.smp
244
%%DATADIR%%/maps/highlands.map/setup.sms
247
%%DATADIR%%/maps/hospitality.map/setup.sms
245
%%DATADIR%%/maps/islandwar.map/access-fast.lua
248
%%DATADIR%%/maps/islandwar.map/patch.lua
246
%%DATADIR%%/maps/islandwar.map/access-water.lua
247
%%DATADIR%%/maps/islandwar.map/presentation.smp
249
%%DATADIR%%/maps/islandwar.map/presentation.smp
248
%%DATADIR%%/maps/islandwar.map/setup.sms
250
%%DATADIR%%/maps/islandwar.map/setup.sms
249
%%DATADIR%%/maps/islandwar.map/terrain.lua
250
%%DATADIR%%/maps/islandwar.map/terrain.png
251
%%DATADIR%%/maps/islandwar.map/terrain.png
251
%%DATADIR%%/maps/labyrinth.map/presentation.smp
252
%%DATADIR%%/maps/lava-river.map/air_attack.lua
252
%%DATADIR%%/maps/labyrinth.map/setup.sms
253
%%DATADIR%%/maps/lava-river.map/presentation.smp
253
%%DATADIR%%/maps/lake.map/presentation.smp
254
%%DATADIR%%/maps/lava-river.map/setup.sms
254
%%DATADIR%%/maps/lake.map/setup.sms
255
%%DATADIR%%/maps/multiplayer.map/presentation.smp
256
%%DATADIR%%/maps/multiplayer.map/setup.sms
257
%%DATADIR%%/maps/patches.map/128x.png
258
%%DATADIR%%/maps/patches.map/256x.png
259
%%DATADIR%%/maps/patches.map/32x.png
260
%%DATADIR%%/maps/patches.map/512-hill-01x.png
261
%%DATADIR%%/maps/patches.map/512-hill-02x.png
262
%%DATADIR%%/maps/patches.map/512-hill-03x.png
263
%%DATADIR%%/maps/patches.map/512-hill-04x.png
264
%%DATADIR%%/maps/patches.map/512-lake-01x.png
265
%%DATADIR%%/maps/patches.map/512x.png
266
%%DATADIR%%/maps/patches.map/64x.png
267
%%DATADIR%%/maps/patches.map/access-unpassable.lua
268
%%DATADIR%%/maps/patches.map/presentation.smp
255
%%DATADIR%%/maps/patches.map/presentation.smp
269
%%DATADIR%%/maps/patches.map/setup.sms
256
%%DATADIR%%/maps/patches.map/setup.sms
270
%%DATADIR%%/maps/patches.map/terrain.lua
257
%%DATADIR%%/maps/river.map/patch.lua
271
%%DATADIR%%/maps/patches.map/terrain.png
272
%%DATADIR%%/maps/patches.map/unpassable.png
273
%%DATADIR%%/maps/river.map/presentation.smp
258
%%DATADIR%%/maps/river.map/presentation.smp
274
%%DATADIR%%/maps/river.map/setup.sms
259
%%DATADIR%%/maps/river.map/setup.sms
275
%%DATADIR%%/maps/river.map/terrain.lua
276
%%DATADIR%%/maps/river.map/terrain.png
260
%%DATADIR%%/maps/river.map/terrain.png
277
%%DATADIR%%/maps/wetlands01.map/access-unpassable.lua
261
%%DATADIR%%/maps/wetlands01.map/patch.lua
278
%%DATADIR%%/maps/wetlands01.map/presentation.smp
262
%%DATADIR%%/maps/wetlands01.map/presentation.smp
279
%%DATADIR%%/maps/wetlands01.map/terrain.lua
263
%%DATADIR%%/maps/wetlands01.map/setup.sms
264
%%DATADIR%%/maps/wetlands01.map/terrain.png
280
%%DATADIR%%/maps/wetlands01.map/wetlands01-nopass.png
265
%%DATADIR%%/maps/wetlands01.map/wetlands01-nopass.png
281
%%DATADIR%%/maps/wetlands01.map/wetlands01.png
266
%%DATADIR%%/maps/wetlands02.map/patch.lua
282
%%DATADIR%%/maps/wetlands01.map/wetlands01.sms
283
%%DATADIR%%/maps/wetlands02.map/access-water.lua
284
%%DATADIR%%/maps/wetlands02.map/presentation.smp
267
%%DATADIR%%/maps/wetlands02.map/presentation.smp
285
%%DATADIR%%/maps/wetlands02.map/setup.sms
268
%%DATADIR%%/maps/wetlands02.map/setup.sms
286
%%DATADIR%%/maps/wetlands02.map/terrain.png
269
%%DATADIR%%/maps/wetlands02.map/terrain.png
287
%%DATADIR%%/maps/wetlands02.map/wetlands02-access-water.png
270
%%DATADIR%%/maps/wetlands02.map/wetlands02-access-water.png
288
%%DATADIR%%/scripts/ai.lua
271
%%DATADIR%%/patches/grass/Water-plain.png
272
%%DATADIR%%/patches/grass/Grass-cliff-curve-NW.png
273
%%DATADIR%%/patches/grass/Grass-cliff-curve-SE.png
274
%%DATADIR%%/patches/grass/Grass-cliff-curve-SW.png
275
%%DATADIR%%/patches/grass/Grass-cliff-horizontal-S.png
276
%%DATADIR%%/patches/grass/Grass-cliff-horizontal-end-E.png
277
%%DATADIR%%/patches/grass/Grass-cliff-horizontal-end-W.png
278
%%DATADIR%%/patches/grass/Grass-cliff-vertical-E-end-N.png
279
%%DATADIR%%/patches/grass/Grass-cliff-vertical-E-end-S.png
280
%%DATADIR%%/patches/grass/Grass-cliff-vertical-E.png
281
%%DATADIR%%/patches/grass/Grass-cliff-vertical-W-end-N.png
282
%%DATADIR%%/patches/grass/Grass-cliff-vertical-W-end-S.png
283
%%DATADIR%%/patches/grass/Grass-cliff-vertical-W.png
284
%%DATADIR%%/patches/grass/Grass-plain-huge.png
285
%%DATADIR%%/patches/grass/Grass-plain-large.png
286
%%DATADIR%%/patches/grass/Grass-plain-small.png
287
%%DATADIR%%/patches/grass/Grass-plain.png
288
%%DATADIR%%/patches/grass/Grass-road-X.png
289
%%DATADIR%%/patches/grass/Grass-road-curve-NE.png
290
%%DATADIR%%/patches/grass/Grass-road-curve-NW.png
291
%%DATADIR%%/patches/grass/Grass-road-curve-SE.png
292
%%DATADIR%%/patches/grass/Grass-road-curve-SW.png
293
%%DATADIR%%/patches/grass/Grass-road-horizontal.png
294
%%DATADIR%%/patches/grass/Grass-road-tee-E.png
295
%%DATADIR%%/patches/grass/Grass-road-tee-N.png
296
%%DATADIR%%/patches/grass/Grass-road-tee-S.png
297
%%DATADIR%%/patches/grass/Grass-road-tee-W.png
298
%%DATADIR%%/patches/grass/Grass-road-vertical.png
299
%%DATADIR%%/patches/grass/Water-coast-curve-EN.png
300
%%DATADIR%%/patches/grass/Water-coast-curve-ES.png
301
%%DATADIR%%/patches/grass/Water-coast-curve-NE.png
302
%%DATADIR%%/patches/grass/Water-coast-curve-NW.png
303
%%DATADIR%%/patches/grass/Water-coast-curve-SE.png
304
%%DATADIR%%/patches/grass/Water-coast-curve-SW.png
305
%%DATADIR%%/patches/grass/Water-coast-curve-WN.png
306
%%DATADIR%%/patches/grass/Water-coast-curve-WS.png
307
%%DATADIR%%/patches/grass/Water-coast-horizontal-down.png
308
%%DATADIR%%/patches/grass/Water-coast-horizontal-up.png
309
%%DATADIR%%/patches/grass/Water-coast-vertical-left.png
310
%%DATADIR%%/patches/grass/Water-coast-vertical-right.png
311
%%DATADIR%%/patches/grass/Grass-cliff-curve-NE.png
312
%%DATADIR%%/patches/dirtyPlain.png
313
%%DATADIR%%/patches/dirtyPlain2.lua
314
%%DATADIR%%/patches/dirtyPlain2.png
315
%%DATADIR%%/patches/dirtyPlain3.lua
316
%%DATADIR%%/patches/dirtyPlain3.png
317
%%DATADIR%%/patches/grass.lua
318
%%DATADIR%%/patches/greenMountain.lua
319
%%DATADIR%%/patches/greenMountain.png
320
%%DATADIR%%/patches/lake.lua
321
%%DATADIR%%/patches/lake.png
322
%%DATADIR%%/patches/pikeMountain.lua
323
%%DATADIR%%/patches/pikeMountain.png
324
%%DATADIR%%/patches/plain1.lua
325
%%DATADIR%%/patches/plain1.png
326
%%DATADIR%%/patches/plain16.lua
327
%%DATADIR%%/patches/plain16.png
328
%%DATADIR%%/patches/plain2.lua
329
%%DATADIR%%/patches/plain2.png
330
%%DATADIR%%/patches/plain4.lua
331
%%DATADIR%%/patches/te0.lua
332
%%DATADIR%%/patches/plain4.png
333
%%DATADIR%%/patches/plain8.lua
334
%%DATADIR%%/patches/plain8.png
335
%%DATADIR%%/patches/rockyMountainL.lua
336
%%DATADIR%%/patches/rockyMountainL.png
337
%%DATADIR%%/patches/rockyMountainR.lua
338
%%DATADIR%%/patches/rockyMountainR.png
339
%%DATADIR%%/patches/smallWetPlain.lua
340
%%DATADIR%%/patches/smallWetPlain.png
341
%%DATADIR%%/patches/te0.png
342
%%DATADIR%%/patches/te1.lua
343
%%DATADIR%%/patches/te1.png
344
%%DATADIR%%/patches/te2.lua
345
%%DATADIR%%/patches/te2.png
346
%%DATADIR%%/patches/te3.lua
347
%%DATADIR%%/patches/te3.png
348
%%DATADIR%%/patches/te4.lua
349
%%DATADIR%%/patches/te4.png
350
%%DATADIR%%/patches/te5.lua
351
%%DATADIR%%/patches/dirtyPlain.lua
352
%%DATADIR%%/patches/te5.png
353
%%DATADIR%%/scripts/menus/ingame/editor.lua
354
%%DATADIR%%/scripts/menus/ingame/game.lua
355
%%DATADIR%%/scripts/menus/campaigns.lua
356
%%DATADIR%%/scripts/menus/credits.lua
357
%%DATADIR%%/scripts/menus/network.lua
358
%%DATADIR%%/scripts/menus/options.lua
359
%%DATADIR%%/scripts/menus/patch.lua
289
%%DATADIR%%/scripts/ais/blitz.lua
360
%%DATADIR%%/scripts/ais/blitz.lua
361
%%DATADIR%%/scripts/ais/default.lua
290
%%DATADIR%%/scripts/ais/passive.lua
362
%%DATADIR%%/scripts/ais/passive.lua
291
%%DATADIR%%/scripts/ais/rush.lua
363
%%DATADIR%%/scripts/ais/rush.lua
292
%%DATADIR%%/scripts/ais/tankrush.lua
364
%%DATADIR%%/scripts/ais/tankrush.lua
293
%%DATADIR%%/scripts/anim.lua
294
%%DATADIR%%/scripts/boswars.lua
365
%%DATADIR%%/scripts/boswars.lua
295
%%DATADIR%%/scripts/buttons.lua
366
%%DATADIR%%/scripts/buttons.lua
296
%%DATADIR%%/scripts/buttonstyles.lua
367
%%DATADIR%%/scripts/buttonstyles.lua
Lines 303-337 Link Here
303
%%DATADIR%%/scripts/guichan.lua
374
%%DATADIR%%/scripts/guichan.lua
304
%%DATADIR%%/scripts/helpers.lua
375
%%DATADIR%%/scripts/helpers.lua
305
%%DATADIR%%/scripts/icons.lua
376
%%DATADIR%%/scripts/icons.lua
306
%%DATADIR%%/scripts/maps.lua
307
%%DATADIR%%/scripts/menus/campaigns.lua
308
%%DATADIR%%/scripts/menus/credits.lua
309
%%DATADIR%%/scripts/menus/ingame/editor.lua
310
%%DATADIR%%/scripts/menus/ingame/game.lua
311
%%DATADIR%%/scripts/menus/network.lua
312
%%DATADIR%%/scripts/menus/options.lua
313
%%DATADIR%%/scripts/missiles.lua
377
%%DATADIR%%/scripts/missiles.lua
378
%%DATADIR%%/scripts/patches.lua
314
%%DATADIR%%/scripts/sound.lua
379
%%DATADIR%%/scripts/sound.lua
315
%%DATADIR%%/scripts/spells.lua
380
%%DATADIR%%/scripts/spells.lua
316
%%DATADIR%%/scripts/tilesets/desert.lua
317
%%DATADIR%%/scripts/ui.lua
381
%%DATADIR%%/scripts/ui.lua
318
%%DATADIR%%/scripts/uilayout.lua
382
%%DATADIR%%/scripts/uilayout.lua
383
%%DATADIR%%/scripts/ai.lua
319
%%DATADIR%%/scripts/units.lua
384
%%DATADIR%%/scripts/units.lua
320
%%DATADIR%%/sounds/bazoo_g_hit.wav
385
%%DATADIR%%/scripts/anim.lua
321
%%DATADIR%%/sounds/grenadier_g_hit.wav
322
%%DATADIR%%/sounds/ui/chatmessage.wav
386
%%DATADIR%%/sounds/ui/chatmessage.wav
323
%%DATADIR%%/sounds/ui/click.wav.gz
387
%%DATADIR%%/sounds/ui/click.wav.gz
324
%%DATADIR%%/units/aircraftfactory/aircraftfactory.completed.wav
388
%%DATADIR%%/sounds/bazoo_g_hit.wav
325
%%DATADIR%%/units/aircraftfactory/aircraftfactory.png
389
%%DATADIR%%/sounds/grenadier_g_hit.wav
326
%%DATADIR%%/units/aircraftfactory/aircraftfactory.underattack.wav
390
%%DATADIR%%/units/hotspot/hotspot.png
327
%%DATADIR%%/units/aircraftfactory/aircraftfactory_c.png
391
%%DATADIR%%/units/hotspot/hotspot_i.png
328
%%DATADIR%%/units/aircraftfactory/aircraftfactory_i.png
392
%%DATADIR%%/units/hotspot/unit-hotspot.lua
329
%%DATADIR%%/units/aircraftfactory/aircraftfactory_s.png
330
%%DATADIR%%/units/aircraftfactory/unit-aircraftfactory.lua
331
%%DATADIR%%/units/antharus/antharus.png
393
%%DATADIR%%/units/antharus/antharus.png
332
%%DATADIR%%/units/antharus/icon.png
394
%%DATADIR%%/units/antharus/icon.png
333
%%DATADIR%%/units/antharus/unit-antharus.lua
395
%%DATADIR%%/units/antharus/unit-antharus.lua
334
%%DATADIR%%/units/apcs/ico_apcs.png
396
%%DATADIR%%/units/apcs/unit_apcs_s.png
335
%%DATADIR%%/units/apcs/smolder.completed.wav
397
%%DATADIR%%/units/apcs/smolder.completed.wav
336
%%DATADIR%%/units/apcs/smolder.underattack.wav
398
%%DATADIR%%/units/apcs/smolder.underattack.wav
337
%%DATADIR%%/units/apcs/smolder_action.wav
399
%%DATADIR%%/units/apcs/smolder_action.wav
Lines 340-353 Link Here
340
%%DATADIR%%/units/apcs/smolder_select.wav
402
%%DATADIR%%/units/apcs/smolder_select.wav
341
%%DATADIR%%/units/apcs/unit-apcs.lua
403
%%DATADIR%%/units/apcs/unit-apcs.lua
342
%%DATADIR%%/units/apcs/unit_apcs.png
404
%%DATADIR%%/units/apcs/unit_apcs.png
343
%%DATADIR%%/units/apcs/unit_apcs_s.png
405
%%DATADIR%%/units/apcs/ico_apcs.png
344
%%DATADIR%%/units/artil/artil.ready.wav
406
%%DATADIR%%/units/artil/artil.ready.wav
345
%%DATADIR%%/units/artil/artil.underattack.wav
407
%%DATADIR%%/units/artil/artil.underattack.wav
346
%%DATADIR%%/units/artil/ico_artil.png
408
%%DATADIR%%/units/artil/ico_artil.png
347
%%DATADIR%%/units/artil/unit-artil.lua
409
%%DATADIR%%/units/artil/unit-artil.lua
348
%%DATADIR%%/units/artil/unit_artil.png
410
%%DATADIR%%/units/artil/unit_artil.png
349
%%DATADIR%%/units/artil/unit_artil_s.png
411
%%DATADIR%%/units/artil/unit_artil_s.png
350
%%DATADIR%%/units/assault/assault.unit.ready.wav
412
%%DATADIR%%/units/assault/unit_assault_s.png
351
%%DATADIR%%/units/assault/assault.unit.underattack.wav
413
%%DATADIR%%/units/assault/assault.unit.underattack.wav
352
%%DATADIR%%/units/assault/assault_action.wav
414
%%DATADIR%%/units/assault/assault_action.wav
353
%%DATADIR%%/units/assault/assault_attack.wav
415
%%DATADIR%%/units/assault/assault_attack.wav
Lines 357-364 Link Here
357
%%DATADIR%%/units/assault/unit-assault.lua
419
%%DATADIR%%/units/assault/unit-assault.lua
358
%%DATADIR%%/units/assault/unit_assault.png
420
%%DATADIR%%/units/assault/unit_assault.png
359
%%DATADIR%%/units/assault/unit_assault_c.png
421
%%DATADIR%%/units/assault/unit_assault_c.png
360
%%DATADIR%%/units/assault/unit_assault_s.png
422
%%DATADIR%%/units/assault/assault.unit.ready.wav
361
%%DATADIR%%/units/bazoo/bazoo.ready.wav
423
%%DATADIR%%/units/bazoo/unit_bazoo_s.png
362
%%DATADIR%%/units/bazoo/bazoo.underattack.wav
424
%%DATADIR%%/units/bazoo/bazoo.underattack.wav
363
%%DATADIR%%/units/bazoo/bazoo_action.wav
425
%%DATADIR%%/units/bazoo/bazoo_action.wav
364
%%DATADIR%%/units/bazoo/bazoo_attack.wav
426
%%DATADIR%%/units/bazoo/bazoo_attack.wav
Lines 368-382 Link Here
368
%%DATADIR%%/units/bazoo/unit-bazoo.lua
430
%%DATADIR%%/units/bazoo/unit-bazoo.lua
369
%%DATADIR%%/units/bazoo/unit_bazoo.png
431
%%DATADIR%%/units/bazoo/unit_bazoo.png
370
%%DATADIR%%/units/bazoo/unit_bazoo_c.png
432
%%DATADIR%%/units/bazoo/unit_bazoo_c.png
371
%%DATADIR%%/units/bazoo/unit_bazoo_s.png
433
%%DATADIR%%/units/bazoo/bazoo.ready.wav
372
%%DATADIR%%/units/bomber/bomber.ready.wav
434
%%DATADIR%%/units/biggunturret/gturret.png
435
%%DATADIR%%/units/biggunturret/gturret_i.png
436
%%DATADIR%%/units/biggunturret/gturret_s.png
437
%%DATADIR%%/units/biggunturret/unit-biggunturret.lua
438
%%DATADIR%%/units/bomber/missile.png
373
%%DATADIR%%/units/bomber/bomber.underattack.wav
439
%%DATADIR%%/units/bomber/bomber.underattack.wav
374
%%DATADIR%%/units/bomber/ico_bomber.png
440
%%DATADIR%%/units/bomber/ico_bomber.png
375
%%DATADIR%%/units/bomber/missile.png
441
%%DATADIR%%/units/bomber/bomber.ready.wav
376
%%DATADIR%%/units/bomber/unit-bomber.lua
442
%%DATADIR%%/units/bomber/unit-bomber.lua
377
%%DATADIR%%/units/bomber/unit_bomber.png
443
%%DATADIR%%/units/bomber/unit_bomber.png
378
%%DATADIR%%/units/bomber/unit_bomber_s.png
444
%%DATADIR%%/units/bomber/unit_bomber_s.png
379
%%DATADIR%%/units/buggy/buggy_action.wav
445
%%DATADIR%%/units/buggy/unit_buggy_s.png
380
%%DATADIR%%/units/buggy/buggy_attacked.wav
446
%%DATADIR%%/units/buggy/buggy_attacked.wav
381
%%DATADIR%%/units/buggy/buggy_die.wav
447
%%DATADIR%%/units/buggy/buggy_die.wav
382
%%DATADIR%%/units/buggy/buggy_ready.wav
448
%%DATADIR%%/units/buggy/buggy_ready.wav
Lines 384-399 Link Here
384
%%DATADIR%%/units/buggy/ico_buggy.png
450
%%DATADIR%%/units/buggy/ico_buggy.png
385
%%DATADIR%%/units/buggy/unit-buggy.lua
451
%%DATADIR%%/units/buggy/unit-buggy.lua
386
%%DATADIR%%/units/buggy/unit_buggy.png
452
%%DATADIR%%/units/buggy/unit_buggy.png
387
%%DATADIR%%/units/buggy/unit_buggy_s.png
453
%%DATADIR%%/units/buggy/buggy_action.wav
388
%%DATADIR%%/units/camera/camera.completed.wav
454
%%DATADIR%%/units/camera/unit-camera.lua
389
%%DATADIR%%/units/camera/camera.png
455
%%DATADIR%%/units/camera/camera.png
390
%%DATADIR%%/units/camera/camera.underattack.wav
456
%%DATADIR%%/units/camera/camera.underattack.wav
391
%%DATADIR%%/units/camera/camera_c.png
457
%%DATADIR%%/units/camera/camera_c.png
392
%%DATADIR%%/units/camera/camera_i.png
458
%%DATADIR%%/units/camera/camera_i.png
393
%%DATADIR%%/units/camera/camera_s.png
459
%%DATADIR%%/units/camera/camera_s.png
394
%%DATADIR%%/units/camera/sfx_camera.select.wav
460
%%DATADIR%%/units/camera/sfx_camera.select.wav
395
%%DATADIR%%/units/camera/unit-camera.lua
461
%%DATADIR%%/units/camera/camera.completed.wav
396
%%DATADIR%%/units/camp/sfx_camp.die.wav
462
%%DATADIR%%/units/camp/unit-camp.lua
397
%%DATADIR%%/units/camp/sfx_camp.select.wav
463
%%DATADIR%%/units/camp/sfx_camp.select.wav
398
%%DATADIR%%/units/camp/training.camp.completed.wav
464
%%DATADIR%%/units/camp/training.camp.completed.wav
399
%%DATADIR%%/units/camp/training.camp.underattack.wav
465
%%DATADIR%%/units/camp/training.camp.underattack.wav
Lines 401-408 Link Here
401
%%DATADIR%%/units/camp/training_camp_c.png
467
%%DATADIR%%/units/camp/training_camp_c.png
402
%%DATADIR%%/units/camp/training_camp_i.png
468
%%DATADIR%%/units/camp/training_camp_i.png
403
%%DATADIR%%/units/camp/training_camp_s.png
469
%%DATADIR%%/units/camp/training_camp_s.png
404
%%DATADIR%%/units/camp/unit-camp.lua
470
%%DATADIR%%/units/camp/sfx_camp.die.wav
405
%%DATADIR%%/units/cannon/cannon.completed.wav
471
%%DATADIR%%/units/cannon/weapon_s.png
406
%%DATADIR%%/units/cannon/cannon.png
472
%%DATADIR%%/units/cannon/cannon.png
407
%%DATADIR%%/units/cannon/cannon.underattack.wav
473
%%DATADIR%%/units/cannon/cannon.underattack.wav
408
%%DATADIR%%/units/cannon/cannon_c.png
474
%%DATADIR%%/units/cannon/cannon_c.png
Lines 411-417 Link Here
411
%%DATADIR%%/units/cannon/cannon_selected.wav
477
%%DATADIR%%/units/cannon/cannon_selected.wav
412
%%DATADIR%%/units/cannon/unit-cannon.lua
478
%%DATADIR%%/units/cannon/unit-cannon.lua
413
%%DATADIR%%/units/cannon/weapon.png
479
%%DATADIR%%/units/cannon/weapon.png
414
%%DATADIR%%/units/cannon/weapon_s.png
480
%%DATADIR%%/units/cannon/cannon.completed.wav
415
%%DATADIR%%/units/chopper/chopper.ready.wav
481
%%DATADIR%%/units/chopper/chopper.ready.wav
416
%%DATADIR%%/units/chopper/chopper.underattack.wav
482
%%DATADIR%%/units/chopper/chopper.underattack.wav
417
%%DATADIR%%/units/chopper/ico_chopper.png
483
%%DATADIR%%/units/chopper/ico_chopper.png
Lines 420-430 Link Here
420
%%DATADIR%%/units/chopper/unit_chopper_s.png
486
%%DATADIR%%/units/chopper/unit_chopper_s.png
421
%%DATADIR%%/units/corpses/build-dead-2.png
487
%%DATADIR%%/units/corpses/build-dead-2.png
422
%%DATADIR%%/units/corpses/unit-corpses.lua
488
%%DATADIR%%/units/corpses/unit-corpses.lua
423
%%DATADIR%%/units/dorcoz/ico_dorcoz.png
489
%%DATADIR%%/units/engineer/unit_engineer_s.png
424
%%DATADIR%%/units/dorcoz/mis_plasma_sml.png
425
%%DATADIR%%/units/dorcoz/unit-dorcoz.lua
426
%%DATADIR%%/units/dorcoz/unit_dorcoz.png
427
%%DATADIR%%/units/engineer/engineer.lua
428
%%DATADIR%%/units/engineer/engineer.ready.wav
490
%%DATADIR%%/units/engineer/engineer.ready.wav
429
%%DATADIR%%/units/engineer/engineer.underattack.wav
491
%%DATADIR%%/units/engineer/engineer.underattack.wav
430
%%DATADIR%%/units/engineer/engineer_action.wav
492
%%DATADIR%%/units/engineer/engineer_action.wav
Lines 435-442 Link Here
435
%%DATADIR%%/units/engineer/ico_engineer.png
497
%%DATADIR%%/units/engineer/ico_engineer.png
436
%%DATADIR%%/units/engineer/unit_engineer.png
498
%%DATADIR%%/units/engineer/unit_engineer.png
437
%%DATADIR%%/units/engineer/unit_engineer_c.png
499
%%DATADIR%%/units/engineer/unit_engineer_c.png
438
%%DATADIR%%/units/engineer/unit_engineer_s.png
500
%%DATADIR%%/units/engineer/engineer.lua
439
%%DATADIR%%/units/grenadier/grenadier.ready.wav
501
%%DATADIR%%/units/grenadier/unit_grenadier_s.png
440
%%DATADIR%%/units/grenadier/grenadier.underattack.wav
502
%%DATADIR%%/units/grenadier/grenadier.underattack.wav
441
%%DATADIR%%/units/grenadier/grenadier_action.wav
503
%%DATADIR%%/units/grenadier/grenadier_action.wav
442
%%DATADIR%%/units/grenadier/grenadier_attack.wav
504
%%DATADIR%%/units/grenadier/grenadier_attack.wav
Lines 446-453 Link Here
446
%%DATADIR%%/units/grenadier/unit-grenadier.lua
508
%%DATADIR%%/units/grenadier/unit-grenadier.lua
447
%%DATADIR%%/units/grenadier/unit_grenadier.png
509
%%DATADIR%%/units/grenadier/unit_grenadier.png
448
%%DATADIR%%/units/grenadier/unit_grenadier_c.png
510
%%DATADIR%%/units/grenadier/unit_grenadier_c.png
449
%%DATADIR%%/units/grenadier/unit_grenadier_s.png
511
%%DATADIR%%/units/grenadier/grenadier.ready.wav
450
%%DATADIR%%/units/gturret/gturret.completed.wav
512
%%DATADIR%%/units/gturret/unit-gturret.lua
451
%%DATADIR%%/units/gturret/gturret.png
513
%%DATADIR%%/units/gturret/gturret.png
452
%%DATADIR%%/units/gturret/gturret.underattack.wav
514
%%DATADIR%%/units/gturret/gturret.underattack.wav
453
%%DATADIR%%/units/gturret/gturret_attack.wav
515
%%DATADIR%%/units/gturret/gturret_attack.wav
Lines 455-462 Link Here
455
%%DATADIR%%/units/gturret/gturret_i.png
517
%%DATADIR%%/units/gturret/gturret_i.png
456
%%DATADIR%%/units/gturret/gturret_s.png
518
%%DATADIR%%/units/gturret/gturret_s.png
457
%%DATADIR%%/units/gturret/gturret_select.wav
519
%%DATADIR%%/units/gturret/gturret_select.wav
458
%%DATADIR%%/units/gturret/unit-gturret.lua
520
%%DATADIR%%/units/gturret/gturret.completed.wav
459
%%DATADIR%%/units/harvester/harvester.completed.wav
521
%%DATADIR%%/units/harvester/unit_harv_s.png
460
%%DATADIR%%/units/harvester/harvester.underattack.wav
522
%%DATADIR%%/units/harvester/harvester.underattack.wav
461
%%DATADIR%%/units/harvester/harvester_action.wav
523
%%DATADIR%%/units/harvester/harvester_action.wav
462
%%DATADIR%%/units/harvester/harvester_attack.wav
524
%%DATADIR%%/units/harvester/harvester_attack.wav
Lines 465-472 Link Here
465
%%DATADIR%%/units/harvester/ico_harv.png
527
%%DATADIR%%/units/harvester/ico_harv.png
466
%%DATADIR%%/units/harvester/unit-harvester.lua
528
%%DATADIR%%/units/harvester/unit-harvester.lua
467
%%DATADIR%%/units/harvester/unit_harv.png
529
%%DATADIR%%/units/harvester/unit_harv.png
468
%%DATADIR%%/units/harvester/unit_harv_s.png
530
%%DATADIR%%/units/harvester/harvester.completed.wav
469
%%DATADIR%%/units/hospital/hospital.completed.wav
531
%%DATADIR%%/units/heli/ico_heli.png
532
%%DATADIR%%/units/heli/unit-heli.lua
533
%%DATADIR%%/units/heli/unit_heli.png
534
%%DATADIR%%/units/heli/unit_heli_s.png
535
%%DATADIR%%/units/hospital/unit-hospital.lua
470
%%DATADIR%%/units/hospital/hospital.png
536
%%DATADIR%%/units/hospital/hospital.png
471
%%DATADIR%%/units/hospital/hospital.underattack.wav
537
%%DATADIR%%/units/hospital/hospital.underattack.wav
472
%%DATADIR%%/units/hospital/hospital_c.png
538
%%DATADIR%%/units/hospital/hospital_c.png
Lines 474-491 Link Here
474
%%DATADIR%%/units/hospital/hospital_s.png
540
%%DATADIR%%/units/hospital/hospital_s.png
475
%%DATADIR%%/units/hospital/sfx_hosp.die.wav
541
%%DATADIR%%/units/hospital/sfx_hosp.die.wav
476
%%DATADIR%%/units/hospital/sfx_hosp.select.wav
542
%%DATADIR%%/units/hospital/sfx_hosp.select.wav
477
%%DATADIR%%/units/hospital/unit-hospital.lua
543
%%DATADIR%%/units/hospital/hospital.completed.wav
478
%%DATADIR%%/units/hotspot/hotspot.png
544
%%DATADIR%%/units/aircraftfactory/aircraftfactory_c.png
479
%%DATADIR%%/units/hotspot/hotspot_i.png
545
%%DATADIR%%/units/aircraftfactory/aircraftfactory.png
480
%%DATADIR%%/units/hotspot/unit-hotspot.lua
546
%%DATADIR%%/units/aircraftfactory/aircraftfactory.underattack.wav
481
%%DATADIR%%/units/jet/ico_jet.png
547
%%DATADIR%%/units/aircraftfactory/aircraftfactory.completed.wav
548
%%DATADIR%%/units/aircraftfactory/aircraftfactory_i.png
549
%%DATADIR%%/units/aircraftfactory/aircraftfactory_s.png
550
%%DATADIR%%/units/aircraftfactory/unit-aircraftfactory.lua
551
%%DATADIR%%/units/jet/missile.png
482
%%DATADIR%%/units/jet/jet.ready.wav
552
%%DATADIR%%/units/jet/jet.ready.wav
483
%%DATADIR%%/units/jet/jet.underattack.wav
553
%%DATADIR%%/units/jet/jet.underattack.wav
484
%%DATADIR%%/units/jet/missile.png
554
%%DATADIR%%/units/jet/ico_jet.png
485
%%DATADIR%%/units/jet/unit-jet.lua
555
%%DATADIR%%/units/jet/unit-jet.lua
486
%%DATADIR%%/units/jet/unit_jet.png
556
%%DATADIR%%/units/jet/unit_jet.png
487
%%DATADIR%%/units/jet/unit_jet_s.png
557
%%DATADIR%%/units/jet/unit_jet_s.png
488
%%DATADIR%%/units/magmapump/magmapump.completed.wav
558
%%DATADIR%%/units/magmapump/unit-magmapump.lua
489
%%DATADIR%%/units/magmapump/magmapump.png
559
%%DATADIR%%/units/magmapump/magmapump.png
490
%%DATADIR%%/units/magmapump/magmapump.select.wav
560
%%DATADIR%%/units/magmapump/magmapump.select.wav
491
%%DATADIR%%/units/magmapump/magmapump.underattack.wav
561
%%DATADIR%%/units/magmapump/magmapump.underattack.wav
Lines 493-500 Link Here
493
%%DATADIR%%/units/magmapump/magmapump_i.png
563
%%DATADIR%%/units/magmapump/magmapump_i.png
494
%%DATADIR%%/units/magmapump/magmapump_s.png
564
%%DATADIR%%/units/magmapump/magmapump_s.png
495
%%DATADIR%%/units/magmapump/sfx_pplnt.die.wav
565
%%DATADIR%%/units/magmapump/sfx_pplnt.die.wav
496
%%DATADIR%%/units/magmapump/unit-magmapump.lua
566
%%DATADIR%%/units/magmapump/magmapump.completed.wav
497
%%DATADIR%%/units/medic/heal.png
567
%%DATADIR%%/units/medic/unit_medic_s.png
498
%%DATADIR%%/units/medic/ico_heal.png
568
%%DATADIR%%/units/medic/ico_heal.png
499
%%DATADIR%%/units/medic/ico_medic.png
569
%%DATADIR%%/units/medic/ico_medic.png
500
%%DATADIR%%/units/medic/medic.ready.wav
570
%%DATADIR%%/units/medic/medic.ready.wav
Lines 506-518 Link Here
506
%%DATADIR%%/units/medic/unit-medic.lua
576
%%DATADIR%%/units/medic/unit-medic.lua
507
%%DATADIR%%/units/medic/unit_medic.png
577
%%DATADIR%%/units/medic/unit_medic.png
508
%%DATADIR%%/units/medic/unit_medic_c.png
578
%%DATADIR%%/units/medic/unit_medic_c.png
509
%%DATADIR%%/units/medic/unit_medic_s.png
579
%%DATADIR%%/units/medic/heal.png
510
%%DATADIR%%/units/missilesilo/missile_silo.png
580
%%DATADIR%%/units/missilesilo/missile_silo.png
511
%%DATADIR%%/units/missilesilo/missile_silo_c.png
581
%%DATADIR%%/units/missilesilo/missile_silo_c.png
512
%%DATADIR%%/units/missilesilo/missile_silo_i.png
582
%%DATADIR%%/units/missilesilo/missile_silo_i.png
513
%%DATADIR%%/units/missilesilo/missile_silo_s.png
583
%%DATADIR%%/units/missilesilo/missile_silo_s.png
514
%%DATADIR%%/units/missilesilo/unit-missilesilo.lua
584
%%DATADIR%%/units/missilesilo/unit-missilesilo.lua
515
%%DATADIR%%/units/morels/morel_1.png
585
%%DATADIR%%/units/morels/unit-morels.lua
516
%%DATADIR%%/units/morels/morel_1i.png
586
%%DATADIR%%/units/morels/morel_1i.png
517
%%DATADIR%%/units/morels/morel_1s.png
587
%%DATADIR%%/units/morels/morel_1s.png
518
%%DATADIR%%/units/morels/morel_2.png
588
%%DATADIR%%/units/morels/morel_2.png
Lines 533-540 Link Here
533
%%DATADIR%%/units/morels/morel_7.png
603
%%DATADIR%%/units/morels/morel_7.png
534
%%DATADIR%%/units/morels/morel_7i.png
604
%%DATADIR%%/units/morels/morel_7i.png
535
%%DATADIR%%/units/morels/morel_7s.png
605
%%DATADIR%%/units/morels/morel_7s.png
536
%%DATADIR%%/units/morels/unit-morels.lua
606
%%DATADIR%%/units/morels/morel_1.png
537
%%DATADIR%%/units/nukeplant/nukeplant.png
607
%%DATADIR%%/units/nukeplant/unit-nukeplant.lua
538
%%DATADIR%%/units/nukeplant/nukeplant_c.png
608
%%DATADIR%%/units/nukeplant/nukeplant_c.png
539
%%DATADIR%%/units/nukeplant/nukeplant_i.png
609
%%DATADIR%%/units/nukeplant/nukeplant_i.png
540
%%DATADIR%%/units/nukeplant/nukeplant_s.png
610
%%DATADIR%%/units/nukeplant/nukeplant_s.png
Lines 542-556 Link Here
542
%%DATADIR%%/units/nukeplant/power.plant.underattack.wav
612
%%DATADIR%%/units/nukeplant/power.plant.underattack.wav
543
%%DATADIR%%/units/nukeplant/sfx_pplnt.die.wav
613
%%DATADIR%%/units/nukeplant/sfx_pplnt.die.wav
544
%%DATADIR%%/units/nukeplant/sfx_pplnt.select.wav
614
%%DATADIR%%/units/nukeplant/sfx_pplnt.select.wav
545
%%DATADIR%%/units/nukeplant/unit-nukeplant.lua
615
%%DATADIR%%/units/nukeplant/nukeplant.png
546
%%DATADIR%%/units/plants/pitcher.png
616
%%DATADIR%%/units/plants/rafflesia.png
547
%%DATADIR%%/units/plants/pitcher_icon.png
617
%%DATADIR%%/units/plants/pitcher_icon.png
548
%%DATADIR%%/units/plants/pitcher_shadow.png
618
%%DATADIR%%/units/plants/pitcher_shadow.png
549
%%DATADIR%%/units/plants/rafflesia.png
619
%%DATADIR%%/units/plants/pitcher.png
550
%%DATADIR%%/units/plants/rafflesia_icon.png
620
%%DATADIR%%/units/plants/rafflesia_icon.png
551
%%DATADIR%%/units/plants/rafflesia_shadow.png
621
%%DATADIR%%/units/plants/rafflesia_shadow.png
552
%%DATADIR%%/units/plants/unit-plant.lua
622
%%DATADIR%%/units/plants/unit-plant.lua
553
%%DATADIR%%/units/powerplant/power.plant.completed.wav
623
%%DATADIR%%/units/powerplant/unit-powerplant.lua
554
%%DATADIR%%/units/powerplant/power.plant.underattack.wav
624
%%DATADIR%%/units/powerplant/power.plant.underattack.wav
555
%%DATADIR%%/units/powerplant/powerplant.png
625
%%DATADIR%%/units/powerplant/powerplant.png
556
%%DATADIR%%/units/powerplant/powerplant_c.png
626
%%DATADIR%%/units/powerplant/powerplant_c.png
Lines 558-572 Link Here
558
%%DATADIR%%/units/powerplant/powerplant_s.png
628
%%DATADIR%%/units/powerplant/powerplant_s.png
559
%%DATADIR%%/units/powerplant/sfx_pplnt.die.wav
629
%%DATADIR%%/units/powerplant/sfx_pplnt.die.wav
560
%%DATADIR%%/units/powerplant/sfx_pplnt.select.wav
630
%%DATADIR%%/units/powerplant/sfx_pplnt.select.wav
561
%%DATADIR%%/units/powerplant/unit-powerplant.lua
631
%%DATADIR%%/units/powerplant/power.plant.completed.wav
562
%%DATADIR%%/units/radar/radar.completed.wav
632
%%DATADIR%%/units/radar/radar_i.png
563
%%DATADIR%%/units/radar/radar.png
633
%%DATADIR%%/units/radar/radar.png
564
%%DATADIR%%/units/radar/radar.underattack.wav
634
%%DATADIR%%/units/radar/radar.underattack.wav
565
%%DATADIR%%/units/radar/radar_i.png
635
%%DATADIR%%/units/radar/radar.completed.wav
566
%%DATADIR%%/units/radar/radar_s.png
636
%%DATADIR%%/units/radar/radar_s.png
567
%%DATADIR%%/units/radar/sfx_rdar.select.wav
637
%%DATADIR%%/units/radar/sfx_rdar.select.wav
568
%%DATADIR%%/units/radar/unit-radar.lua
638
%%DATADIR%%/units/radar/unit-radar.lua
569
%%DATADIR%%/units/rocks/rock_1.png
639
%%DATADIR%%/units/rocks/unit-rocks.lua
570
%%DATADIR%%/units/rocks/rock_1i.png
640
%%DATADIR%%/units/rocks/rock_1i.png
571
%%DATADIR%%/units/rocks/rock_1s.png
641
%%DATADIR%%/units/rocks/rock_1s.png
572
%%DATADIR%%/units/rocks/rock_2.png
642
%%DATADIR%%/units/rocks/rock_2.png
Lines 584-590 Link Here
584
%%DATADIR%%/units/rocks/rock_6.png
654
%%DATADIR%%/units/rocks/rock_6.png
585
%%DATADIR%%/units/rocks/rock_6i.png
655
%%DATADIR%%/units/rocks/rock_6i.png
586
%%DATADIR%%/units/rocks/rock_6s.png
656
%%DATADIR%%/units/rocks/rock_6s.png
587
%%DATADIR%%/units/rocks/unit-rocks.lua
657
%%DATADIR%%/units/rocks/rock_1.png
588
%%DATADIR%%/units/rocksfield/ico_rocks_field.png
658
%%DATADIR%%/units/rocksfield/ico_rocks_field.png
589
%%DATADIR%%/units/rocksfield/rocks_field.png
659
%%DATADIR%%/units/rocksfield/rocks_field.png
590
%%DATADIR%%/units/rocksfield/rocks_field_s.png
660
%%DATADIR%%/units/rocksfield/rocks_field_s.png
Lines 614-620 Link Here
614
%%DATADIR%%/units/tree04/tree04.png
684
%%DATADIR%%/units/tree04/tree04.png
615
%%DATADIR%%/units/tree04/tree04_s.png
685
%%DATADIR%%/units/tree04/tree04_s.png
616
%%DATADIR%%/units/tree04/unit-tree04.lua
686
%%DATADIR%%/units/tree04/unit-tree04.lua
617
%%DATADIR%%/units/vault/sfx_fort.die.wav
687
%%DATADIR%%/units/vault/vault_s.png
618
%%DATADIR%%/units/vault/sfx_fort.select.wav
688
%%DATADIR%%/units/vault/sfx_fort.select.wav
619
%%DATADIR%%/units/vault/vault-i.png
689
%%DATADIR%%/units/vault/vault-i.png
620
%%DATADIR%%/units/vault/vault.completed.wav
690
%%DATADIR%%/units/vault/vault.completed.wav
Lines 622-629 Link Here
622
%%DATADIR%%/units/vault/vault.png
692
%%DATADIR%%/units/vault/vault.png
623
%%DATADIR%%/units/vault/vault.underattack.wav
693
%%DATADIR%%/units/vault/vault.underattack.wav
624
%%DATADIR%%/units/vault/vault_c.png
694
%%DATADIR%%/units/vault/vault_c.png
625
%%DATADIR%%/units/vault/vault_s.png
695
%%DATADIR%%/units/vault/sfx_fort.die.wav
626
%%DATADIR%%/units/vehiclefactory/sfx_vfac.die.wav
696
%%DATADIR%%/units/vehiclefactory/vehiclefactory.lua
627
%%DATADIR%%/units/vehiclefactory/sfx_vfac.select.wav
697
%%DATADIR%%/units/vehiclefactory/sfx_vfac.select.wav
628
%%DATADIR%%/units/vehiclefactory/vehicle.factory.completed.wav
698
%%DATADIR%%/units/vehiclefactory/vehicle.factory.completed.wav
629
%%DATADIR%%/units/vehiclefactory/vehicle.factory.underattack.wav
699
%%DATADIR%%/units/vehiclefactory/vehicle.factory.underattack.wav
Lines 631-675 Link Here
631
%%DATADIR%%/units/vehiclefactory/vehicle_factory.png
701
%%DATADIR%%/units/vehiclefactory/vehicle_factory.png
632
%%DATADIR%%/units/vehiclefactory/vehicle_factory_i.png
702
%%DATADIR%%/units/vehiclefactory/vehicle_factory_i.png
633
%%DATADIR%%/units/vehiclefactory/vehicle_factory_s.png
703
%%DATADIR%%/units/vehiclefactory/vehicle_factory_s.png
634
%%DATADIR%%/units/vehiclefactory/vehiclefactory.lua
704
%%DATADIR%%/units/vehiclefactory/sfx_vfac.die.wav
635
%%DATADIR%%/units/weakhotspot/hotspot.png
705
%%DATADIR%%/units/weakhotspot/hotspot.png
636
%%DATADIR%%/units/weakhotspot/hotspot_i.png
706
%%DATADIR%%/units/weakhotspot/hotspot_i.png
637
%%DATADIR%%/units/weakhotspot/unit-weakhotspot.lua
707
%%DATADIR%%/units/weakhotspot/unit-weakhotspot.lua
638
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG
708
@dirrm share/licenses/boswars-2.6.1
639
%%PORTDOCS%%%%DOCSDIR%%/README.txt
709
@dirrm share/licenses
640
%%PORTDOCS%%%%DOCSDIR%%/doc/README-SDL.txt
641
%%PORTDOCS%%%%DOCSDIR%%/doc/development.html
642
%%PORTDOCS%%%%DOCSDIR%%/doc/faq.html
643
%%PORTDOCS%%%%DOCSDIR%%/doc/gcclibs-copyright.txt
644
%%PORTDOCS%%%%DOCSDIR%%/doc/gpl.html
645
%%PORTDOCS%%%%DOCSDIR%%/doc/guichan-copyright.txt
646
%%PORTDOCS%%%%DOCSDIR%%/doc/index.html
647
%%PORTDOCS%%%%DOCSDIR%%/doc/install.html
648
%%PORTDOCS%%%%DOCSDIR%%/doc/lua5-copyright.txt
649
%%PORTDOCS%%%%DOCSDIR%%/doc/media.html
650
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/ai.html
651
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/config.html
652
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/findlua.py
653
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/game.html
654
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/index.html
655
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/magic.html
656
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/makeindex.py
657
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/mappresentation.html
658
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/mapsetup.html
659
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/research.html
660
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/savegame.html
661
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/showindex.py
662
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/sound.html
663
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/tileset.html
664
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/triggers.html
665
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/ui.html
666
%%PORTDOCS%%%%DOCSDIR%%/doc/scripts/unittype.html
667
%%PORTDOCS%%%%DOCSDIR%%/doc/stratagus-changelog.html
668
%%PORTDOCS%%%%DOCSDIR%%/doc/tolua-copyright.txt
669
%%PORTDOCS%%%%DOCSDIR%%/doc/xiph-copyright.txt
670
%%PORTDOCS%%@dirrm %%DOCSDIR%%/doc/scripts
671
%%PORTDOCS%%@dirrm %%DOCSDIR%%/doc
672
%%PORTDOCS%%@dirrm %%DOCSDIR%%
673
@dirrm %%DATADIR%%/units/weakhotspot
710
@dirrm %%DATADIR%%/units/weakhotspot
674
@dirrm %%DATADIR%%/units/vehiclefactory
711
@dirrm %%DATADIR%%/units/vehiclefactory
675
@dirrm %%DATADIR%%/units/vault
712
@dirrm %%DATADIR%%/units/vault
Lines 690-702 Link Here
690
@dirrm %%DATADIR%%/units/medic
727
@dirrm %%DATADIR%%/units/medic
691
@dirrm %%DATADIR%%/units/magmapump
728
@dirrm %%DATADIR%%/units/magmapump
692
@dirrm %%DATADIR%%/units/jet
729
@dirrm %%DATADIR%%/units/jet
693
@dirrm %%DATADIR%%/units/hotspot
730
@dirrm %%DATADIR%%/units/aircraftfactory
694
@dirrm %%DATADIR%%/units/hospital
731
@dirrm %%DATADIR%%/units/hospital
732
@dirrm %%DATADIR%%/units/heli
695
@dirrm %%DATADIR%%/units/harvester
733
@dirrm %%DATADIR%%/units/harvester
696
@dirrm %%DATADIR%%/units/gturret
734
@dirrm %%DATADIR%%/units/gturret
697
@dirrm %%DATADIR%%/units/grenadier
735
@dirrm %%DATADIR%%/units/grenadier
698
@dirrm %%DATADIR%%/units/engineer
736
@dirrm %%DATADIR%%/units/engineer
699
@dirrm %%DATADIR%%/units/dorcoz
700
@dirrm %%DATADIR%%/units/corpses
737
@dirrm %%DATADIR%%/units/corpses
701
@dirrm %%DATADIR%%/units/chopper
738
@dirrm %%DATADIR%%/units/chopper
702
@dirrm %%DATADIR%%/units/cannon
739
@dirrm %%DATADIR%%/units/cannon
Lines 704-761 Link Here
704
@dirrm %%DATADIR%%/units/camera
741
@dirrm %%DATADIR%%/units/camera
705
@dirrm %%DATADIR%%/units/buggy
742
@dirrm %%DATADIR%%/units/buggy
706
@dirrm %%DATADIR%%/units/bomber
743
@dirrm %%DATADIR%%/units/bomber
744
@dirrm %%DATADIR%%/units/biggunturret
707
@dirrm %%DATADIR%%/units/bazoo
745
@dirrm %%DATADIR%%/units/bazoo
708
@dirrm %%DATADIR%%/units/assault
746
@dirrm %%DATADIR%%/units/assault
709
@dirrm %%DATADIR%%/units/artil
747
@dirrm %%DATADIR%%/units/artil
710
@dirrm %%DATADIR%%/units/apcs
748
@dirrm %%DATADIR%%/units/apcs
711
@dirrm %%DATADIR%%/units/antharus
749
@dirrm %%DATADIR%%/units/antharus
712
@dirrm %%DATADIR%%/units/aircraftfactory
750
@dirrm %%DATADIR%%/units/hotspot
713
@dirrm %%DATADIR%%/units
751
@dirrm %%DATADIR%%/units
714
@dirrm %%DATADIR%%/sounds/ui
752
@dirrm %%DATADIR%%/sounds/ui
715
@dirrm %%DATADIR%%/sounds
753
@dirrm %%DATADIR%%/sounds
716
@dirrm %%DATADIR%%/scripts/tilesets
754
@dirrm %%DATADIR%%/scripts/ais
717
@dirrm %%DATADIR%%/scripts/menus/ingame
755
@dirrm %%DATADIR%%/scripts/menus/ingame
718
@dirrm %%DATADIR%%/scripts/menus
756
@dirrm %%DATADIR%%/scripts/menus
719
@dirrm %%DATADIR%%/scripts/ais
720
@dirrm %%DATADIR%%/scripts
757
@dirrm %%DATADIR%%/scripts
758
@dirrm %%DATADIR%%/patches/grass
759
@dirrm %%DATADIR%%/patches
721
@dirrm %%DATADIR%%/maps/wetlands02.map
760
@dirrm %%DATADIR%%/maps/wetlands02.map
722
@dirrm %%DATADIR%%/maps/wetlands01.map
761
@dirrm %%DATADIR%%/maps/wetlands01.map
723
@dirrm %%DATADIR%%/maps/river.map
762
@dirrm %%DATADIR%%/maps/river.map
724
@dirrm %%DATADIR%%/maps/patches.map
763
@dirrm %%DATADIR%%/maps/patches.map
725
@dirrm %%DATADIR%%/maps/multiplayer.map
764
@dirrm %%DATADIR%%/maps/lava-river.map
726
@dirrm %%DATADIR%%/maps/lake.map
727
@dirrm %%DATADIR%%/maps/labyrinth.map
728
@dirrm %%DATADIR%%/maps/islandwar.map
765
@dirrm %%DATADIR%%/maps/islandwar.map
729
@dirrm %%DATADIR%%/maps/highlands.map
766
@dirrm %%DATADIR%%/maps/hospitality.map
730
@dirrm %%DATADIR%%/maps/guerillawarfare.map
767
@dirrm %%DATADIR%%/maps/guerillawarfare.map
731
@dirrm %%DATADIR%%/maps/forest.map
768
@dirrm %%DATADIR%%/maps/4on4.map
732
@dirrm %%DATADIR%%/maps/cross.map
733
@dirrm %%DATADIR%%/maps/canyon.map
769
@dirrm %%DATADIR%%/maps/canyon.map
734
@dirrm %%DATADIR%%/maps/campaigns/tutorial/tutorial.map
770
@dirrm %%DATADIR%%/maps/campaigns/tutorial/tutorial.map
735
@dirrm %%DATADIR%%/maps/campaigns/tutorial
771
@dirrm %%DATADIR%%/maps/campaigns/tutorial
736
@dirrm %%DATADIR%%/maps/campaigns/elites/The_River.map
737
@dirrm %%DATADIR%%/maps/campaigns/elites/Shield_of_Wasteland.map
738
@dirrm %%DATADIR%%/maps/campaigns/elites/Savoy_Steps.map
739
@dirrm %%DATADIR%%/maps/campaigns/elites/Savoy_Lake.map
740
@dirrm %%DATADIR%%/maps/campaigns/elites/Rochebrune.map
741
@dirrm %%DATADIR%%/maps/campaigns/elites/Green_Valley.map
742
@dirrm %%DATADIR%%/maps/campaigns/elites/Fort_Savoy.map
743
@dirrm %%DATADIR%%/maps/campaigns/elites/Buffy_Forest.map
744
@dirrm %%DATADIR%%/maps/campaigns/elites/Bellegarde.map
745
@dirrm %%DATADIR%%/maps/campaigns/elites/Aiglier.map
746
@dirrm %%DATADIR%%/maps/campaigns/elites
747
@dirrm %%DATADIR%%/maps/campaigns
772
@dirrm %%DATADIR%%/maps/campaigns
748
@dirrm %%DATADIR%%/maps/bridge2far.map
773
@dirrm %%DATADIR%%/maps/bridge2far.map
749
@dirrm %%DATADIR%%/maps/bridge.map
774
@dirrm %%DATADIR%%/maps/bridge.map
750
@dirrm %%DATADIR%%/maps/braza.map
775
@dirrm %%DATADIR%%/maps/bottleneck.map
751
@dirrm %%DATADIR%%/maps/battlefield.map
776
@dirrm %%DATADIR%%/maps/battlefield.map
752
@dirrm %%DATADIR%%/maps/antarticum.map
777
@dirrm %%DATADIR%%/maps/antarticum.map
778
@dirrm %%DATADIR%%/maps/go-east.map
753
@dirrm %%DATADIR%%/maps
779
@dirrm %%DATADIR%%/maps
754
@dirrm %%DATADIR%%/languages
780
@dirrm %%DATADIR%%/languages
755
@dirrm %%DATADIR%%/intro
781
@dirrm %%DATADIR%%/intro
782
@dirrm %%DATADIR%%/graphics/ui/patcheditor
756
@dirrm %%DATADIR%%/graphics/ui/cursors
783
@dirrm %%DATADIR%%/graphics/ui/cursors
757
@dirrm %%DATADIR%%/graphics/ui
784
@dirrm %%DATADIR%%/graphics/ui
758
@dirrm %%DATADIR%%/graphics/tiles
759
@dirrm %%DATADIR%%/graphics/screens
785
@dirrm %%DATADIR%%/graphics/screens
760
@dirrm %%DATADIR%%/graphics/neutral/units
786
@dirrm %%DATADIR%%/graphics/neutral/units
761
@dirrm %%DATADIR%%/graphics/neutral
787
@dirrm %%DATADIR%%/graphics/neutral
Lines 764-769 Link Here
764
@dirrm %%DATADIR%%/graphics/explosions
790
@dirrm %%DATADIR%%/graphics/explosions
765
@dirrm %%DATADIR%%/graphics
791
@dirrm %%DATADIR%%/graphics
766
@dirrm %%DATADIR%%/campaigns/tutorial
792
@dirrm %%DATADIR%%/campaigns/tutorial
767
@dirrm %%DATADIR%%/campaigns/elites
793
@dirrm %%DATADIR%%/campaigns/swindler
768
@dirrm %%DATADIR%%/campaigns
794
@dirrm %%DATADIR%%/campaigns
769
@dirrm %%DATADIR%%
795
@dirrm %%DATADIR%%
796
%%PORTDOCS%%@dirrm %%DOCSDIR%%/scripts
797
%%PORTDOCS%%@dirrm %%DOCSDIR%%

Return to bug 162501