View | Details | Raw Unified | Return to bug 220597 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-5 / +16 lines)
Lines 2-10 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	gucharmap
4
PORTNAME=	gucharmap
5
PORTVERSION=	9.0.4
5
PORTVERSION=	11.0.1
6
CATEGORIES=	deskutils gnome
6
CATEGORIES=	deskutils gnome
7
MASTER_SITES=	GNOME
7
#MASTER_SITES=	GNOME
8
DIST_SUBDIR=	gnome3
8
DIST_SUBDIR=	gnome3
9
9
10
MAINTAINER=	gnome@FreeBSD.org
10
MAINTAINER=	gnome@FreeBSD.org
Lines 14-25 Link Here
14
LICENSE_FILE=	${WRKSRC}/COPYING
14
LICENSE_FILE=	${WRKSRC}/COPYING
15
15
16
BUILD_DEPENDS=	itstool:textproc/itstool \
16
BUILD_DEPENDS=	itstool:textproc/itstool \
17
		UCD>=0:textproc/UCD
17
		UCD>=0:textproc/UCD \
18
		gtkdocize:textproc/gtk-doc \
19
		${LOCALBASE}/share/aclocal/yelp.m4:textproc/yelp-tools
18
20
19
PORTSCOUT=	limitw:1,even
21
PORTSCOUT=	limitw:1,even
20
22
21
USES=		desktop-file-utils gmake gnome libtool localbase \
23
USES=		autoreconf:build desktop-file-utils gettext gmake gnome \
22
		pathfix pkgconfig tar:xz
24
		libtool localbase pathfix pkgconfig tar:xz
23
USE_GNOME=	cairo gdkpixbuf2 gtk30 intltool introspection:build
25
USE_GNOME=	cairo gdkpixbuf2 gtk30 intltool introspection:build
24
GNU_CONFIGURE=	yes
26
GNU_CONFIGURE=	yes
25
CONFIGURE_ARGS=	--with-unicode-data=${LOCALBASE}/share/unicode/ucd/
27
CONFIGURE_ARGS=	--with-unicode-data=${LOCALBASE}/share/unicode/ucd/
Lines 26-31 Link Here
26
USE_LDCONFIG=	yes
28
USE_LDCONFIG=	yes
27
INSTALL_TARGET=	install-strip
29
INSTALL_TARGET=	install-strip
28
30
31
USE_GITLAB=	yes
32
GL_SITE=	https://gitlab.gnome.org
33
GL_ACCOUNT=	GNOME
34
GL_COMMIT=	061cf7c0ba4ce62d2ce5743313a71cb272a5f82e
35
29
GLIB_SCHEMAS=	org.gnome.Charmap.enums.xml \
36
GLIB_SCHEMAS=	org.gnome.Charmap.enums.xml \
30
		org.gnome.Charmap.gschema.xml
37
		org.gnome.Charmap.gschema.xml
31
38
Lines 34-38 Link Here
34
41
35
NLS_USES=	gettext
42
NLS_USES=	gettext
36
NLS_CONFIGURE_ENABLE=	nls
43
NLS_CONFIGURE_ENABLE=	nls
44
NLS_CONFIGURE_OFF=	--disable-nls
37
45
46
pre-configure:
47
	cd ${WRKSRC} && NOCONFIGURE=1 ./autogen.sh
48
38
.include <bsd.port.mk>
49
.include <bsd.port.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1496229245
1
TIMESTAMP = 1530106565
2
SHA256 (gnome3/gucharmap-9.0.4.tar.xz) = 1588b2b183b843b24eb074fd0661bddb54f18876870ba475d65f35b7a9c677a0
2
SHA256 (gnome3/GNOME-gucharmap-061cf7c0ba4ce62d2ce5743313a71cb272a5f82e_GL0.tar.gz) = 835e58ee8702b53fb600854875286f857c4656dfafe95fd5c5c5842a51a1e52c
3
SIZE (gnome3/gucharmap-9.0.4.tar.xz) = 1029684
3
SIZE (gnome3/GNOME-gucharmap-061cf7c0ba4ce62d2ce5743313a71cb272a5f82e_GL0.tar.gz) = 1978183
(-)files/patch-acinclude.m4 (+389 lines)
Line 0 Link Here
1
--- acinclude.m4.orig	2018-06-27 19:28:27 UTC
2
+++ acinclude.m4
3
@@ -317,3 +317,386 @@ AC_DEFUN([CC_ATTRIBUTE_ALIGNED], [
4
        [Define the highest alignment supported])
5
   fi
6
 ])
