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

(-)b/graphics/synfig/Makefile (-2 / +2 lines)
Lines 1-9 Link Here
1
# Created by: Yinghong.Liu <relaxbsd@gmail.com>
1
# Created by: Yinghong.Liu <relaxbsd@gmail.com>
2
2
3
PORTNAME=	synfig
3
PORTNAME=	synfig
4
PORTVERSION=	1.2.2
4
PORTVERSION=	1.4.2
5
DISTVERSIONPREFIX=v
5
DISTVERSIONPREFIX=v
6
PORTREVISION=	19
7
CATEGORIES=	graphics devel multimedia
6
CATEGORIES=	graphics devel multimedia
8
7
9
MAINTAINER=	portmaster@BSDforge.com
8
MAINTAINER=	portmaster@BSDforge.com
Lines 21-26 LIB_DEPENDS= libImath.so:math/Imath \ Link Here
21
		libfftw3.so:math/fftw3 \
20
		libfftw3.so:math/fftw3 \
22
		libfontconfig.so:x11-fonts/fontconfig \
21
		libfontconfig.so:x11-fonts/fontconfig \
23
		libfreetype.so:print/freetype2 \
22
		libfreetype.so:print/freetype2 \
23
		libharfbuzz.so:print/harfbuzz \
24
		libltdl.so:devel/libltdl \
24
		libltdl.so:devel/libltdl \
25
		libmng.so:graphics/libmng \
25
		libmng.so:graphics/libmng \
26
		libpng.so:graphics/png \
26
		libpng.so:graphics/png \
