diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-05-26 00:28:47 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-05-26 00:28:47 +0800 |
commit | fcbc746d9b3a384f2b4671dbe2c756fc6811d448 (patch) | |
tree | 4a772df089f783c6ba831d9c7328d9f3d7a6461d | |
parent | c156ea5416613391304e5f852f2fdf56c3d1d760 (diff) | |
download | marcuscom-ports-fcbc746d9b3a384f2b4671dbe2c756fc6811d448.tar marcuscom-ports-fcbc746d9b3a384f2b4671dbe2c756fc6811d448.tar.gz marcuscom-ports-fcbc746d9b3a384f2b4671dbe2c756fc6811d448.tar.bz2 marcuscom-ports-fcbc746d9b3a384f2b4671dbe2c756fc6811d448.tar.lz marcuscom-ports-fcbc746d9b3a384f2b4671dbe2c756fc6811d448.tar.xz marcuscom-ports-fcbc746d9b3a384f2b4671dbe2c756fc6811d448.tar.zst marcuscom-ports-fcbc746d9b3a384f2b4671dbe2c756fc6811d448.zip |
gcalctool was renamed gnome-calculator.
This removal was probably lost in the gnome 3.12 merge.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@19688 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | math/gcalctool/Makefile | 27 | ||||
-rw-r--r-- | math/gcalctool/distinfo | 2 | ||||
-rw-r--r-- | math/gcalctool/files/patch-src_gcalccmd.c | 93 | ||||
-rw-r--r-- | math/gcalctool/pkg-descr | 5 | ||||
-rw-r--r-- | math/gcalctool/pkg-plist | 929 |
5 files changed, 0 insertions, 1056 deletions
diff --git a/math/gcalctool/Makefile b/math/gcalctool/Makefile deleted file mode 100644 index 68795a62e..000000000 --- a/math/gcalctool/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# Created by: Joe Marcus Clarke <marcus@FreeBSD.org> -# $FreeBSD$ -# $MCom$ - -PORTNAME= gcalctool -PORTVERSION= 6.6.2 -PORTEPOCH= 2 -CATEGORIES= math gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome3 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME 3 calculator tool based on the old calctool for OpenWindows - -BUILD_DEPENDS= yelp-build:${PORTSDIR}/textproc/yelp-tools \ - itstool:${PORTSDIR}/textproc/itstool - -USE_XZ= yes -USES= bison gettext gmake pathfix pkgconfig -GNU_CONFIGURE= yes -USE_GNOME= gconf2 gnomeprefix gtk30 intlhack libxml2 -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib - -GLIB_SCHEMAS= org.gnome.gcalctool.gschema.xml - -.include <bsd.port.mk> diff --git a/math/gcalctool/distinfo b/math/gcalctool/distinfo deleted file mode 100644 index 32d83bde9..000000000 --- a/math/gcalctool/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (gnome3/gcalctool-6.6.2.tar.xz) = e708a16cc758c3a9fcb07e9c3e45989f7d9d64e2993f440e99707fcea3e1b76c -SIZE (gnome3/gcalctool-6.6.2.tar.xz) = 968148 diff --git a/math/gcalctool/files/patch-src_gcalccmd.c b/math/gcalctool/files/patch-src_gcalccmd.c deleted file mode 100644 index bb5fceea4..000000000 --- a/math/gcalctool/files/patch-src_gcalccmd.c +++ /dev/null @@ -1,93 +0,0 @@ ---- src/gcalccmd.c.orig 2009-12-08 21:27:37.000000000 -0500 -+++ src/gcalccmd.c 2010-01-24 13:38:19.000000000 -0500 -@@ -18,10 +18,12 @@ - * 02111-1307, USA. - */ - -+#include <errno.h> - #include <stdio.h> - #include <stdlib.h> - #include <string.h> - #include <sys/types.h> -+#include <sys/param.h> - #include <time.h> - #include <locale.h> - -@@ -30,6 +32,77 @@ - - #define MAXLINE 1024 - -+#if __FreeBSD_version < 800067 -+static ssize_t -+getline (char **lineptr, size_t *n, FILE *stream) -+{ -+ char *line, *p; -+ long size, copy; -+ -+ if (lineptr == NULL || n == NULL) { -+ errno = EINVAL; -+ return (ssize_t) -1; -+ } -+ -+ if (ferror (stream)) -+ return (ssize_t) -1; -+ -+ /* Make sure we have a line buffer to start with. */ -+ if (*lineptr == NULL || *n < 2) /* !seen and no buf yet need 2 chars. */ { -+#ifndef MAX_CANON -+#define MAX_CANON 256 -+#endif -+ if (!*lineptr) -+ line = (char *) malloc (MAX_CANON); -+ else -+ line = (char *) realloc (*lineptr, MAX_CANON); -+ if (line == NULL) -+ return (ssize_t) -1; -+ *lineptr = line; -+ *n = MAX_CANON; -+ } -+ -+ line = *lineptr; -+ size = *n; -+ -+ copy = size; -+ p = line; -+ -+ while (1) { -+ long len; -+ -+ while (--copy > 0) { -+ int c = getc (stream); -+ -+ if (c == EOF) -+ goto lose; -+ else if ((*p++ = c) == '\n') -+ goto win; -+ } -+ -+ /* Need to enlarge the line buffer. */ -+ len = p - line; -+ size *= 2; -+ line = (char *) realloc (line, size); -+ if (line == NULL) -+ goto lose; -+ *lineptr = line; -+ *n = size; -+ p = line + len; -+ copy = size - len; -+ } -+ -+lose: -+ if (p == *lineptr) -+ return (ssize_t) -1; -+ -+ /* Return a partial line since we got an error in the middle. */ -+win: -+ *p = '\0'; -+ return p - *lineptr; -+} -+#endif -+ - static MpSerializer *result_serializer; - - static void diff --git a/math/gcalctool/pkg-descr b/math/gcalctool/pkg-descr deleted file mode 100644 index 2efb4943f..000000000 --- a/math/gcalctool/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Gcalctool is a powerful graphical calulator with financial, logical and -scientific modes. It uses a multiple precision package to do its arithmetic to -give a high degree of accuracy. - -WWW: http://live.gnome.org/Gcalctool diff --git a/math/gcalctool/pkg-plist b/math/gcalctool/pkg-plist deleted file mode 100644 index e238e371e..000000000 --- a/math/gcalctool/pkg-plist +++ /dev/null @@ -1,929 +0,0 @@ -bin/gcalccmd -bin/gcalctool -bin/gnome-calculator -man/man1/gcalccmd.1.gz -man/man1/gcalctool.1.gz -share/applications/gcalctool.desktop -%%DATADIR%%/buttons-advanced.ui -%%DATADIR%%/buttons-basic.ui -%%DATADIR%%/buttons-financial.ui -%%DATADIR%%/buttons-programming.ui -%%DATADIR%%/preferences.ui -share/help/C/gcalctool/absolute.page -share/help/C/gcalctool/base.page -share/help/C/gcalctool/boolean.page -share/help/C/gcalctool/complex.page -share/help/C/gcalctool/conv-base.page -share/help/C/gcalctool/conv-character.page -share/help/C/gcalctool/conv-currency.page -share/help/C/gcalctool/conv-length.page -share/help/C/gcalctool/conv-time.page -share/help/C/gcalctool/conv-weight.page -share/help/C/gcalctool/equation.page -share/help/C/gcalctool/factorial.page -share/help/C/gcalctool/factorize.page -share/help/C/gcalctool/financial.page -share/help/C/gcalctool/functions.page -share/help/C/gcalctool/index.page -share/help/C/gcalctool/keyboard.page -share/help/C/gcalctool/legal.xml -share/help/C/gcalctool/logarithm.page -share/help/C/gcalctool/modulus.page -share/help/C/gcalctool/mouse.page -share/help/C/gcalctool/number-display.page -share/help/C/gcalctool/percentage.page -share/help/C/gcalctool/power.page -share/help/C/gcalctool/scientific.page -share/help/C/gcalctool/superscript.page -share/help/C/gcalctool/trigonometry.page -share/help/C/gcalctool/variables.page -share/help/bg/gcalctool/absolute.page -share/help/bg/gcalctool/base.page -share/help/bg/gcalctool/boolean.page -share/help/bg/gcalctool/complex.page -share/help/bg/gcalctool/conv-base.page -share/help/bg/gcalctool/conv-character.page -share/help/bg/gcalctool/conv-currency.page -share/help/bg/gcalctool/conv-length.page -share/help/bg/gcalctool/conv-time.page -share/help/bg/gcalctool/conv-weight.page -share/help/bg/gcalctool/equation.page -share/help/bg/gcalctool/factorial.page -share/help/bg/gcalctool/factorize.page -share/help/bg/gcalctool/financial.page -share/help/bg/gcalctool/functions.page -share/help/bg/gcalctool/index.page -share/help/bg/gcalctool/keyboard.page -share/help/bg/gcalctool/legal.xml -share/help/bg/gcalctool/logarithm.page -share/help/bg/gcalctool/modulus.page -share/help/bg/gcalctool/mouse.page -share/help/bg/gcalctool/number-display.page -share/help/bg/gcalctool/percentage.page -share/help/bg/gcalctool/power.page -share/help/bg/gcalctool/scientific.page -share/help/bg/gcalctool/superscript.page -share/help/bg/gcalctool/trigonometry.page -share/help/bg/gcalctool/variables.page -share/help/ca/gcalctool/absolute.page -share/help/ca/gcalctool/base.page -share/help/ca/gcalctool/boolean.page -share/help/ca/gcalctool/complex.page -share/help/ca/gcalctool/conv-base.page -share/help/ca/gcalctool/conv-character.page -share/help/ca/gcalctool/conv-currency.page -share/help/ca/gcalctool/conv-length.page -share/help/ca/gcalctool/conv-time.page -share/help/ca/gcalctool/conv-weight.page -share/help/ca/gcalctool/equation.page -share/help/ca/gcalctool/factorial.page -share/help/ca/gcalctool/factorize.page -share/help/ca/gcalctool/financial.page -share/help/ca/gcalctool/functions.page -share/help/ca/gcalctool/index.page -share/help/ca/gcalctool/keyboard.page -share/help/ca/gcalctool/legal.xml -share/help/ca/gcalctool/logarithm.page -share/help/ca/gcalctool/modulus.page -share/help/ca/gcalctool/mouse.page -share/help/ca/gcalctool/number-display.page -share/help/ca/gcalctool/percentage.page -share/help/ca/gcalctool/power.page -share/help/ca/gcalctool/scientific.page -share/help/ca/gcalctool/superscript.page -share/help/ca/gcalctool/trigonometry.page -share/help/ca/gcalctool/variables.page -share/help/cs/gcalctool/absolute.page -share/help/cs/gcalctool/base.page -share/help/cs/gcalctool/boolean.page -share/help/cs/gcalctool/complex.page -share/help/cs/gcalctool/conv-base.page -share/help/cs/gcalctool/conv-character.page -share/help/cs/gcalctool/conv-currency.page -share/help/cs/gcalctool/conv-length.page -share/help/cs/gcalctool/conv-time.page -share/help/cs/gcalctool/conv-weight.page -share/help/cs/gcalctool/equation.page -share/help/cs/gcalctool/factorial.page -share/help/cs/gcalctool/factorize.page -share/help/cs/gcalctool/financial.page -share/help/cs/gcalctool/functions.page -share/help/cs/gcalctool/index.page -share/help/cs/gcalctool/keyboard.page -share/help/cs/gcalctool/legal.xml -share/help/cs/gcalctool/logarithm.page -share/help/cs/gcalctool/modulus.page -share/help/cs/gcalctool/mouse.page -share/help/cs/gcalctool/number-display.page -share/help/cs/gcalctool/percentage.page -share/help/cs/gcalctool/power.page -share/help/cs/gcalctool/scientific.page -share/help/cs/gcalctool/superscript.page -share/help/cs/gcalctool/trigonometry.page -share/help/cs/gcalctool/variables.page -share/help/de/gcalctool/absolute.page -share/help/de/gcalctool/base.page -share/help/de/gcalctool/boolean.page -share/help/de/gcalctool/complex.page -share/help/de/gcalctool/conv-base.page -share/help/de/gcalctool/conv-character.page -share/help/de/gcalctool/conv-currency.page -share/help/de/gcalctool/conv-length.page -share/help/de/gcalctool/conv-time.page -share/help/de/gcalctool/conv-weight.page -share/help/de/gcalctool/equation.page -share/help/de/gcalctool/factorial.page -share/help/de/gcalctool/factorize.page -share/help/de/gcalctool/financial.page -share/help/de/gcalctool/functions.page -share/help/de/gcalctool/index.page -share/help/de/gcalctool/keyboard.page -share/help/de/gcalctool/legal.xml -share/help/de/gcalctool/logarithm.page -share/help/de/gcalctool/modulus.page -share/help/de/gcalctool/mouse.page -share/help/de/gcalctool/number-display.page -share/help/de/gcalctool/percentage.page -share/help/de/gcalctool/power.page -share/help/de/gcalctool/scientific.page -share/help/de/gcalctool/superscript.page -share/help/de/gcalctool/trigonometry.page -share/help/de/gcalctool/variables.page -share/help/el/gcalctool/absolute.page -share/help/el/gcalctool/base.page -share/help/el/gcalctool/boolean.page -share/help/el/gcalctool/complex.page -share/help/el/gcalctool/conv-base.page -share/help/el/gcalctool/conv-character.page -share/help/el/gcalctool/conv-currency.page -share/help/el/gcalctool/conv-length.page -share/help/el/gcalctool/conv-time.page -share/help/el/gcalctool/conv-weight.page -share/help/el/gcalctool/equation.page -share/help/el/gcalctool/factorial.page -share/help/el/gcalctool/factorize.page -share/help/el/gcalctool/financial.page -share/help/el/gcalctool/functions.page -share/help/el/gcalctool/index.page -share/help/el/gcalctool/keyboard.page -share/help/el/gcalctool/legal.xml -share/help/el/gcalctool/logarithm.page -share/help/el/gcalctool/modulus.page -share/help/el/gcalctool/mouse.page -share/help/el/gcalctool/number-display.page -share/help/el/gcalctool/percentage.page -share/help/el/gcalctool/power.page -share/help/el/gcalctool/scientific.page -share/help/el/gcalctool/superscript.page -share/help/el/gcalctool/trigonometry.page -share/help/el/gcalctool/variables.page -share/help/es/gcalctool/absolute.page -share/help/es/gcalctool/base.page -share/help/es/gcalctool/boolean.page -share/help/es/gcalctool/complex.page -share/help/es/gcalctool/conv-base.page -share/help/es/gcalctool/conv-character.page -share/help/es/gcalctool/conv-currency.page -share/help/es/gcalctool/conv-length.page -share/help/es/gcalctool/conv-time.page -share/help/es/gcalctool/conv-weight.page -share/help/es/gcalctool/equation.page -share/help/es/gcalctool/factorial.page -share/help/es/gcalctool/factorize.page -share/help/es/gcalctool/financial.page -share/help/es/gcalctool/functions.page -share/help/es/gcalctool/index.page -share/help/es/gcalctool/keyboard.page -share/help/es/gcalctool/legal.xml -share/help/es/gcalctool/logarithm.page -share/help/es/gcalctool/modulus.page -share/help/es/gcalctool/mouse.page -share/help/es/gcalctool/number-display.page -share/help/es/gcalctool/percentage.page -share/help/es/gcalctool/power.page -share/help/es/gcalctool/scientific.page -share/help/es/gcalctool/superscript.page -share/help/es/gcalctool/trigonometry.page -share/help/es/gcalctool/variables.page -share/help/eu/gcalctool/absolute.page -share/help/eu/gcalctool/base.page -share/help/eu/gcalctool/boolean.page -share/help/eu/gcalctool/complex.page -share/help/eu/gcalctool/conv-base.page -share/help/eu/gcalctool/conv-character.page -share/help/eu/gcalctool/conv-currency.page -share/help/eu/gcalctool/conv-length.page -share/help/eu/gcalctool/conv-time.page -share/help/eu/gcalctool/conv-weight.page -share/help/eu/gcalctool/equation.page -share/help/eu/gcalctool/factorial.page -share/help/eu/gcalctool/factorize.page -share/help/eu/gcalctool/financial.page -share/help/eu/gcalctool/functions.page -share/help/eu/gcalctool/index.page -share/help/eu/gcalctool/keyboard.page -share/help/eu/gcalctool/legal.xml -share/help/eu/gcalctool/logarithm.page -share/help/eu/gcalctool/modulus.page -share/help/eu/gcalctool/mouse.page -share/help/eu/gcalctool/number-display.page -share/help/eu/gcalctool/percentage.page -share/help/eu/gcalctool/power.page -share/help/eu/gcalctool/scientific.page -share/help/eu/gcalctool/superscript.page -share/help/eu/gcalctool/trigonometry.page -share/help/eu/gcalctool/variables.page -share/help/fi/gcalctool/absolute.page -share/help/fi/gcalctool/base.page -share/help/fi/gcalctool/boolean.page -share/help/fi/gcalctool/complex.page -share/help/fi/gcalctool/conv-base.page -share/help/fi/gcalctool/conv-character.page -share/help/fi/gcalctool/conv-currency.page -share/help/fi/gcalctool/conv-length.page -share/help/fi/gcalctool/conv-time.page -share/help/fi/gcalctool/conv-weight.page -share/help/fi/gcalctool/equation.page -share/help/fi/gcalctool/factorial.page -share/help/fi/gcalctool/factorize.page -share/help/fi/gcalctool/financial.page -share/help/fi/gcalctool/functions.page -share/help/fi/gcalctool/index.page -share/help/fi/gcalctool/keyboard.page -share/help/fi/gcalctool/legal.xml -share/help/fi/gcalctool/logarithm.page -share/help/fi/gcalctool/modulus.page -share/help/fi/gcalctool/mouse.page -share/help/fi/gcalctool/number-display.page -share/help/fi/gcalctool/percentage.page -share/help/fi/gcalctool/power.page -share/help/fi/gcalctool/scientific.page -share/help/fi/gcalctool/superscript.page -share/help/fi/gcalctool/trigonometry.page -share/help/fi/gcalctool/variables.page -share/help/fr/gcalctool/absolute.page -share/help/fr/gcalctool/base.page -share/help/fr/gcalctool/boolean.page -share/help/fr/gcalctool/complex.page -share/help/fr/gcalctool/conv-base.page -share/help/fr/gcalctool/conv-character.page -share/help/fr/gcalctool/conv-currency.page -share/help/fr/gcalctool/conv-length.page -share/help/fr/gcalctool/conv-time.page -share/help/fr/gcalctool/conv-weight.page -share/help/fr/gcalctool/equation.page -share/help/fr/gcalctool/factorial.page -share/help/fr/gcalctool/factorize.page -share/help/fr/gcalctool/financial.page -share/help/fr/gcalctool/functions.page -share/help/fr/gcalctool/index.page -share/help/fr/gcalctool/keyboard.page -share/help/fr/gcalctool/legal.xml -share/help/fr/gcalctool/logarithm.page -share/help/fr/gcalctool/modulus.page -share/help/fr/gcalctool/mouse.page -share/help/fr/gcalctool/number-display.page -share/help/fr/gcalctool/percentage.page -share/help/fr/gcalctool/power.page -share/help/fr/gcalctool/scientific.page -share/help/fr/gcalctool/superscript.page -share/help/fr/gcalctool/trigonometry.page -share/help/fr/gcalctool/variables.page -share/help/gl/gcalctool/absolute.page -share/help/gl/gcalctool/base.page -share/help/gl/gcalctool/boolean.page -share/help/gl/gcalctool/complex.page -share/help/gl/gcalctool/conv-base.page -share/help/gl/gcalctool/conv-character.page -share/help/gl/gcalctool/conv-currency.page -share/help/gl/gcalctool/conv-length.page -share/help/gl/gcalctool/conv-time.page -share/help/gl/gcalctool/conv-weight.page -share/help/gl/gcalctool/equation.page -share/help/gl/gcalctool/factorial.page -share/help/gl/gcalctool/factorize.page -share/help/gl/gcalctool/financial.page -share/help/gl/gcalctool/functions.page -share/help/gl/gcalctool/index.page -share/help/gl/gcalctool/keyboard.page -share/help/gl/gcalctool/legal.xml -share/help/gl/gcalctool/logarithm.page -share/help/gl/gcalctool/modulus.page -share/help/gl/gcalctool/mouse.page -share/help/gl/gcalctool/number-display.page -share/help/gl/gcalctool/percentage.page -share/help/gl/gcalctool/power.page -share/help/gl/gcalctool/scientific.page -share/help/gl/gcalctool/superscript.page -share/help/gl/gcalctool/trigonometry.page -share/help/gl/gcalctool/variables.page -share/help/hu/gcalctool/absolute.page -share/help/hu/gcalctool/base.page -share/help/hu/gcalctool/boolean.page -share/help/hu/gcalctool/complex.page -share/help/hu/gcalctool/conv-base.page -share/help/hu/gcalctool/conv-character.page -share/help/hu/gcalctool/conv-currency.page -share/help/hu/gcalctool/conv-length.page -share/help/hu/gcalctool/conv-time.page -share/help/hu/gcalctool/conv-weight.page -share/help/hu/gcalctool/equation.page -share/help/hu/gcalctool/factorial.page -share/help/hu/gcalctool/factorize.page -share/help/hu/gcalctool/financial.page -share/help/hu/gcalctool/functions.page -share/help/hu/gcalctool/index.page -share/help/hu/gcalctool/keyboard.page -share/help/hu/gcalctool/legal.xml -share/help/hu/gcalctool/logarithm.page -share/help/hu/gcalctool/modulus.page -share/help/hu/gcalctool/mouse.page -share/help/hu/gcalctool/number-display.page -share/help/hu/gcalctool/percentage.page -share/help/hu/gcalctool/power.page -share/help/hu/gcalctool/scientific.page -share/help/hu/gcalctool/superscript.page -share/help/hu/gcalctool/trigonometry.page -share/help/hu/gcalctool/variables.page -share/help/it/gcalctool/absolute.page -share/help/it/gcalctool/base.page -share/help/it/gcalctool/boolean.page -share/help/it/gcalctool/complex.page -share/help/it/gcalctool/conv-base.page -share/help/it/gcalctool/conv-character.page -share/help/it/gcalctool/conv-currency.page -share/help/it/gcalctool/conv-length.page -share/help/it/gcalctool/conv-time.page -share/help/it/gcalctool/conv-weight.page -share/help/it/gcalctool/equation.page -share/help/it/gcalctool/factorial.page -share/help/it/gcalctool/factorize.page -share/help/it/gcalctool/financial.page -share/help/it/gcalctool/functions.page -share/help/it/gcalctool/index.page -share/help/it/gcalctool/keyboard.page -share/help/it/gcalctool/legal.xml -share/help/it/gcalctool/logarithm.page -share/help/it/gcalctool/modulus.page -share/help/it/gcalctool/mouse.page -share/help/it/gcalctool/number-display.page -share/help/it/gcalctool/percentage.page -share/help/it/gcalctool/power.page -share/help/it/gcalctool/scientific.page -share/help/it/gcalctool/superscript.page -share/help/it/gcalctool/trigonometry.page -share/help/it/gcalctool/variables.page -share/help/ja/gcalctool/absolute.page -share/help/ja/gcalctool/base.page -share/help/ja/gcalctool/boolean.page -share/help/ja/gcalctool/complex.page -share/help/ja/gcalctool/conv-base.page -share/help/ja/gcalctool/conv-character.page -share/help/ja/gcalctool/conv-currency.page -share/help/ja/gcalctool/conv-length.page -share/help/ja/gcalctool/conv-time.page -share/help/ja/gcalctool/conv-weight.page -share/help/ja/gcalctool/equation.page -share/help/ja/gcalctool/factorial.page -share/help/ja/gcalctool/factorize.page -share/help/ja/gcalctool/financial.page -share/help/ja/gcalctool/functions.page -share/help/ja/gcalctool/index.page -share/help/ja/gcalctool/keyboard.page -share/help/ja/gcalctool/legal.xml -share/help/ja/gcalctool/logarithm.page -share/help/ja/gcalctool/modulus.page -share/help/ja/gcalctool/mouse.page -share/help/ja/gcalctool/number-display.page -share/help/ja/gcalctool/percentage.page -share/help/ja/gcalctool/power.page -share/help/ja/gcalctool/scientific.page -share/help/ja/gcalctool/superscript.page -share/help/ja/gcalctool/trigonometry.page -share/help/ja/gcalctool/variables.page -share/help/ko/gcalctool/absolute.page -share/help/ko/gcalctool/base.page -share/help/ko/gcalctool/boolean.page -share/help/ko/gcalctool/complex.page -share/help/ko/gcalctool/conv-base.page -share/help/ko/gcalctool/conv-character.page -share/help/ko/gcalctool/conv-currency.page -share/help/ko/gcalctool/conv-length.page -share/help/ko/gcalctool/conv-time.page -share/help/ko/gcalctool/conv-weight.page -share/help/ko/gcalctool/equation.page -share/help/ko/gcalctool/factorial.page -share/help/ko/gcalctool/factorize.page -share/help/ko/gcalctool/financial.page -share/help/ko/gcalctool/functions.page -share/help/ko/gcalctool/index.page -share/help/ko/gcalctool/keyboard.page -share/help/ko/gcalctool/legal.xml -share/help/ko/gcalctool/logarithm.page -share/help/ko/gcalctool/modulus.page -share/help/ko/gcalctool/mouse.page -share/help/ko/gcalctool/number-display.page -share/help/ko/gcalctool/percentage.page -share/help/ko/gcalctool/power.page -share/help/ko/gcalctool/scientific.page -share/help/ko/gcalctool/superscript.page -share/help/ko/gcalctool/trigonometry.page -share/help/ko/gcalctool/variables.page -share/help/lv/gcalctool/absolute.page -share/help/lv/gcalctool/base.page -share/help/lv/gcalctool/boolean.page -share/help/lv/gcalctool/complex.page -share/help/lv/gcalctool/conv-base.page -share/help/lv/gcalctool/conv-character.page -share/help/lv/gcalctool/conv-currency.page -share/help/lv/gcalctool/conv-length.page -share/help/lv/gcalctool/conv-time.page -share/help/lv/gcalctool/conv-weight.page -share/help/lv/gcalctool/equation.page -share/help/lv/gcalctool/factorial.page -share/help/lv/gcalctool/factorize.page -share/help/lv/gcalctool/financial.page -share/help/lv/gcalctool/functions.page -share/help/lv/gcalctool/index.page -share/help/lv/gcalctool/keyboard.page -share/help/lv/gcalctool/legal.xml -share/help/lv/gcalctool/logarithm.page -share/help/lv/gcalctool/modulus.page -share/help/lv/gcalctool/mouse.page -share/help/lv/gcalctool/number-display.page -share/help/lv/gcalctool/percentage.page -share/help/lv/gcalctool/power.page -share/help/lv/gcalctool/scientific.page -share/help/lv/gcalctool/superscript.page -share/help/lv/gcalctool/trigonometry.page -share/help/lv/gcalctool/variables.page -share/help/oc/gcalctool/absolute.page -share/help/oc/gcalctool/base.page -share/help/oc/gcalctool/boolean.page -share/help/oc/gcalctool/complex.page -share/help/oc/gcalctool/conv-base.page -share/help/oc/gcalctool/conv-character.page -share/help/oc/gcalctool/conv-currency.page -share/help/oc/gcalctool/conv-length.page -share/help/oc/gcalctool/conv-time.page -share/help/oc/gcalctool/conv-weight.page -share/help/oc/gcalctool/equation.page -share/help/oc/gcalctool/factorial.page -share/help/oc/gcalctool/factorize.page -share/help/oc/gcalctool/financial.page -share/help/oc/gcalctool/functions.page -share/help/oc/gcalctool/index.page -share/help/oc/gcalctool/keyboard.page -share/help/oc/gcalctool/legal.xml -share/help/oc/gcalctool/logarithm.page -share/help/oc/gcalctool/modulus.page -share/help/oc/gcalctool/mouse.page -share/help/oc/gcalctool/number-display.page -share/help/oc/gcalctool/percentage.page -share/help/oc/gcalctool/power.page -share/help/oc/gcalctool/scientific.page -share/help/oc/gcalctool/superscript.page -share/help/oc/gcalctool/trigonometry.page -share/help/oc/gcalctool/variables.page -share/help/pt_BR/gcalctool/absolute.page -share/help/pt_BR/gcalctool/base.page -share/help/pt_BR/gcalctool/boolean.page -share/help/pt_BR/gcalctool/complex.page -share/help/pt_BR/gcalctool/conv-base.page -share/help/pt_BR/gcalctool/conv-character.page -share/help/pt_BR/gcalctool/conv-currency.page -share/help/pt_BR/gcalctool/conv-length.page -share/help/pt_BR/gcalctool/conv-time.page -share/help/pt_BR/gcalctool/conv-weight.page -share/help/pt_BR/gcalctool/equation.page -share/help/pt_BR/gcalctool/factorial.page -share/help/pt_BR/gcalctool/factorize.page -share/help/pt_BR/gcalctool/financial.page -share/help/pt_BR/gcalctool/functions.page -share/help/pt_BR/gcalctool/index.page -share/help/pt_BR/gcalctool/keyboard.page -share/help/pt_BR/gcalctool/legal.xml -share/help/pt_BR/gcalctool/logarithm.page -share/help/pt_BR/gcalctool/modulus.page -share/help/pt_BR/gcalctool/mouse.page -share/help/pt_BR/gcalctool/number-display.page -share/help/pt_BR/gcalctool/percentage.page -share/help/pt_BR/gcalctool/power.page -share/help/pt_BR/gcalctool/scientific.page -share/help/pt_BR/gcalctool/superscript.page -share/help/pt_BR/gcalctool/trigonometry.page -share/help/pt_BR/gcalctool/variables.page -share/help/ro/gcalctool/absolute.page -share/help/ro/gcalctool/base.page -share/help/ro/gcalctool/boolean.page -share/help/ro/gcalctool/complex.page -share/help/ro/gcalctool/conv-base.page -share/help/ro/gcalctool/conv-character.page -share/help/ro/gcalctool/conv-currency.page -share/help/ro/gcalctool/conv-length.page -share/help/ro/gcalctool/conv-time.page -share/help/ro/gcalctool/conv-weight.page -share/help/ro/gcalctool/equation.page -share/help/ro/gcalctool/factorial.page -share/help/ro/gcalctool/factorize.page -share/help/ro/gcalctool/financial.page -share/help/ro/gcalctool/functions.page -share/help/ro/gcalctool/index.page -share/help/ro/gcalctool/keyboard.page -share/help/ro/gcalctool/legal.xml -share/help/ro/gcalctool/logarithm.page -share/help/ro/gcalctool/modulus.page -share/help/ro/gcalctool/mouse.page -share/help/ro/gcalctool/number-display.page -share/help/ro/gcalctool/percentage.page -share/help/ro/gcalctool/power.page -share/help/ro/gcalctool/scientific.page -share/help/ro/gcalctool/superscript.page -share/help/ro/gcalctool/trigonometry.page -share/help/ro/gcalctool/variables.page -share/help/ru/gcalctool/absolute.page -share/help/ru/gcalctool/base.page -share/help/ru/gcalctool/boolean.page -share/help/ru/gcalctool/complex.page -share/help/ru/gcalctool/conv-base.page -share/help/ru/gcalctool/conv-character.page -share/help/ru/gcalctool/conv-currency.page -share/help/ru/gcalctool/conv-length.page -share/help/ru/gcalctool/conv-time.page -share/help/ru/gcalctool/conv-weight.page -share/help/ru/gcalctool/equation.page -share/help/ru/gcalctool/factorial.page -share/help/ru/gcalctool/factorize.page -share/help/ru/gcalctool/financial.page -share/help/ru/gcalctool/functions.page -share/help/ru/gcalctool/index.page -share/help/ru/gcalctool/keyboard.page -share/help/ru/gcalctool/legal.xml -share/help/ru/gcalctool/logarithm.page -share/help/ru/gcalctool/modulus.page -share/help/ru/gcalctool/mouse.page -share/help/ru/gcalctool/number-display.page -share/help/ru/gcalctool/percentage.page -share/help/ru/gcalctool/power.page -share/help/ru/gcalctool/scientific.page -share/help/ru/gcalctool/superscript.page -share/help/ru/gcalctool/trigonometry.page -share/help/ru/gcalctool/variables.page -share/help/sl/gcalctool/absolute.page -share/help/sl/gcalctool/base.page -share/help/sl/gcalctool/boolean.page -share/help/sl/gcalctool/complex.page -share/help/sl/gcalctool/conv-base.page -share/help/sl/gcalctool/conv-character.page -share/help/sl/gcalctool/conv-currency.page -share/help/sl/gcalctool/conv-length.page -share/help/sl/gcalctool/conv-time.page -share/help/sl/gcalctool/conv-weight.page -share/help/sl/gcalctool/equation.page -share/help/sl/gcalctool/factorial.page -share/help/sl/gcalctool/factorize.page -share/help/sl/gcalctool/financial.page -share/help/sl/gcalctool/functions.page -share/help/sl/gcalctool/index.page -share/help/sl/gcalctool/keyboard.page -share/help/sl/gcalctool/legal.xml -share/help/sl/gcalctool/logarithm.page -share/help/sl/gcalctool/modulus.page -share/help/sl/gcalctool/mouse.page -share/help/sl/gcalctool/number-display.page -share/help/sl/gcalctool/percentage.page -share/help/sl/gcalctool/power.page -share/help/sl/gcalctool/scientific.page -share/help/sl/gcalctool/superscript.page -share/help/sl/gcalctool/trigonometry.page -share/help/sl/gcalctool/variables.page -share/help/sv/gcalctool/absolute.page -share/help/sv/gcalctool/base.page -share/help/sv/gcalctool/boolean.page -share/help/sv/gcalctool/complex.page -share/help/sv/gcalctool/conv-base.page -share/help/sv/gcalctool/conv-character.page -share/help/sv/gcalctool/conv-currency.page -share/help/sv/gcalctool/conv-length.page -share/help/sv/gcalctool/conv-time.page -share/help/sv/gcalctool/conv-weight.page -share/help/sv/gcalctool/equation.page -share/help/sv/gcalctool/factorial.page -share/help/sv/gcalctool/factorize.page -share/help/sv/gcalctool/financial.page -share/help/sv/gcalctool/functions.page -share/help/sv/gcalctool/index.page -share/help/sv/gcalctool/keyboard.page -share/help/sv/gcalctool/legal.xml -share/help/sv/gcalctool/logarithm.page -share/help/sv/gcalctool/modulus.page -share/help/sv/gcalctool/mouse.page -share/help/sv/gcalctool/number-display.page -share/help/sv/gcalctool/percentage.page -share/help/sv/gcalctool/power.page -share/help/sv/gcalctool/scientific.page -share/help/sv/gcalctool/superscript.page -share/help/sv/gcalctool/trigonometry.page -share/help/sv/gcalctool/variables.page -share/help/te/gcalctool/absolute.page -share/help/te/gcalctool/base.page -share/help/te/gcalctool/boolean.page -share/help/te/gcalctool/complex.page -share/help/te/gcalctool/conv-base.page -share/help/te/gcalctool/conv-character.page -share/help/te/gcalctool/conv-currency.page -share/help/te/gcalctool/conv-length.page -share/help/te/gcalctool/conv-time.page -share/help/te/gcalctool/conv-weight.page -share/help/te/gcalctool/equation.page -share/help/te/gcalctool/factorial.page -share/help/te/gcalctool/factorize.page -share/help/te/gcalctool/financial.page -share/help/te/gcalctool/functions.page -share/help/te/gcalctool/index.page -share/help/te/gcalctool/keyboard.page -share/help/te/gcalctool/legal.xml -share/help/te/gcalctool/logarithm.page -share/help/te/gcalctool/modulus.page -share/help/te/gcalctool/mouse.page -share/help/te/gcalctool/number-display.page -share/help/te/gcalctool/percentage.page -share/help/te/gcalctool/power.page -share/help/te/gcalctool/scientific.page -share/help/te/gcalctool/superscript.page -share/help/te/gcalctool/trigonometry.page -share/help/te/gcalctool/variables.page -share/help/zh_CN/gcalctool/absolute.page -share/help/zh_CN/gcalctool/base.page -share/help/zh_CN/gcalctool/boolean.page -share/help/zh_CN/gcalctool/complex.page -share/help/zh_CN/gcalctool/conv-base.page -share/help/zh_CN/gcalctool/conv-character.page -share/help/zh_CN/gcalctool/conv-currency.page -share/help/zh_CN/gcalctool/conv-length.page -share/help/zh_CN/gcalctool/conv-time.page -share/help/zh_CN/gcalctool/conv-weight.page -share/help/zh_CN/gcalctool/equation.page -share/help/zh_CN/gcalctool/factorial.page -share/help/zh_CN/gcalctool/factorize.page -share/help/zh_CN/gcalctool/financial.page -share/help/zh_CN/gcalctool/functions.page -share/help/zh_CN/gcalctool/index.page -share/help/zh_CN/gcalctool/keyboard.page -share/help/zh_CN/gcalctool/legal.xml -share/help/zh_CN/gcalctool/logarithm.page -share/help/zh_CN/gcalctool/modulus.page -share/help/zh_CN/gcalctool/mouse.page -share/help/zh_CN/gcalctool/number-display.page -share/help/zh_CN/gcalctool/percentage.page -share/help/zh_CN/gcalctool/power.page -share/help/zh_CN/gcalctool/scientific.page -share/help/zh_CN/gcalctool/superscript.page -share/help/zh_CN/gcalctool/trigonometry.page -share/help/zh_CN/gcalctool/variables.page -share/help/zh_HK/gcalctool/absolute.page -share/help/zh_HK/gcalctool/base.page -share/help/zh_HK/gcalctool/boolean.page -share/help/zh_HK/gcalctool/complex.page -share/help/zh_HK/gcalctool/conv-base.page -share/help/zh_HK/gcalctool/conv-character.page -share/help/zh_HK/gcalctool/conv-currency.page -share/help/zh_HK/gcalctool/conv-length.page -share/help/zh_HK/gcalctool/conv-time.page -share/help/zh_HK/gcalctool/conv-weight.page -share/help/zh_HK/gcalctool/equation.page -share/help/zh_HK/gcalctool/factorial.page -share/help/zh_HK/gcalctool/factorize.page -share/help/zh_HK/gcalctool/financial.page -share/help/zh_HK/gcalctool/functions.page -share/help/zh_HK/gcalctool/index.page -share/help/zh_HK/gcalctool/keyboard.page -share/help/zh_HK/gcalctool/legal.xml -share/help/zh_HK/gcalctool/logarithm.page -share/help/zh_HK/gcalctool/modulus.page -share/help/zh_HK/gcalctool/mouse.page -share/help/zh_HK/gcalctool/number-display.page -share/help/zh_HK/gcalctool/percentage.page -share/help/zh_HK/gcalctool/power.page -share/help/zh_HK/gcalctool/scientific.page -share/help/zh_HK/gcalctool/superscript.page -share/help/zh_HK/gcalctool/trigonometry.page -share/help/zh_HK/gcalctool/variables.page -share/help/zh_TW/gcalctool/absolute.page -share/help/zh_TW/gcalctool/base.page -share/help/zh_TW/gcalctool/boolean.page -share/help/zh_TW/gcalctool/complex.page -share/help/zh_TW/gcalctool/conv-base.page -share/help/zh_TW/gcalctool/conv-character.page -share/help/zh_TW/gcalctool/conv-currency.page -share/help/zh_TW/gcalctool/conv-length.page -share/help/zh_TW/gcalctool/conv-time.page -share/help/zh_TW/gcalctool/conv-weight.page -share/help/zh_TW/gcalctool/equation.page -share/help/zh_TW/gcalctool/factorial.page -share/help/zh_TW/gcalctool/factorize.page -share/help/zh_TW/gcalctool/financial.page -share/help/zh_TW/gcalctool/functions.page -share/help/zh_TW/gcalctool/index.page -share/help/zh_TW/gcalctool/keyboard.page -share/help/zh_TW/gcalctool/legal.xml -share/help/zh_TW/gcalctool/logarithm.page -share/help/zh_TW/gcalctool/modulus.page -share/help/zh_TW/gcalctool/mouse.page -share/help/zh_TW/gcalctool/number-display.page -share/help/zh_TW/gcalctool/percentage.page -share/help/zh_TW/gcalctool/power.page -share/help/zh_TW/gcalctool/scientific.page -share/help/zh_TW/gcalctool/superscript.page -share/help/zh_TW/gcalctool/trigonometry.page -share/help/zh_TW/gcalctool/variables.page -share/locale/af/LC_MESSAGES/gcalctool.mo -share/locale/am/LC_MESSAGES/gcalctool.mo -share/locale/ar/LC_MESSAGES/gcalctool.mo -share/locale/as/LC_MESSAGES/gcalctool.mo -share/locale/ast/LC_MESSAGES/gcalctool.mo -share/locale/az/LC_MESSAGES/gcalctool.mo -share/locale/be/LC_MESSAGES/gcalctool.mo -share/locale/be@latin/LC_MESSAGES/gcalctool.mo -share/locale/bg/LC_MESSAGES/gcalctool.mo -share/locale/bn/LC_MESSAGES/gcalctool.mo -share/locale/bn_IN/LC_MESSAGES/gcalctool.mo -share/locale/bs/LC_MESSAGES/gcalctool.mo -share/locale/ca/LC_MESSAGES/gcalctool.mo -share/locale/ca@valencia/LC_MESSAGES/gcalctool.mo -share/locale/cs/LC_MESSAGES/gcalctool.mo -share/locale/cy/LC_MESSAGES/gcalctool.mo -share/locale/da/LC_MESSAGES/gcalctool.mo -share/locale/de/LC_MESSAGES/gcalctool.mo -share/locale/dz/LC_MESSAGES/gcalctool.mo -share/locale/el/LC_MESSAGES/gcalctool.mo -share/locale/en@shaw/LC_MESSAGES/gcalctool.mo -share/locale/en_CA/LC_MESSAGES/gcalctool.mo -share/locale/en_GB/LC_MESSAGES/gcalctool.mo -share/locale/en_US/LC_MESSAGES/gcalctool.mo -share/locale/eo/LC_MESSAGES/gcalctool.mo -share/locale/es/LC_MESSAGES/gcalctool.mo -share/locale/et/LC_MESSAGES/gcalctool.mo -share/locale/eu/LC_MESSAGES/gcalctool.mo -share/locale/fa/LC_MESSAGES/gcalctool.mo -share/locale/fi/LC_MESSAGES/gcalctool.mo -share/locale/fr/LC_MESSAGES/gcalctool.mo -share/locale/ga/LC_MESSAGES/gcalctool.mo -share/locale/gl/LC_MESSAGES/gcalctool.mo -share/locale/gu/LC_MESSAGES/gcalctool.mo -share/locale/he/LC_MESSAGES/gcalctool.mo -share/locale/hi/LC_MESSAGES/gcalctool.mo -share/locale/hr/LC_MESSAGES/gcalctool.mo -share/locale/hu/LC_MESSAGES/gcalctool.mo -share/locale/hy/LC_MESSAGES/gcalctool.mo -share/locale/id/LC_MESSAGES/gcalctool.mo -share/locale/it/LC_MESSAGES/gcalctool.mo -share/locale/ja/LC_MESSAGES/gcalctool.mo -share/locale/ka/LC_MESSAGES/gcalctool.mo -share/locale/kk/LC_MESSAGES/gcalctool.mo -share/locale/km/LC_MESSAGES/gcalctool.mo -share/locale/kn/LC_MESSAGES/gcalctool.mo -share/locale/ko/LC_MESSAGES/gcalctool.mo -share/locale/ku/LC_MESSAGES/gcalctool.mo -share/locale/lt/LC_MESSAGES/gcalctool.mo -share/locale/lv/LC_MESSAGES/gcalctool.mo -share/locale/mai/LC_MESSAGES/gcalctool.mo -share/locale/mg/LC_MESSAGES/gcalctool.mo -share/locale/mk/LC_MESSAGES/gcalctool.mo -share/locale/ml/LC_MESSAGES/gcalctool.mo -share/locale/mn/LC_MESSAGES/gcalctool.mo -share/locale/mr/LC_MESSAGES/gcalctool.mo -share/locale/ms/LC_MESSAGES/gcalctool.mo -share/locale/my/LC_MESSAGES/gcalctool.mo -share/locale/nb/LC_MESSAGES/gcalctool.mo -share/locale/ne/LC_MESSAGES/gcalctool.mo -share/locale/nl/LC_MESSAGES/gcalctool.mo -share/locale/nn/LC_MESSAGES/gcalctool.mo -share/locale/oc/LC_MESSAGES/gcalctool.mo -share/locale/or/LC_MESSAGES/gcalctool.mo -share/locale/pa/LC_MESSAGES/gcalctool.mo -share/locale/pl/LC_MESSAGES/gcalctool.mo -share/locale/pt/LC_MESSAGES/gcalctool.mo -share/locale/pt_BR/LC_MESSAGES/gcalctool.mo -share/locale/ro/LC_MESSAGES/gcalctool.mo -share/locale/ru/LC_MESSAGES/gcalctool.mo -share/locale/rw/LC_MESSAGES/gcalctool.mo -share/locale/si/LC_MESSAGES/gcalctool.mo -share/locale/sk/LC_MESSAGES/gcalctool.mo -share/locale/sl/LC_MESSAGES/gcalctool.mo -share/locale/sq/LC_MESSAGES/gcalctool.mo -share/locale/sr/LC_MESSAGES/gcalctool.mo -share/locale/sr@latin/LC_MESSAGES/gcalctool.mo -share/locale/sv/LC_MESSAGES/gcalctool.mo -share/locale/ta/LC_MESSAGES/gcalctool.mo -share/locale/te/LC_MESSAGES/gcalctool.mo -share/locale/th/LC_MESSAGES/gcalctool.mo -share/locale/tk/LC_MESSAGES/gcalctool.mo -share/locale/tr/LC_MESSAGES/gcalctool.mo -share/locale/ug/LC_MESSAGES/gcalctool.mo -share/locale/uk/LC_MESSAGES/gcalctool.mo -share/locale/vi/LC_MESSAGES/gcalctool.mo -share/locale/xh/LC_MESSAGES/gcalctool.mo -share/locale/zh_CN/LC_MESSAGES/gcalctool.mo -share/locale/zh_HK/LC_MESSAGES/gcalctool.mo -share/locale/zh_TW/LC_MESSAGES/gcalctool.mo -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/my/LC_MESSAGES -@dirrmtry share/locale/my -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km -@dirrmtry share/locale/kk/LC_MESSAGES -@dirrmtry share/locale/kk -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/en_US/LC_MESSAGES -@dirrmtry share/locale/en_US -@dirrmtry share/locale/en@shaw/LC_MESSAGES -@dirrmtry share/locale/en@shaw -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrm share/help/zh_TW/gcalctool -@dirrmtry share/help/zh_TW -@dirrm share/help/zh_HK/gcalctool -@dirrmtry share/help/zh_HK -@dirrm share/help/zh_CN/gcalctool -@dirrmtry share/help/zh_CN -@dirrm share/help/te/gcalctool -@dirrmtry share/help/te -@dirrm share/help/sv/gcalctool -@dirrmtry share/help/sv -@dirrm share/help/sl/gcalctool -@dirrmtry share/help/sl -@dirrm share/help/ru/gcalctool -@dirrmtry share/help/ru -@dirrm share/help/ro/gcalctool -@dirrmtry share/help/ro -@dirrm share/help/pt_BR/gcalctool -@dirrmtry share/help/pt_BR -@dirrm share/help/oc/gcalctool -@dirrmtry share/help/oc -@dirrm share/help/lv/gcalctool -@dirrmtry share/help/lv -@dirrm share/help/ko/gcalctool -@dirrmtry share/help/ko -@dirrm share/help/ja/gcalctool -@dirrmtry share/help/ja -@dirrm share/help/it/gcalctool -@dirrmtry share/help/it -@dirrm share/help/hu/gcalctool -@dirrmtry share/help/hu -@dirrm share/help/gl/gcalctool -@dirrmtry share/help/gl -@dirrm share/help/fr/gcalctool -@dirrmtry share/help/fr -@dirrm share/help/fi/gcalctool -@dirrmtry share/help/fi -@dirrm share/help/eu/gcalctool -@dirrmtry share/help/eu -@dirrm share/help/es/gcalctool -@dirrmtry share/help/es -@dirrm share/help/el/gcalctool -@dirrmtry share/help/el -@dirrm share/help/de/gcalctool -@dirrmtry share/help/de -@dirrm share/help/cs/gcalctool -@dirrmtry share/help/cs -@dirrm share/help/ca/gcalctool -@dirrmtry share/help/ca -@dirrm share/help/bg/gcalctool -@dirrmtry share/help/bg -@dirrm share/help/C/gcalctool -@dirrmtry share/help/C -@dirrmtry share/help -@dirrm %%DATADIR%% |