7
+
8
+# GLIB_WITH_NLS
9
+#-----------------
10
+glib_DEFUN([GLIB_WITH_NLS],
11
+  dnl NLS is obligatory
12
+  [USE_NLS=yes
13
+    AC_SUBST(USE_NLS)
14
+
15
+    gt_cv_have_gettext=no
16
+
17
+    CATOBJEXT=NONE
18
+    XGETTEXT=:
19
+    INTLLIBS=
20
+
21
+    AC_CHECK_HEADER(libintl.h,
22
+     [gt_cv_func_dgettext_libintl="no"
23
+      libintl_extra_libs=""
24
+
25
+      #
26
+      # First check in libc
27
+      #
28
+      AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc,
29
+        [AC_TRY_LINK([
30
+#include <libintl.h>
31
+],
32
+         [return !ngettext ("","", 1)],
33
+          gt_cv_func_ngettext_libc=yes,
34
+          gt_cv_func_ngettext_libc=no)
35
+        ])
36
+  
37
+      if test "$gt_cv_func_ngettext_libc" = "yes" ; then
38
+              AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc,
39
+                [AC_TRY_LINK([
40
+#include <libintl.h>
41
+],
42
+                  [return !dgettext ("","")],
43
+                  gt_cv_func_dgettext_libc=yes,
44
+                  gt_cv_func_dgettext_libc=no)
45
+                ])
46
+      fi
47
+  
48
+      if test "$gt_cv_func_ngettext_libc" = "yes" ; then
49
+        AC_CHECK_FUNCS(bind_textdomain_codeset)
50
+      fi
51
+
52
+      #
53
+      # If we don't have everything we want, check in libintl
54
+      #
55
+      if test "$gt_cv_func_dgettext_libc" != "yes" \
56
+         || test "$gt_cv_func_ngettext_libc" != "yes" \
57
+         || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then
58
+        
59
+        AC_CHECK_LIB(intl, bindtextdomain,
60
+            [AC_CHECK_LIB(intl, ngettext,
61
+                    [AC_CHECK_LIB(intl, dgettext,
62
+                                  gt_cv_func_dgettext_libintl=yes)])])
63
+
64
+        if test "$gt_cv_func_dgettext_libintl" != "yes" ; then
65
+          AC_MSG_CHECKING([if -liconv is needed to use gettext])
66
+          AC_MSG_RESULT([])
67
+          AC_CHECK_LIB(intl, ngettext,
68
+                [AC_CHECK_LIB(intl, dcgettext,
69
+                       [gt_cv_func_dgettext_libintl=yes
70
+                        libintl_extra_libs=-liconv],
71
+                        :,-liconv)],
72
+                :,-liconv)
73
+        fi
74
+
75
+        #
76
+        # If we found libintl, then check in it for bind_textdomain_codeset();
77
+        # we'll prefer libc if neither have bind_textdomain_codeset(),
78
+        # and both have dgettext and ngettext
79
+        #
80
+        if test "$gt_cv_func_dgettext_libintl" = "yes" ; then
81
+          glib_save_LIBS="$LIBS"
82
+          LIBS="$LIBS -lintl $libintl_extra_libs"
83
+          unset ac_cv_func_bind_textdomain_codeset
84
+          AC_CHECK_FUNCS(bind_textdomain_codeset)
85
+          LIBS="$glib_save_LIBS"
86
+
87
+          if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then
88
+            gt_cv_func_dgettext_libc=no
89
+          else
90
+            if test "$gt_cv_func_dgettext_libc" = "yes" \
91
+                && test "$gt_cv_func_ngettext_libc" = "yes"; then
92
+              gt_cv_func_dgettext_libintl=no
93
+            fi
94
+          fi
95
+        fi
96
+      fi
97
+
98
+      if test "$gt_cv_func_dgettext_libc" = "yes" \
99
+        || test "$gt_cv_func_dgettext_libintl" = "yes"; then
100
+        gt_cv_have_gettext=yes
101
+      fi
102
+  
103
+      if test "$gt_cv_func_dgettext_libintl" = "yes"; then
104
+        INTLLIBS="-lintl $libintl_extra_libs"
105
+      fi
106
+  
107
+      if test "$gt_cv_have_gettext" = "yes"; then
108
+        AC_DEFINE(HAVE_GETTEXT,1,
109
+          [Define if the GNU gettext() function is already present or preinstalled.])
110
+        GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,
111
+          [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl
112
+        if test "$MSGFMT" != "no"; then
113
+          glib_save_LIBS="$LIBS"
114
+          LIBS="$LIBS $INTLLIBS"
115
+          AC_CHECK_FUNCS(dcgettext)
116
+          MSGFMT_OPTS=
117
+          AC_MSG_CHECKING([if msgfmt accepts -c])
118
+          GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[
119
+msgid ""
120
+msgstr ""
121
+"Content-Type: text/plain; charset=UTF-8\n"
122
+"Project-Id-Version: test 1.0\n"
123
+"PO-Revision-Date: 2007-02-15 12:01+0100\n"
124
+"Last-Translator: test <foo@bar.xx>\n"
125
+"Language-Team: C <LL@li.org>\n"
126
+"MIME-Version: 1.0\n"
127
+"Content-Transfer-Encoding: 8bit\n"
128
+], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])])
129
+          AC_SUBST(MSGFMT_OPTS)
130
+          AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
131
+          GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
132
+            [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :)
133
+          AC_TRY_LINK(, [extern int _nl_msg_cat_cntr;
134
+                         return _nl_msg_cat_cntr],
135
+            [CATOBJEXT=.gmo 
136
+             DATADIRNAME=share],
137
+            [case $host in
138
+            *-*-solaris*)
139
+            dnl On Solaris, if bind_textdomain_codeset is in libc,
140
+            dnl GNU format message catalog is always supported,
141
+            dnl since both are added to the libc all together.
142
+            dnl Hence, we'd like to go with DATADIRNAME=share and
143
+            dnl and CATOBJEXT=.gmo in this case.
144
+            AC_CHECK_FUNC(bind_textdomain_codeset,
145
+              [CATOBJEXT=.gmo 
146
+               DATADIRNAME=share],
147
+              [CATOBJEXT=.mo
148
+               DATADIRNAME=lib])
149
+            ;;
150
+            *-*-openbsd*)
151
+            CATOBJEXT=.mo
152
+            DATADIRNAME=share
153
+            ;;
154
+            *)
155
+            CATOBJEXT=.mo
156
+            DATADIRNAME=lib
157
+            ;;
158
+            esac])
159
+          LIBS="$glib_save_LIBS"
160
+          INSTOBJEXT=.mo
161
+        else
162
+          gt_cv_have_gettext=no
163
+        fi
164
+      fi
165
+    ])
166
+
167
+    if test "$gt_cv_have_gettext" = "yes" ; then
168
+      AC_DEFINE(ENABLE_NLS, 1,
169
+        [always defined to indicate that i18n is enabled])
170
+    fi
171
+
172
+    dnl Test whether we really found GNU xgettext.
173
+    if test "$XGETTEXT" != ":"; then
174
+      dnl If it is not GNU xgettext we define it as : so that the
175
+      dnl Makefiles still can work.
176
+      if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
177
+        : ;
178
+      else
179
+        AC_MSG_RESULT(
180
+          [found xgettext program is not GNU xgettext; ignore it])
181
+        XGETTEXT=":"
182
+      fi
183
+    fi
184
+
185
+    # We need to process the po/ directory.
186
+    POSUB=po
187
+
188
+    AC_OUTPUT_COMMANDS(
189
+      [case "$CONFIG_FILES" in *po/Makefile.in*)
190
+        sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
191
+      esac])
192
+
193
+    dnl These rules are solely for the distribution goal.  While doing this
194
+    dnl we only have to keep exactly one list of the available catalogs
195
+    dnl in configure.ac.
196
+    for lang in $ALL_LINGUAS; do
197
+      GMOFILES="$GMOFILES $lang.gmo"
198
+      POFILES="$POFILES $lang.po"
199
+    done
200
+
201
+    dnl Make all variables we use known to autoconf.
202
+    AC_SUBST(CATALOGS)
203
+    AC_SUBST(CATOBJEXT)
204
+    AC_SUBST(DATADIRNAME)
205
+    AC_SUBST(GMOFILES)
206
+    AC_SUBST(INSTOBJEXT)
207
+    AC_SUBST(INTLLIBS)
208
+    AC_SUBST(PO_IN_DATADIR_TRUE)
209
+    AC_SUBST(PO_IN_DATADIR_FALSE)
210
+    AC_SUBST(POFILES)
211
+    AC_SUBST(POSUB)
212
+  ])
213
+
214
+# AM_GLIB_GNU_GETTEXT
215
+# -------------------
216
+# Do checks necessary for use of gettext. If a suitable implementation 
217
+# of gettext is found in either in libintl or in the C library,
218
+# it will set INTLLIBS to the libraries needed for use of gettext
219
+# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable
220
+# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST()
221
+# on various variables needed by the Makefile.in.in installed by 
222
+# glib-gettextize.
223
+dnl
224
+AU_DEFUN([GLIB_GNU_GETTEXT],
225
+  [AC_REQUIRE([AC_PROG_CC])dnl
226
+   
227
+   GLIB_LC_MESSAGES
228
+   GLIB_WITH_NLS
229
+
230
+   if test "$gt_cv_have_gettext" = "yes"; then
231
+     if test "x$ALL_LINGUAS" = "x"; then
232
+       LINGUAS=
233
+     else
234
+       AC_MSG_CHECKING(for catalogs to be installed)
235
+       NEW_LINGUAS=
236
+       for presentlang in $ALL_LINGUAS; do
237
+         useit=no
238
+         if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then
239
+           desiredlanguages="$LINGUAS"
240
+         else
241
+           desiredlanguages="$ALL_LINGUAS"
242
+         fi
243
+         for desiredlang in $desiredlanguages; do
244
+           # Use the presentlang catalog if desiredlang is
245
+           #   a. equal to presentlang, or
246
+           #   b. a variant of presentlang (because in this case,
247
+           #      presentlang can be used as a fallback for messages
248
+           #      which are not translated in the desiredlang catalog).
249
+           case "$desiredlang" in
250
+             "$presentlang"*) useit=yes;;
251
+           esac
252
+         done
253
+         if test $useit = yes; then
254
+           NEW_LINGUAS="$NEW_LINGUAS $presentlang"
255
+         fi
256
+       done
257
+       LINGUAS=$NEW_LINGUAS
258
+       AC_MSG_RESULT($LINGUAS)
259
+     fi
260
+
261
+     dnl Construct list of names of catalog files to be constructed.
262
+     if test -n "$LINGUAS"; then
263
+       for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done
264
+     fi
265
+   fi
266
+
267
+   dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly
268
+   dnl find the mkinstalldirs script in another subdir but ($top_srcdir).
269
+   dnl Try to locate is.
270
+   MKINSTALLDIRS=
271
+   if test -n "$ac_aux_dir"; then
272
+     MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"
273
+   fi
274
+   if test -z "$MKINSTALLDIRS"; then
275
+     MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
276
+   fi
277
+   AC_SUBST(MKINSTALLDIRS)
278
+
279
+   dnl Generate list of files to be processed by xgettext which will
280
+   dnl be included in po/Makefile.
281
+   test -d po || mkdir po
282
+   if test "x$srcdir" != "x."; then
283
+     if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then
284
+       posrcprefix="$srcdir/"
285
+     else
286
+       posrcprefix="../$srcdir/"
287
+     fi
288
+   else
289
+     posrcprefix="../"
290
+   fi
291
+   rm -f po/POTFILES
292
+   sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
293
+        < $srcdir/po/POTFILES.in > po/POTFILES
294
+  ],
295
+  [[$0: This macro is deprecated. You should use upstream gettext instead.]])
296
+
297
+# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE)
298
+# -------------------------------
299
+# Define VARIABLE to the location where catalog files will
300
+# be installed by po/Makefile.
301
+glib_DEFUN([GLIB_DEFINE_LOCALEDIR],
302
+[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl
303
+glib_save_prefix="$prefix"
304
+glib_save_exec_prefix="$exec_prefix"
305
+glib_save_datarootdir="$datarootdir"
306
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
307
+test "x$exec_prefix" = xNONE && exec_prefix=$prefix
308
+datarootdir=`eval echo "${datarootdir}"`
309
+if test "x$CATOBJEXT" = "x.mo" ; then
310
+  localedir=`eval echo "${libdir}/locale"`
311
+else
312
+  localedir=`eval echo "${datadir}/locale"`
313
+fi
314
+prefix="$glib_save_prefix"
315
+exec_prefix="$glib_save_exec_prefix"
316
+datarootdir="$glib_save_datarootdir"
317
+AC_DEFINE_UNQUOTED($1, "$localedir",
318
+  [Define the location where the catalogs will be installed])
319
+])
320
+
321
+dnl
322
+dnl Now the definitions that aclocal will find
323
+dnl
324
+ifdef(glib_configure_ac,[],[
325
+AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)])
326
+AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)])
327
+])dnl
328
+
329
+# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL])
330
+# 
331
+# Create a temporary file with TEST-FILE as its contents and pass the
332
+# file name to PROGRAM.  Perform ACTION-IF-PASS if PROGRAM exits with
333
+# 0 and perform ACTION-IF-FAIL for any other exit status.
334
+AC_DEFUN([GLIB_RUN_PROG],
335
+[cat >conftest.foo <<_ACEOF
336
+$2
337
+_ACEOF
338
+if AC_RUN_LOG([$1 conftest.foo]); then
339
+  m4_ifval([$3], [$3], [:])
340
+m4_ifvaln([$4], [else $4])dnl
341
+echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD
342
+sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD
343
+fi])
344
+
345
+
346
+# nls.m4 serial 5 (gettext-0.18)
347
+dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software
348
+dnl Foundation, Inc.
349
+dnl This file is free software; the Free Software Foundation
350
+dnl gives unlimited permission to copy and/or distribute it,
351
+dnl with or without modifications, as long as this notice is preserved.
352
+dnl
353
+dnl This file can be used in projects which are not available under
354
+dnl the GNU General Public License or the GNU Library General Public
355
+dnl License but which still want to provide support for the GNU gettext
356
+dnl functionality.
357
+dnl Please note that the actual code of the GNU gettext library is covered
358
+dnl by the GNU Library General Public License, and the rest of the GNU
359
+dnl gettext package is covered by the GNU General Public License.
360
+dnl They are *not* in the public domain.
361
+
362
+dnl Authors:
363
+dnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
364
+dnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.
365
+
366
+AC_PREREQ([2.50])
367
+
368
+AC_DEFUN([AM_NLS],
369
+[
370
+  AC_MSG_CHECKING([whether NLS is requested])
371
+  dnl Default is enabled NLS
372
+  AC_ARG_ENABLE([nls],
373
+    [  --disable-nls           do not use Native Language Support],
374
+    USE_NLS=$enableval, USE_NLS=yes)
375
+  AC_MSG_RESULT([$USE_NLS])
376
+  AC_SUBST([USE_NLS])
377
+])
378
+
379
+AC_DEFUN([AM_NLS],
380
+[
381
+  AC_MSG_CHECKING([whether NLS is requested])
382
+  dnl Default is enabled NLS
383
+  AC_ARG_ENABLE([nls],
384
+    [  --disable-nls           do not use Native Language Support],
385
+    USE_NLS=$enableval, USE_NLS=yes)
386
+  AC_MSG_RESULT([$USE_NLS])
387
+  AC_SUBST([USE_NLS])
388
+])
389
+
(-)files/patch-gucharmap_gen-guch-unicode-tables.pl (-10 lines)
Lines 1-10 Link Here
1
--- gucharmap/gen-guch-unicode-tables.pl.orig	2017-05-09 22:11:10 UTC
2
+++ gucharmap/gen-guch-unicode-tables.pl
3
@@ -999,6 +999,7 @@ sub process_versions_txt
4
         {
5
             next;
6
         }