(-)b/graphics/synfig/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1576020568
1
TIMESTAMP = 1647569275
2
SHA256 (synfig-synfig-v1.2.2_GH0.tar.gz) = 7319e9ad62f3ae3e4c25875ac4965f3ecf72b96d8d435b42c91dcd6dd9b0e82d
2
SHA256 (synfig-synfig-v1.4.2_GH0.tar.gz) = f435e51a425541cbbe752b0cb6052fe1f05f9da977cccf0ee3a0ef95c4b7c84b
3
SIZE (synfig-synfig-v1.2.2_GH0.tar.gz) = 11107386
3
SIZE (synfig-synfig-v1.4.2_GH0.tar.gz) = 12844618
(-)b/graphics/synfig/files/patch-src__synfig__main.cpp (-17 / +16 lines)
Lines 1-6 Link Here
1
--- src/synfig/main.cpp.orig	2017-04-02 22:19:06 UTC
1
--- src/synfig/main.cpp.orig	2022-04-20 18:01:09.451858000 -0700
2
+++ src/synfig/main.cpp
2
+++ src/synfig/main.cpp	2022-04-20 19:15:23.316538000 -0700
3
@@ -198,7 +198,7 @@ synfig::Main::Main(const synfig::String& basepath,Prog
3
@@ -224,7 +224,7 @@
4
 
4
 
5
 	unsigned int i;
5
 	unsigned int i;
6
 #ifdef _DEBUG
6
 #ifdef _DEBUG
Lines 9-43 Link Here
9
 	std::set_terminate(__gnu_cxx::__verbose_terminate_handler);
9
 	std::set_terminate(__gnu_cxx::__verbose_terminate_handler);
10
 #endif
10
 #endif
11
 #endif
11
 #endif
12
@@ -490,7 +490,11 @@ synfig::get_binary_path(const String &fallback_path)
12
@@ -546,7 +546,11 @@
13
 
14
 	/* Read from /proc/self/exe (symlink) */
13
 	/* Read from /proc/self/exe (symlink) */
15
 	char* path2 = (char*)malloc(buf_size);
14
 	//char* path2 = (char*)malloc(buf_size);
15
 	char* path2 = new char[buf_size];
16
-	strncpy(path2, "/proc/self/exe", buf_size - 1);
16
+#if defined(__FreeBSD__) || defined (__DragonFly__)
17
+#if defined(__FreeBSD__) || defined (__DragonFly__)
17
+        strncpy(path2, "/proc/curproc/file", buf_size - 1);
18
+		strncpy(path2, "/proc/curproc/file", buf_size - 1);
18
+#else
19
+#else
19
 	strncpy(path2, "/proc/self/exe", buf_size - 1);
20
+		strncpy(path2, "/proc/self/exe", buf_size - 1);
20
+#endif
21
+#endif
21
 
22
 
22
 	while (1) {
23
 	while (1) {
23
 		int i;
24
 		int i;
24
@@ -524,9 +528,10 @@ synfig::get_binary_path(const String &fallback_path)
25
@@ -584,6 +588,7 @@
25
 		/* path is a symlink. Continue loop and resolve this. */
26
 	//free(path2);
26
 		strncpy(path, path2, buf_size - 1);
27
 	delete[] path2;
27
 	}
28
-	
29
+
30
 	free(path2);
31
 
28
 
32
+#if ! (defined(__FreeBSD__) || defined(__DragonFly__))
29
+#if ! (defined(__FreeBSD__) || defined(__DragonFly__))
33
 	if (result == "")
30
 	if (result == "")
34
 	{
31
 	{
35
 		/* readlink() or stat() failed; this can happen when the program is
32
 		/* readlink() or stat() failed; this can happen when the program is
36
@@ -568,6 +573,7 @@ synfig::get_binary_path(const String &fallback_path)
33
@@ -625,7 +630,8 @@
37
 		free(line);
34
 		free(line);
38
 		fclose(f);
35
 		fclose(f);
39
 	}
36
 	}
37
-	
40
+#endif
38
+#endif
41
 	
39
+
42
 	free(path);
40
 	free(path);
43
 
41
 
42
 #endif
(-)b/graphics/synfig/files/patch-src__synfig__transform.cpp (-2 / +2 lines)
Lines 1-5 Link Here
1
--- src/synfig/transform.cpp.orig	2015-03-28 10:15:01 UTC
1
--- src/synfig/transform.cpp.orig	2022-04-20 19:16:57.130395000 -0700
2
+++ src/synfig/transform.cpp
2
+++ src/synfig/transform.cpp	2022-04-20 19:17:00.690569000 -0700
3
@@ -31,6 +31,7 @@
3
@@ -31,6 +31,7 @@
4
 
4
 
5
 #include "transform.h"
5
 #include "transform.h"
(-)b/graphics/synfig/pkg-plist (-102 / +70 lines)
Lines 1-6 Link Here
1
bin/synfig
1
bin/synfig
2
bin/synfig-config
2
bin/synfig-config
3
etc/synfig_modules.cfg
3
%%ETCDIR%%_modules.cfg
4
include/synfig-1.0/synfig/activepoint.h
4
include/synfig-1.0/synfig/activepoint.h
5
include/synfig-1.0/synfig/angle.h
5
include/synfig-1.0/synfig/angle.h
6
include/synfig-1.0/synfig/base_types.h
6
include/synfig-1.0/synfig/base_types.h
Lines 23-31 include/synfig-1.0/synfig/color/color.hpp Link Here
23
include/synfig-1.0/synfig/color/coloraccumulator.h
23
include/synfig-1.0/synfig/color/coloraccumulator.h
24
include/synfig-1.0/synfig/color/colormatrix.h
24
include/synfig-1.0/synfig/color/colormatrix.h
25
include/synfig-1.0/synfig/color/common.h
25
include/synfig-1.0/synfig/color/common.h
26
include/synfig-1.0/synfig/color/gamma.h
26
include/synfig-1.0/synfig/color/pixelformat.h
27
include/synfig-1.0/synfig/color/pixelformat.h
27
include/synfig-1.0/synfig/complex.h
28
include/synfig-1.0/synfig/complex.h
28
include/synfig-1.0/synfig/context.h
29
include/synfig-1.0/synfig/context.h
30
include/synfig-1.0/synfig/curve.h
29
include/synfig-1.0/synfig/curve_helper.h
31
include/synfig-1.0/synfig/curve_helper.h
30
include/synfig-1.0/synfig/curveset.h
32
include/synfig-1.0/synfig/curveset.h
31
include/synfig-1.0/synfig/dashitem.h
33
include/synfig-1.0/synfig/dashitem.h
Lines 40-46 include/synfig-1.0/synfig/filesystem.h Link Here
40
include/synfig-1.0/synfig/filesystemgroup.h
42
include/synfig-1.0/synfig/filesystemgroup.h
41
include/synfig-1.0/synfig/filesystemnative.h
43
include/synfig-1.0/synfig/filesystemnative.h
42
include/synfig-1.0/synfig/filesystemtemporary.h
44
include/synfig-1.0/synfig/filesystemtemporary.h
43
include/synfig-1.0/synfig/gamma.h
44
include/synfig-1.0/synfig/general.h
45
include/synfig-1.0/synfig/general.h
45
include/synfig-1.0/synfig/gradient.h
46
include/synfig-1.0/synfig/gradient.h
46
include/synfig-1.0/synfig/guid.h
47
include/synfig-1.0/synfig/guid.h
Lines 73-81 include/synfig-1.0/synfig/loadcanvas.h Link Here
73
include/synfig-1.0/synfig/localization.h
74
include/synfig-1.0/synfig/localization.h
74
include/synfig-1.0/synfig/main.h
75
include/synfig-1.0/synfig/main.h
75
include/synfig-1.0/synfig/matrix.h
76
include/synfig-1.0/synfig/matrix.h
76
include/synfig-1.0/synfig/mesh.h
77
include/synfig-1.0/synfig/module.h
77
include/synfig-1.0/synfig/module.h
78
include/synfig-1.0/synfig/mutex.h
79
include/synfig-1.0/synfig/node.h
78
include/synfig-1.0/synfig/node.h
80
include/synfig-1.0/synfig/pair.h
79
include/synfig-1.0/synfig/pair.h
81
include/synfig-1.0/synfig/palette.h
80
include/synfig-1.0/synfig/palette.h
Lines 91-144 include/synfig-1.0/synfig/releases.h Link Here
91
include/synfig-1.0/synfig/renddesc.h
90
include/synfig-1.0/synfig/renddesc.h
92
include/synfig-1.0/synfig/render.h
91
include/synfig-1.0/synfig/render.h
93
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerblendassociative.h
92
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerblendassociative.h
94
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerblendblend.h
93
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerblendmerge.h
95
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerblendcomposite.h
94
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerblendtotarget.h
96
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerblendseparate.h
97
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerblendsplit.h
98
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerblendzero.h
99
include/synfig-1.0/synfig/rendering/common/optimizer/optimizercalcbounds.h
100
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerdraft.h
95
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerdraft.h
101
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerlinear.h
102
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerlist.h
96
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerlist.h
103
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerpixelprocessorsplit.h
97
include/synfig-1.0/synfig/rendering/common/optimizer/optimizerpass.h
104
include/synfig-1.0/synfig/rendering/common/optimizer/optimizersplit.h
98
include/synfig-1.0/synfig/rendering/common/optimizer/optimizersplit.h
105
include/synfig-1.0/synfig/rendering/common/optimizer/optimizersurface.h
106
include/synfig-1.0/synfig/rendering/common/optimizer/optimizersurfaceconvert.h
107
include/synfig-1.0/synfig/rendering/common/optimizer/optimizersurfacecreate.h
108
include/synfig-1.0/synfig/rendering/common/optimizer/optimizersurfacedestroy.h
109
include/synfig-1.0/synfig/rendering/common/optimizer/optimizersurfaceresample.h
110
include/synfig-1.0/synfig/rendering/common/optimizer/optimizertransformation.h
99
include/synfig-1.0/synfig/rendering/common/optimizer/optimizertransformation.h
111
include/synfig-1.0/synfig/rendering/common/optimizer/optimizertransformationaffine.h
100
include/synfig-1.0/synfig/rendering/common/surfacefile.h
112
include/synfig-1.0/synfig/rendering/common/surfacememoryreadwrapper.h
101
include/synfig-1.0/synfig/rendering/common/surfacememoryreadwrapper.h
113
include/synfig-1.0/synfig/rendering/common/task/taskblend.h
102
include/synfig-1.0/synfig/rendering/common/task/taskblend.h
114
include/synfig-1.0/synfig/rendering/common/task/taskblur.h
103
include/synfig-1.0/synfig/rendering/common/task/taskblur.h
115
include/synfig-1.0/synfig/rendering/common/task/taskcallback.h
116
include/synfig-1.0/synfig/rendering/common/task/taskcomposite.h
117
include/synfig-1.0/synfig/rendering/common/task/taskcontour.h
104
include/synfig-1.0/synfig/rendering/common/task/taskcontour.h
118
include/synfig-1.0/synfig/rendering/common/task/tasklayer.h
105
include/synfig-1.0/synfig/rendering/common/task/tasklayer.h
119
include/synfig-1.0/synfig/rendering/common/task/tasklist.h
120
include/synfig-1.0/synfig/rendering/common/task/taskmesh.h
106
include/synfig-1.0/synfig/rendering/common/task/taskmesh.h
121
include/synfig-1.0/synfig/rendering/common/task/taskpixelcolormatrix.h
122
include/synfig-1.0/synfig/rendering/common/task/taskpixelgamma.h
123
include/synfig-1.0/synfig/rendering/common/task/taskpixelprocessor.h
107
include/synfig-1.0/synfig/rendering/common/task/taskpixelprocessor.h
124
include/synfig-1.0/synfig/rendering/common/task/tasksolid.h
125
include/synfig-1.0/synfig/rendering/common/task/tasksplittable.h
126
include/synfig-1.0/synfig/rendering/common/task/tasksurface.h
127
include/synfig-1.0/synfig/rendering/common/task/tasksurfaceconvert.h
128
include/synfig-1.0/synfig/rendering/common/task/tasksurfacecreate.h
129
include/synfig-1.0/synfig/rendering/common/task/tasksurfacedestroy.h
130
include/synfig-1.0/synfig/rendering/common/task/tasksurfaceempty.h
131
include/synfig-1.0/synfig/rendering/common/task/tasksurfaceresample.h
132
include/synfig-1.0/synfig/rendering/common/task/tasktransformableaffine.h
133
include/synfig-1.0/synfig/rendering/common/task/tasktransformation.h
108
include/synfig-1.0/synfig/rendering/common/task/tasktransformation.h
134
include/synfig-1.0/synfig/rendering/common/task/tasktransformationpass.h
135
include/synfig-1.0/synfig/rendering/optimizer.h
109
include/synfig-1.0/synfig/rendering/optimizer.h
136
include/synfig-1.0/synfig/rendering/primitive/affinetransformation.h
110
include/synfig-1.0/synfig/rendering/primitive/bend.h
137
include/synfig-1.0/synfig/rendering/primitive/blur.h
111
include/synfig-1.0/synfig/rendering/primitive/blur.h
138
include/synfig-1.0/synfig/rendering/primitive/contour.h
112
include/synfig-1.0/synfig/rendering/primitive/contour.h
113
include/synfig-1.0/synfig/rendering/primitive/intersector.h
139
include/synfig-1.0/synfig/rendering/primitive/mesh.h
114
include/synfig-1.0/synfig/rendering/primitive/mesh.h
140
include/synfig-1.0/synfig/rendering/primitive/polyspan.h
115
include/synfig-1.0/synfig/rendering/primitive/polyspan.h
141
include/synfig-1.0/synfig/rendering/primitive/transformation.h
116
include/synfig-1.0/synfig/rendering/primitive/transformation.h
117
include/synfig-1.0/synfig/rendering/primitive/transformationaffine.h
142
include/synfig-1.0/synfig/rendering/renderer.h
118
include/synfig-1.0/synfig/rendering/renderer.h
143
include/synfig-1.0/synfig/rendering/renderqueue.h
119
include/synfig-1.0/synfig/rendering/renderqueue.h
144
include/synfig-1.0/synfig/rendering/resource.h
120
include/synfig-1.0/synfig/rendering/resource.h
Lines 147-186 include/synfig-1.0/synfig/rendering/software/function/blur.h Link Here
147
include/synfig-1.0/synfig/rendering/software/function/blurtemplates.h
123
include/synfig-1.0/synfig/rendering/software/function/blurtemplates.h
148
include/synfig-1.0/synfig/rendering/software/function/contour.h
124
include/synfig-1.0/synfig/rendering/software/function/contour.h
149
include/synfig-1.0/synfig/rendering/software/function/fft.h
125
include/synfig-1.0/synfig/rendering/software/function/fft.h
126
include/synfig-1.0/synfig/rendering/software/function/mesh.h
150
include/synfig-1.0/synfig/rendering/software/function/packedsurface.h
127
include/synfig-1.0/synfig/rendering/software/function/packedsurface.h
151
include/synfig-1.0/synfig/rendering/software/optimizer/optimizerblendsw.h
128
include/synfig-1.0/synfig/rendering/software/function/resample.h
152
include/synfig-1.0/synfig/rendering/software/optimizer/optimizerblursw.h
153
include/synfig-1.0/synfig/rendering/software/optimizer/optimizercontoursw.h
154
include/synfig-1.0/synfig/rendering/software/optimizer/optimizerlayersw.h
155
include/synfig-1.0/synfig/rendering/software/optimizer/optimizermeshsw.h
156
include/synfig-1.0/synfig/rendering/software/optimizer/optimizerpixelcolormatrixsw.h
157
include/synfig-1.0/synfig/rendering/software/optimizer/optimizerpixelgammasw.h
158
include/synfig-1.0/synfig/rendering/software/optimizer/optimizersurfaceresamplesw.h
159
include/synfig-1.0/synfig/rendering/software/rendererdraftsw.h
129
include/synfig-1.0/synfig/rendering/software/rendererdraftsw.h
160
include/synfig-1.0/synfig/rendering/software/rendererlowressw.h
130
include/synfig-1.0/synfig/rendering/software/rendererlowressw.h
131
include/synfig-1.0/synfig/rendering/software/rendererpreviewsw.h
161
include/synfig-1.0/synfig/rendering/software/renderersafe.h
132
include/synfig-1.0/synfig/rendering/software/renderersafe.h
162
include/synfig-1.0/synfig/rendering/software/renderersw.h
133
include/synfig-1.0/synfig/rendering/software/renderersw.h
163
include/synfig-1.0/synfig/rendering/software/surfacesw.h
134
include/synfig-1.0/synfig/rendering/software/surfacesw.h
164
include/synfig-1.0/synfig/rendering/software/surfaceswpacked.h
135
include/synfig-1.0/synfig/rendering/software/surfaceswpacked.h
165
include/synfig-1.0/synfig/rendering/software/task/taskblendsw.h
166
include/synfig-1.0/synfig/rendering/software/task/taskblursw.h
167
include/synfig-1.0/synfig/rendering/software/task/taskcontoursw.h
168
include/synfig-1.0/synfig/rendering/software/task/taskexpandsurfacesw.h
169
include/synfig-1.0/synfig/rendering/software/task/tasklayersw.h
170
include/synfig-1.0/synfig/rendering/software/task/taskmeshsw.h
171
include/synfig-1.0/synfig/rendering/software/task/taskpixelcolormatrixsw.h
172
include/synfig-1.0/synfig/rendering/software/task/taskpixelgammasw.h
173
include/synfig-1.0/synfig/rendering/software/task/tasksurfaceresamplesw.h
174
include/synfig-1.0/synfig/rendering/software/task/tasksw.h
136
include/synfig-1.0/synfig/rendering/software/task/tasksw.h
175
include/synfig-1.0/synfig/rendering/surface.h
137
include/synfig-1.0/synfig/rendering/surface.h
176
include/synfig-1.0/synfig/rendering/task.h
138
include/synfig-1.0/synfig/rendering/task.h
177
include/synfig-1.0/synfig/rendermethod.h
178
include/synfig-1.0/synfig/savecanvas.h
139
include/synfig-1.0/synfig/savecanvas.h
179
include/synfig-1.0/synfig/segment.h
140
include/synfig-1.0/synfig/segment.h
180
include/synfig-1.0/synfig/smartfile.h
141
include/synfig-1.0/synfig/smartfile.h
181
include/synfig-1.0/synfig/soundprocessor.h
142
include/synfig-1.0/synfig/soundprocessor.h
182
include/synfig-1.0/synfig/string.h
143
include/synfig-1.0/synfig/string.h
183
include/synfig-1.0/synfig/string_decl.h
144
include/synfig-1.0/synfig/string_helper.h
184
include/synfig-1.0/synfig/surface.h
145
include/synfig-1.0/synfig/surface.h
185
include/synfig-1.0/synfig/target.h
146
include/synfig-1.0/synfig/target.h
186
include/synfig-1.0/synfig/target_cairo.h
147
include/synfig-1.0/synfig/target_cairo.h
Lines 191-198 include/synfig-1.0/synfig/target_null_tile.h Link Here
191
include/synfig-1.0/synfig/target_scanline.h
152
include/synfig-1.0/synfig/target_scanline.h
192
include/synfig-1.0/synfig/target_tile.h
153
include/synfig-1.0/synfig/target_tile.h
193
include/synfig-1.0/synfig/targetparam.h
154
include/synfig-1.0/synfig/targetparam.h
155
include/synfig-1.0/synfig/threadpool.h
194
include/synfig-1.0/synfig/time.h
156
include/synfig-1.0/synfig/time.h
195
include/synfig-1.0/synfig/timepointcollect.h
157
include/synfig-1.0/synfig/timepointcollect.h
158
include/synfig-1.0/synfig/token.h
196
include/synfig-1.0/synfig/transform.h
159
include/synfig-1.0/synfig/transform.h
197
include/synfig-1.0/synfig/transformation.h
160
include/synfig-1.0/synfig/transformation.h
198
include/synfig-1.0/synfig/type.h
161
include/synfig-1.0/synfig/type.h
Lines 290-295 lib/synfig/modules/libmod_gif.so Link Here
290
lib/synfig/modules/libmod_gradient.so
253
lib/synfig/modules/libmod_gradient.so
291
lib/synfig/modules/libmod_imagemagick.so
254
lib/synfig/modules/libmod_imagemagick.so
292
lib/synfig/modules/libmod_jpeg.so
255
lib/synfig/modules/libmod_jpeg.so
256
lib/synfig/modules/libmod_libavcodec.so
293
lib/synfig/modules/libmod_magickpp.so
257
lib/synfig/modules/libmod_magickpp.so
294
lib/synfig/modules/libmod_mng.so
258
lib/synfig/modules/libmod_mng.so
295
lib/synfig/modules/libmod_noise.so
259
lib/synfig/modules/libmod_noise.so
Lines 304-355 libdata/pkgconfig/synfig.pc Link Here
304
%%PORTDOCS%%%%DOCSDIR%%/NEWS
268
%%PORTDOCS%%%%DOCSDIR%%/NEWS
305
%%PORTDOCS%%%%DOCSDIR%%/README
269
%%PORTDOCS%%%%DOCSDIR%%/README
306
%%PORTDOCS%%%%DOCSDIR%%/TODO
270
%%PORTDOCS%%%%DOCSDIR%%/TODO
307
%%NLS%%share/locale/aa_DJ/LC_MESSAGES/synfig.mo
271
share/locale/aa_DJ/LC_MESSAGES/synfig.mo
308
%%NLS%%share/locale/ar/LC_MESSAGES/synfig.mo
272
share/locale/ar/LC_MESSAGES/synfig.mo
309
%%NLS%%share/locale/bs/LC_MESSAGES/synfig.mo
273
share/locale/bs/LC_MESSAGES/synfig.mo
310
%%NLS%%share/locale/ca/LC_MESSAGES/synfig.mo
274
share/locale/ca/LC_MESSAGES/synfig.mo
311
%%NLS%%share/locale/ca@valencia/LC_MESSAGES/synfig.mo
275
share/locale/ca@valencia/LC_MESSAGES/synfig.mo
312
%%NLS%%share/locale/cs/LC_MESSAGES/synfig.mo
276
share/locale/cs/LC_MESSAGES/synfig.mo
313
%%NLS%%share/locale/cs_CZ/LC_MESSAGES/synfig.mo
277
share/locale/cs_CZ/LC_MESSAGES/synfig.mo
314
%%NLS%%share/locale/da/LC_MESSAGES/synfig.mo
278
share/locale/da/LC_MESSAGES/synfig.mo
315
%%NLS%%share/locale/de/LC_MESSAGES/synfig.mo
279
share/locale/de/LC_MESSAGES/synfig.mo
316
%%NLS%%share/locale/el_GR/LC_MESSAGES/synfig.mo
280
share/locale/el_GR/LC_MESSAGES/synfig.mo
317
%%NLS%%share/locale/en_CZ/LC_MESSAGES/synfig.mo
281
share/locale/en_CZ/LC_MESSAGES/synfig.mo
318
%%NLS%%share/locale/en_GB/LC_MESSAGES/synfig.mo
282
share/locale/en_GB/LC_MESSAGES/synfig.mo
319
%%NLS%%share/locale/es/LC_MESSAGES/synfig.mo
283
share/locale/es/LC_MESSAGES/synfig.mo
320
%%NLS%%share/locale/es_PY/LC_MESSAGES/synfig.mo
284
share/locale/es_AR/LC_MESSAGES/synfig.mo
321
%%NLS%%share/locale/eu/LC_MESSAGES/synfig.mo
285
share/locale/es_PY/LC_MESSAGES/synfig.mo
322
%%NLS%%share/locale/eu_ES/LC_MESSAGES/synfig.mo
286
share/locale/eu/LC_MESSAGES/synfig.mo
323
%%NLS%%share/locale/fa_IR/LC_MESSAGES/synfig.mo
287
share/locale/eu_ES/LC_MESSAGES/synfig.mo
324
%%NLS%%share/locale/fr/LC_MESSAGES/synfig.mo
288
share/locale/fa_IR/LC_MESSAGES/synfig.mo
325
%%NLS%%share/locale/gl/LC_MESSAGES/synfig.mo
289
share/locale/fr/LC_MESSAGES/synfig.mo
326
%%NLS%%share/locale/he/LC_MESSAGES/synfig.mo
290
share/locale/gl/LC_MESSAGES/synfig.mo
327
%%NLS%%share/locale/hi_IN/LC_MESSAGES/synfig.mo
291
share/locale/he/LC_MESSAGES/synfig.mo
328
%%NLS%%share/locale/hu/LC_MESSAGES/synfig.mo
292
share/locale/hi/LC_MESSAGES/synfig.mo
329
%%NLS%%share/locale/it/LC_MESSAGES/synfig.mo
293
share/locale/hi_IN/LC_MESSAGES/synfig.mo
330
%%NLS%%share/locale/ja/LC_MESSAGES/synfig.mo
294
share/locale/hu/LC_MESSAGES/synfig.mo
331
%%NLS%%share/locale/ja_JP/LC_MESSAGES/synfig.mo
295
share/locale/it/LC_MESSAGES/synfig.mo
332
%%NLS%%share/locale/kab/LC_MESSAGES/synfig.mo
296
share/locale/ja/LC_MESSAGES/synfig.mo
333
%%NLS%%share/locale/lt/LC_MESSAGES/synfig.mo
297
share/locale/ja_JP/LC_MESSAGES/synfig.mo
334
%%NLS%%share/locale/lv/LC_MESSAGES/synfig.mo
298
share/locale/kab/LC_MESSAGES/synfig.mo
335
%%NLS%%share/locale/ne/LC_MESSAGES/synfig.mo
299
share/locale/ko_KR/LC_MESSAGES/synfig.mo
336
%%NLS%%share/locale/nl/LC_MESSAGES/synfig.mo
300
share/locale/lt/LC_MESSAGES/synfig.mo
337
%%NLS%%share/locale/no_NO/LC_MESSAGES/synfig.mo
301
share/locale/lv/LC_MESSAGES/synfig.mo
338
%%NLS%%share/locale/pl_PL/LC_MESSAGES/synfig.mo
302
share/locale/nb/LC_MESSAGES/synfig.mo
339
%%NLS%%share/locale/pt/LC_MESSAGES/synfig.mo
303
share/locale/ne/LC_MESSAGES/synfig.mo
340
%%NLS%%share/locale/pt_BR/LC_MESSAGES/synfig.mo
304
share/locale/nl/LC_MESSAGES/synfig.mo
341
%%NLS%%share/locale/ro/LC_MESSAGES/synfig.mo
305
share/locale/pl_PL/LC_MESSAGES/synfig.mo
342
%%NLS%%share/locale/ru/LC_MESSAGES/synfig.mo
306
share/locale/pt/LC_MESSAGES/synfig.mo
343
%%NLS%%share/locale/si/LC_MESSAGES/synfig.mo
307
share/locale/pt_BR/LC_MESSAGES/synfig.mo
344
%%NLS%%share/locale/sk/LC_MESSAGES/synfig.mo
308
share/locale/ro/LC_MESSAGES/synfig.mo
345
%%NLS%%share/locale/sk_SK/LC_MESSAGES/synfig.mo
309
share/locale/ru/LC_MESSAGES/synfig.mo
346
%%NLS%%share/locale/sl/LC_MESSAGES/synfig.mo
310
share/locale/si/LC_MESSAGES/synfig.mo
347
%%NLS%%share/locale/sr_RS/LC_MESSAGES/synfig.mo
311
share/locale/sk/LC_MESSAGES/synfig.mo
348
%%NLS%%share/locale/sv_SE/LC_MESSAGES/synfig.mo
312
share/locale/sk_SK/LC_MESSAGES/synfig.mo
349
%%NLS%%share/locale/tr/LC_MESSAGES/synfig.mo
313
share/locale/sl/LC_MESSAGES/synfig.mo
350
%%NLS%%share/locale/ur/LC_MESSAGES/synfig.mo
314
share/locale/sr_RS/LC_MESSAGES/synfig.mo
351
%%NLS%%share/locale/uz@Latn/LC_MESSAGES/synfig.mo
315
share/locale/sv_SE/LC_MESSAGES/synfig.mo
352
%%NLS%%share/locale/zh-Hant/LC_MESSAGES/synfig.mo
316
share/locale/tr/LC_MESSAGES/synfig.mo
353
%%NLS%%share/locale/zh_CN/LC_MESSAGES/synfig.mo
317
share/locale/uk/LC_MESSAGES/synfig.mo
354
%%NLS%%share/locale/zh_TW.Big5/LC_MESSAGES/synfig.mo
318
share/locale/ur/LC_MESSAGES/synfig.mo
355
%%NLS%%share/locale/zh_TW/LC_MESSAGES/synfig.mo
319
share/locale/uz@Latn/LC_MESSAGES/synfig.mo
320
share/locale/zh-Hant/LC_MESSAGES/synfig.mo
321
share/locale/zh_CN/LC_MESSAGES/synfig.mo
322
share/locale/zh_TW.Big5/LC_MESSAGES/synfig.mo
323
share/locale/zh_TW/LC_MESSAGES/synfig.mo

Return to bug 263461