7
+        next if $raw_version > $v;
8
 
9
         my $version = $raw_version;
10
         $version =~ tr/_/ /;
(-)pkg-plist (-89 / +112 lines)
Lines 20-53 Link Here
20
libdata/pkgconfig/gucharmap-2.90.pc
20
libdata/pkgconfig/gucharmap-2.90.pc
21
share/applications/gucharmap.desktop
21
share/applications/gucharmap.desktop
22
share/gir-1.0/Gucharmap-2.90.gir
22
share/gir-1.0/Gucharmap-2.90.gir
23
share/help/C/gucharmap/figures/gucharmap_window.png
23
share/help/C/gucharmap/index.docbook
24
share/help/C/gucharmap/index.docbook
24
share/help/C/gucharmap/legal.xml
25
share/help/C/gucharmap/legal.xml
26
share/help/bg/gucharmap/figures/gucharmap_window.png
25
share/help/bg/gucharmap/index.docbook
27
share/help/bg/gucharmap/index.docbook
26
share/help/bg/gucharmap/legal.xml
28
share/help/bg/gucharmap/legal.xml
27
share/help/ca/gucharmap/index.docbook
29
share/help/ca/gucharmap/index.docbook
28
share/help/ca/gucharmap/legal.xml
30
share/help/ca/gucharmap/legal.xml
31
share/help/cs/gucharmap/figures/gucharmap_window.png
29
share/help/cs/gucharmap/index.docbook
32
share/help/cs/gucharmap/index.docbook
30
share/help/cs/gucharmap/legal.xml
33
share/help/cs/gucharmap/legal.xml
34
share/help/de/gucharmap/figures/gucharmap_window.png
31
share/help/de/gucharmap/index.docbook
35
share/help/de/gucharmap/index.docbook
32
share/help/de/gucharmap/legal.xml
36
share/help/de/gucharmap/legal.xml
37
share/help/el/gucharmap/figures/gucharmap_window.png
33
share/help/el/gucharmap/index.docbook
38
share/help/el/gucharmap/index.docbook
34
share/help/el/gucharmap/legal.xml
39
share/help/el/gucharmap/legal.xml
35
share/help/en_GB/gucharmap/index.docbook
40
share/help/en_GB/gucharmap/index.docbook
36
share/help/en_GB/gucharmap/legal.xml
41
share/help/en_GB/gucharmap/legal.xml
42
share/help/es/gucharmap/figures/gucharmap_window.png
37
share/help/es/gucharmap/index.docbook
43
share/help/es/gucharmap/index.docbook
38
share/help/es/gucharmap/legal.xml
44
share/help/es/gucharmap/legal.xml
45
share/help/fi/gucharmap/figures/gucharmap_window.png
39
share/help/fi/gucharmap/index.docbook
46
share/help/fi/gucharmap/index.docbook
40
share/help/fi/gucharmap/legal.xml
47
share/help/fi/gucharmap/legal.xml
48
share/help/fr/gucharmap/figures/gucharmap_window.png
41
share/help/fr/gucharmap/index.docbook
49
share/help/fr/gucharmap/index.docbook
42
share/help/fr/gucharmap/legal.xml
50
share/help/fr/gucharmap/legal.xml
43
share/help/gl/gucharmap/index.docbook
51
share/help/gl/gucharmap/index.docbook
44
share/help/gl/gucharmap/legal.xml
52
share/help/gl/gucharmap/legal.xml
53
share/help/hu/gucharmap/figures/gucharmap_window.png
45
share/help/hu/gucharmap/index.docbook
54
share/help/hu/gucharmap/index.docbook
46
share/help/hu/gucharmap/legal.xml
55
share/help/hu/gucharmap/legal.xml
56
share/help/ko/gucharmap/figures/gucharmap_window.png
47
share/help/ko/gucharmap/index.docbook
57
share/help/ko/gucharmap/index.docbook
48
share/help/ko/gucharmap/legal.xml
58
share/help/ko/gucharmap/legal.xml
49
share/help/oc/gucharmap/index.docbook
59
share/help/oc/gucharmap/index.docbook
50
share/help/oc/gucharmap/legal.xml
60
share/help/oc/gucharmap/legal.xml
61
share/help/pl/gucharmap/figures/gucharmap_window.png
62
share/help/pl/gucharmap/index.docbook
63
share/help/pl/gucharmap/legal.xml
64
share/help/pt_BR/gucharmap/figures/gucharmap_window.png
51
share/help/pt_BR/gucharmap/index.docbook
65
share/help/pt_BR/gucharmap/index.docbook
52
share/help/pt_BR/gucharmap/legal.xml
66
share/help/pt_BR/gucharmap/legal.xml
53
share/help/ru/gucharmap/index.docbook
67
share/help/ru/gucharmap/index.docbook
Lines 54-151 Link Here
54
share/help/ru/gucharmap/legal.xml
68
share/help/ru/gucharmap/legal.xml
55
share/help/sl/gucharmap/index.docbook
69
share/help/sl/gucharmap/index.docbook
56
share/help/sl/gucharmap/legal.xml
70
share/help/sl/gucharmap/legal.xml
71
share/help/sv/gucharmap/figures/gucharmap_window.png
57
share/help/sv/gucharmap/index.docbook
72
share/help/sv/gucharmap/index.docbook
58
share/help/sv/gucharmap/legal.xml
73
share/help/sv/gucharmap/legal.xml
59
share/help/vi/gucharmap/index.docbook
74
share/help/vi/gucharmap/index.docbook
60
share/help/vi/gucharmap/legal.xml
75
share/help/vi/gucharmap/legal.xml
76
share/help/zh_CN/gucharmap/figures/gucharmap_window.png
61
share/help/zh_CN/gucharmap/index.docbook
77
share/help/zh_CN/gucharmap/index.docbook
62
share/help/zh_CN/gucharmap/legal.xml
78
share/help/zh_CN/gucharmap/legal.xml
63
share/locale/af/LC_MESSAGES/gucharmap.mo
79
%%NLS%%share/locale/af/LC_MESSAGES/gucharmap.mo
64
share/locale/am/LC_MESSAGES/gucharmap.mo
80
%%NLS%%share/locale/am/LC_MESSAGES/gucharmap.mo
65
share/locale/ar/LC_MESSAGES/gucharmap.mo
81
%%NLS%%share/locale/ar/LC_MESSAGES/gucharmap.mo
66
share/locale/as/LC_MESSAGES/gucharmap.mo
82
%%NLS%%share/locale/as/LC_MESSAGES/gucharmap.mo
67
share/locale/ast/LC_MESSAGES/gucharmap.mo
83
%%NLS%%share/locale/ast/LC_MESSAGES/gucharmap.mo
68
share/locale/az/LC_MESSAGES/gucharmap.mo
84
%%NLS%%share/locale/az/LC_MESSAGES/gucharmap.mo
69
share/locale/be/LC_MESSAGES/gucharmap.mo
85
%%NLS%%share/locale/be/LC_MESSAGES/gucharmap.mo
70
share/locale/be@latin/LC_MESSAGES/gucharmap.mo
86
%%NLS%%share/locale/be@latin/LC_MESSAGES/gucharmap.mo
71
share/locale/bg/LC_MESSAGES/gucharmap.mo
87
%%NLS%%share/locale/bg/LC_MESSAGES/gucharmap.mo
72
share/locale/bn/LC_MESSAGES/gucharmap.mo
88
%%NLS%%share/locale/bn/LC_MESSAGES/gucharmap.mo
73
share/locale/bn_IN/LC_MESSAGES/gucharmap.mo
89
%%NLS%%share/locale/bn_IN/LC_MESSAGES/gucharmap.mo
74
share/locale/br/LC_MESSAGES/gucharmap.mo
90
%%NLS%%share/locale/br/LC_MESSAGES/gucharmap.mo
75
share/locale/bs/LC_MESSAGES/gucharmap.mo
91
%%NLS%%share/locale/bs/LC_MESSAGES/gucharmap.mo
76
share/locale/ca/LC_MESSAGES/gucharmap.mo
92
%%NLS%%share/locale/ca/LC_MESSAGES/gucharmap.mo
77
share/locale/ca@valencia/LC_MESSAGES/gucharmap.mo
93
%%NLS%%share/locale/ca@valencia/LC_MESSAGES/gucharmap.mo
78
share/locale/cs/LC_MESSAGES/gucharmap.mo
94
%%NLS%%share/locale/cs/LC_MESSAGES/gucharmap.mo
79
share/locale/cy/LC_MESSAGES/gucharmap.mo
95
%%NLS%%share/locale/cy/LC_MESSAGES/gucharmap.mo
80
share/locale/da/LC_MESSAGES/gucharmap.mo
96
%%NLS%%share/locale/da/LC_MESSAGES/gucharmap.mo
81
share/locale/de/LC_MESSAGES/gucharmap.mo
97
%%NLS%%share/locale/de/LC_MESSAGES/gucharmap.mo
82
share/locale/dz/LC_MESSAGES/gucharmap.mo
98
%%NLS%%share/locale/dz/LC_MESSAGES/gucharmap.mo
83
share/locale/el/LC_MESSAGES/gucharmap.mo
99
%%NLS%%share/locale/el/LC_MESSAGES/gucharmap.mo
84
share/locale/en@shaw/LC_MESSAGES/gucharmap.mo
100
%%NLS%%share/locale/en@shaw/LC_MESSAGES/gucharmap.mo
85
share/locale/en_CA/LC_MESSAGES/gucharmap.mo
101
%%NLS%%share/locale/en_CA/LC_MESSAGES/gucharmap.mo
86
share/locale/en_GB/LC_MESSAGES/gucharmap.mo
102
%%NLS%%share/locale/en_GB/LC_MESSAGES/gucharmap.mo
87
share/locale/eo/LC_MESSAGES/gucharmap.mo
103
%%NLS%%share/locale/eo/LC_MESSAGES/gucharmap.mo
88
share/locale/es/LC_MESSAGES/gucharmap.mo
104
%%NLS%%share/locale/es/LC_MESSAGES/gucharmap.mo
89
share/locale/et/LC_MESSAGES/gucharmap.mo
105
%%NLS%%share/locale/et/LC_MESSAGES/gucharmap.mo
90
share/locale/eu/LC_MESSAGES/gucharmap.mo
106
%%NLS%%share/locale/eu/LC_MESSAGES/gucharmap.mo
91
share/locale/fa/LC_MESSAGES/gucharmap.mo
107
%%NLS%%share/locale/fa/LC_MESSAGES/gucharmap.mo
92
share/locale/fi/LC_MESSAGES/gucharmap.mo
108
%%NLS%%share/locale/fi/LC_MESSAGES/gucharmap.mo
93
share/locale/fr/LC_MESSAGES/gucharmap.mo
109
%%NLS%%share/locale/fr/LC_MESSAGES/gucharmap.mo
94
share/locale/ga/LC_MESSAGES/gucharmap.mo
110
%%NLS%%share/locale/ga/LC_MESSAGES/gucharmap.mo
95
share/locale/gl/LC_MESSAGES/gucharmap.mo
111
%%NLS%%share/locale/gl/LC_MESSAGES/gucharmap.mo
96
share/locale/gu/LC_MESSAGES/gucharmap.mo
112
%%NLS%%share/locale/gu/LC_MESSAGES/gucharmap.mo
97
share/locale/he/LC_MESSAGES/gucharmap.mo
113
%%NLS%%share/locale/he/LC_MESSAGES/gucharmap.mo
98
share/locale/hi/LC_MESSAGES/gucharmap.mo
114
%%NLS%%share/locale/hi/LC_MESSAGES/gucharmap.mo
99
share/locale/hr/LC_MESSAGES/gucharmap.mo
115
%%NLS%%share/locale/hr/LC_MESSAGES/gucharmap.mo
100
share/locale/hu/LC_MESSAGES/gucharmap.mo
116
%%NLS%%share/locale/hu/LC_MESSAGES/gucharmap.mo
101
share/locale/id/LC_MESSAGES/gucharmap.mo
117
%%NLS%%share/locale/id/LC_MESSAGES/gucharmap.mo
102
share/locale/is/LC_MESSAGES/gucharmap.mo
118
%%NLS%%share/locale/is/LC_MESSAGES/gucharmap.mo
103
share/locale/it/LC_MESSAGES/gucharmap.mo
119
%%NLS%%share/locale/it/LC_MESSAGES/gucharmap.mo
104
share/locale/ja/LC_MESSAGES/gucharmap.mo
120
%%NLS%%share/locale/ja/LC_MESSAGES/gucharmap.mo
105
share/locale/ka/LC_MESSAGES/gucharmap.mo
121
%%NLS%%share/locale/ka/LC_MESSAGES/gucharmap.mo
106
share/locale/kk/LC_MESSAGES/gucharmap.mo
122
%%NLS%%share/locale/kk/LC_MESSAGES/gucharmap.mo
107
share/locale/kn/LC_MESSAGES/gucharmap.mo
123
%%NLS%%share/locale/kn/LC_MESSAGES/gucharmap.mo
108
share/locale/ko/LC_MESSAGES/gucharmap.mo
124
%%NLS%%share/locale/ko/LC_MESSAGES/gucharmap.mo
109
share/locale/lt/LC_MESSAGES/gucharmap.mo
125
%%NLS%%share/locale/lt/LC_MESSAGES/gucharmap.mo
110
share/locale/lv/LC_MESSAGES/gucharmap.mo
126
%%NLS%%share/locale/lv/LC_MESSAGES/gucharmap.mo
111
share/locale/mai/LC_MESSAGES/gucharmap.mo
127
%%NLS%%share/locale/mai/LC_MESSAGES/gucharmap.mo
112
share/locale/mi/LC_MESSAGES/gucharmap.mo
128
%%NLS%%share/locale/mi/LC_MESSAGES/gucharmap.mo
113
share/locale/mk/LC_MESSAGES/gucharmap.mo
129
%%NLS%%share/locale/mk/LC_MESSAGES/gucharmap.mo
114
share/locale/ml/LC_MESSAGES/gucharmap.mo
130
%%NLS%%share/locale/ml/LC_MESSAGES/gucharmap.mo
115
share/locale/mn/LC_MESSAGES/gucharmap.mo
131
%%NLS%%share/locale/mn/LC_MESSAGES/gucharmap.mo
116
share/locale/mr/LC_MESSAGES/gucharmap.mo
132
%%NLS%%share/locale/mr/LC_MESSAGES/gucharmap.mo
117
share/locale/ms/LC_MESSAGES/gucharmap.mo
133
%%NLS%%share/locale/ms/LC_MESSAGES/gucharmap.mo
118
share/locale/nb/LC_MESSAGES/gucharmap.mo
134
%%NLS%%share/locale/nb/LC_MESSAGES/gucharmap.mo
119
share/locale/ne/LC_MESSAGES/gucharmap.mo
135
%%NLS%%share/locale/ne/LC_MESSAGES/gucharmap.mo
120
share/locale/nl/LC_MESSAGES/gucharmap.mo
136
%%NLS%%share/locale/nl/LC_MESSAGES/gucharmap.mo
121
share/locale/nn/LC_MESSAGES/gucharmap.mo
137
%%NLS%%share/locale/nn/LC_MESSAGES/gucharmap.mo
122
share/locale/oc/LC_MESSAGES/gucharmap.mo
138
%%NLS%%share/locale/oc/LC_MESSAGES/gucharmap.mo
123
share/locale/or/LC_MESSAGES/gucharmap.mo
139
%%NLS%%share/locale/or/LC_MESSAGES/gucharmap.mo
124
share/locale/pa/LC_MESSAGES/gucharmap.mo
140
%%NLS%%share/locale/pa/LC_MESSAGES/gucharmap.mo
125
share/locale/pl/LC_MESSAGES/gucharmap.mo
141
%%NLS%%share/locale/pl/LC_MESSAGES/gucharmap.mo
126
share/locale/pt/LC_MESSAGES/gucharmap.mo
142
%%NLS%%share/locale/pt/LC_MESSAGES/gucharmap.mo
127
share/locale/pt_BR/LC_MESSAGES/gucharmap.mo
143
%%NLS%%share/locale/pt_BR/LC_MESSAGES/gucharmap.mo
128
share/locale/ro/LC_MESSAGES/gucharmap.mo
144
%%NLS%%share/locale/ro/LC_MESSAGES/gucharmap.mo
129
share/locale/ru/LC_MESSAGES/gucharmap.mo
145
%%NLS%%share/locale/ru/LC_MESSAGES/gucharmap.mo
130
share/locale/rw/LC_MESSAGES/gucharmap.mo
146
%%NLS%%share/locale/rw/LC_MESSAGES/gucharmap.mo
131
share/locale/si/LC_MESSAGES/gucharmap.mo
147
%%NLS%%share/locale/si/LC_MESSAGES/gucharmap.mo
132
share/locale/sk/LC_MESSAGES/gucharmap.mo
148
%%NLS%%share/locale/sk/LC_MESSAGES/gucharmap.mo
133
share/locale/sl/LC_MESSAGES/gucharmap.mo
149
%%NLS%%share/locale/sl/LC_MESSAGES/gucharmap.mo
134
share/locale/sq/LC_MESSAGES/gucharmap.mo
150
%%NLS%%share/locale/sq/LC_MESSAGES/gucharmap.mo
135
share/locale/sr/LC_MESSAGES/gucharmap.mo
151
%%NLS%%share/locale/sr/LC_MESSAGES/gucharmap.mo
136
share/locale/sr@latin/LC_MESSAGES/gucharmap.mo
152
%%NLS%%share/locale/sr@latin/LC_MESSAGES/gucharmap.mo
137
share/locale/sv/LC_MESSAGES/gucharmap.mo
153
%%NLS%%share/locale/sv/LC_MESSAGES/gucharmap.mo
138
share/locale/ta/LC_MESSAGES/gucharmap.mo
154
%%NLS%%share/locale/ta/LC_MESSAGES/gucharmap.mo
139
share/locale/te/LC_MESSAGES/gucharmap.mo
155
%%NLS%%share/locale/te/LC_MESSAGES/gucharmap.mo
140
share/locale/tg/LC_MESSAGES/gucharmap.mo
156
%%NLS%%share/locale/tg/LC_MESSAGES/gucharmap.mo
141
share/locale/th/LC_MESSAGES/gucharmap.mo
157
%%NLS%%share/locale/th/LC_MESSAGES/gucharmap.mo
142
share/locale/tr/LC_MESSAGES/gucharmap.mo
158
%%NLS%%share/locale/tr/LC_MESSAGES/gucharmap.mo
143
share/locale/ug/LC_MESSAGES/gucharmap.mo
159
%%NLS%%share/locale/ug/LC_MESSAGES/gucharmap.mo
144
share/locale/uk/LC_MESSAGES/gucharmap.mo
160
%%NLS%%share/locale/uk/LC_MESSAGES/gucharmap.mo
145
share/locale/vi/LC_MESSAGES/gucharmap.mo
161
%%NLS%%share/locale/vi/LC_MESSAGES/gucharmap.mo
146
share/locale/wa/LC_MESSAGES/gucharmap.mo
162
%%NLS%%share/locale/wa/LC_MESSAGES/gucharmap.mo
147
share/locale/xh/LC_MESSAGES/gucharmap.mo
163
%%NLS%%share/locale/xh/LC_MESSAGES/gucharmap.mo
148
share/locale/zh_CN/LC_MESSAGES/gucharmap.mo
164
%%NLS%%share/locale/zh_CN/LC_MESSAGES/gucharmap.mo
149
share/locale/zh_HK/LC_MESSAGES/gucharmap.mo
165
%%NLS%%share/locale/zh_HK/LC_MESSAGES/gucharmap.mo
150
share/locale/zh_TW/LC_MESSAGES/gucharmap.mo
166
%%NLS%%share/locale/zh_TW/LC_MESSAGES/gucharmap.mo
151
share/metainfo/gucharmap.appdata.xml
167
%%NLS%%share/metainfo/gucharmap.appdata.xml
168
@dir share/help/ca/gucharmap/figures
169
@dir share/help/en_GB/gucharmap/figures
170
@dir share/help/gl/gucharmap/figures
171
@dir share/help/oc/gucharmap/figures
172
@dir share/help/ru/gucharmap/figures
173
@dir share/help/sl/gucharmap/figures
174
@dir share/help/vi/gucharmap/figures

Return to bug 220597