diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-06-07 16:12:43 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-06-07 16:12:43 +0800 |
commit | 30a53d8fa0b04d1cd5c12c03f2a6244c8117de64 (patch) | |
tree | 0774d155741ac7e7fccca57a0287960984787d17 /math | |
parent | c1678dfbd78888d301602ad8e84ff5b9c2f4f1f5 (diff) | |
download | marcuscom-ports-30a53d8fa0b04d1cd5c12c03f2a6244c8117de64.tar marcuscom-ports-30a53d8fa0b04d1cd5c12c03f2a6244c8117de64.tar.gz marcuscom-ports-30a53d8fa0b04d1cd5c12c03f2a6244c8117de64.tar.bz2 marcuscom-ports-30a53d8fa0b04d1cd5c12c03f2a6244c8117de64.tar.lz marcuscom-ports-30a53d8fa0b04d1cd5c12c03f2a6244c8117de64.tar.xz marcuscom-ports-30a53d8fa0b04d1cd5c12c03f2a6244c8117de64.tar.zst marcuscom-ports-30a53d8fa0b04d1cd5c12c03f2a6244c8117de64.zip |
Update to 5.31.3.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14202 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'math')
-rw-r--r-- | math/gcalctool/Makefile | 31 | ||||
-rw-r--r-- | math/gcalctool/distinfo | 3 | ||||
-rw-r--r-- | math/gcalctool/files/patch-src_gcalccmd.c | 92 | ||||
-rw-r--r-- | math/gcalctool/pkg-descr | 5 | ||||
-rw-r--r-- | math/gcalctool/pkg-plist | 685 |
5 files changed, 816 insertions, 0 deletions
diff --git a/math/gcalctool/Makefile b/math/gcalctool/Makefile new file mode 100644 index 000000000..5df5f7505 --- /dev/null +++ b/math/gcalctool/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: gcalctool +# Date created: 12 Jun 2002 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= gcalctool +PORTVERSION= 5.31.3 +PORTEPOCH= 2 +CATEGORIES= math gnome +MASTER_SITES= GNOME +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= A GNOME 2 calculator tool based on the old calctool for OpenWindows + +USE_BZIP2= yes +USE_BISON= build +USE_GETTEXT= yes +USE_GMAKE= yes +USE_AUTOTOOLS= libtool:22 +USE_GNOME= gnomeprefix gnomehack intlhack gconf2 gnomedocutils gtk20 +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +MAN1= gcalctool.1 +GCONF_SCHEMAS= gcalctool.schemas + +.include <bsd.port.mk> diff --git a/math/gcalctool/distinfo b/math/gcalctool/distinfo new file mode 100644 index 000000000..88033fe18 --- /dev/null +++ b/math/gcalctool/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/gcalctool-5.31.3.tar.bz2) = 2e6f7075ca00ee709a3fcbe200422244 +SHA256 (gnome2/gcalctool-5.31.3.tar.bz2) = 8befb0afd03f600dbba1a97890cb71ed1ab044440b9612c7396e30e6d5a8c7ce +SIZE (gnome2/gcalctool-5.31.3.tar.bz2) = 1146236 diff --git a/math/gcalctool/files/patch-src_gcalccmd.c b/math/gcalctool/files/patch-src_gcalccmd.c new file mode 100644 index 000000000..8766e797d --- /dev/null +++ b/math/gcalctool/files/patch-src_gcalccmd.c @@ -0,0 +1,92 @@ +--- src/gcalccmd.c.orig 2009-12-08 21:27:37.000000000 -0500 ++++ src/gcalccmd.c 2010-01-24 13:38:19.000000000 -0500 +@@ -18,16 +18,89 @@ + * 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 "mp-equation.h" + + #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 void + solve(const char *equation) + { diff --git a/math/gcalctool/pkg-descr b/math/gcalctool/pkg-descr new file mode 100644 index 000000000..2efb4943f --- /dev/null +++ b/math/gcalctool/pkg-descr @@ -0,0 +1,5 @@ +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 new file mode 100644 index 000000000..57da375a3 --- /dev/null +++ b/math/gcalctool/pkg-plist @@ -0,0 +1,685 @@ +bin/gcalccmd +bin/gcalctool +bin/gnome-calculator +share/applications/gcalctool.desktop +%%DATADIR%%/buttons-advanced.ui +%%DATADIR%%/buttons-basic.ui +%%DATADIR%%/buttons-financial.ui +%%DATADIR%%/buttons-programming.ui +%%DATADIR%%/preferences.ui +share/gnome/help/gcalctool/C/absolute.page +share/gnome/help/gcalctool/C/base.page +share/gnome/help/gcalctool/C/boolean.page +share/gnome/help/gcalctool/C/complex.page +share/gnome/help/gcalctool/C/conv-base.page +share/gnome/help/gcalctool/C/conv-character.page +share/gnome/help/gcalctool/C/conv-currency.page +share/gnome/help/gcalctool/C/conv-length.page +share/gnome/help/gcalctool/C/conv-time.page +share/gnome/help/gcalctool/C/conv-weight.page +share/gnome/help/gcalctool/C/equation.page +share/gnome/help/gcalctool/C/factorial.page +share/gnome/help/gcalctool/C/factorize.page +share/gnome/help/gcalctool/C/financial.page +share/gnome/help/gcalctool/C/functions.page +share/gnome/help/gcalctool/C/index.page +share/gnome/help/gcalctool/C/keyboard.page +share/gnome/help/gcalctool/C/legal.xml +share/gnome/help/gcalctool/C/logarithm.page +share/gnome/help/gcalctool/C/modulus.page +share/gnome/help/gcalctool/C/mouse.page +share/gnome/help/gcalctool/C/number-display.page +share/gnome/help/gcalctool/C/percentage.page +share/gnome/help/gcalctool/C/power.page +share/gnome/help/gcalctool/C/scientific.page +share/gnome/help/gcalctool/C/superscript.page +share/gnome/help/gcalctool/C/trigonometry.page +share/gnome/help/gcalctool/C/variables.page +share/gnome/help/gcalctool/bg/absolute.page +share/gnome/help/gcalctool/bg/base.page +share/gnome/help/gcalctool/bg/boolean.page +share/gnome/help/gcalctool/bg/complex.page +share/gnome/help/gcalctool/bg/conv-base.page +share/gnome/help/gcalctool/bg/conv-character.page +share/gnome/help/gcalctool/bg/conv-currency.page +share/gnome/help/gcalctool/bg/conv-length.page +share/gnome/help/gcalctool/bg/conv-time.page +share/gnome/help/gcalctool/bg/conv-weight.page +share/gnome/help/gcalctool/bg/equation.page +share/gnome/help/gcalctool/bg/factorial.page +share/gnome/help/gcalctool/bg/factorize.page +share/gnome/help/gcalctool/bg/financial.page +share/gnome/help/gcalctool/bg/functions.page +share/gnome/help/gcalctool/bg/index.page +share/gnome/help/gcalctool/bg/keyboard.page +share/gnome/help/gcalctool/bg/legal.xml +share/gnome/help/gcalctool/bg/logarithm.page +share/gnome/help/gcalctool/bg/modulus.page +share/gnome/help/gcalctool/bg/mouse.page +share/gnome/help/gcalctool/bg/number-display.page +share/gnome/help/gcalctool/bg/percentage.page +share/gnome/help/gcalctool/bg/power.page +share/gnome/help/gcalctool/bg/scientific.page +share/gnome/help/gcalctool/bg/superscript.page +share/gnome/help/gcalctool/bg/trigonometry.page +share/gnome/help/gcalctool/bg/variables.page +share/gnome/help/gcalctool/ca/absolute.page +share/gnome/help/gcalctool/ca/base.page +share/gnome/help/gcalctool/ca/boolean.page +share/gnome/help/gcalctool/ca/complex.page +share/gnome/help/gcalctool/ca/conv-base.page +share/gnome/help/gcalctool/ca/conv-character.page +share/gnome/help/gcalctool/ca/conv-currency.page +share/gnome/help/gcalctool/ca/conv-length.page +share/gnome/help/gcalctool/ca/conv-time.page +share/gnome/help/gcalctool/ca/conv-weight.page +share/gnome/help/gcalctool/ca/equation.page +share/gnome/help/gcalctool/ca/factorial.page +share/gnome/help/gcalctool/ca/factorize.page +share/gnome/help/gcalctool/ca/financial.page +share/gnome/help/gcalctool/ca/functions.page +share/gnome/help/gcalctool/ca/index.page +share/gnome/help/gcalctool/ca/keyboard.page +share/gnome/help/gcalctool/ca/legal.xml +share/gnome/help/gcalctool/ca/logarithm.page +share/gnome/help/gcalctool/ca/modulus.page +share/gnome/help/gcalctool/ca/mouse.page +share/gnome/help/gcalctool/ca/number-display.page +share/gnome/help/gcalctool/ca/percentage.page +share/gnome/help/gcalctool/ca/power.page +share/gnome/help/gcalctool/ca/scientific.page +share/gnome/help/gcalctool/ca/superscript.page +share/gnome/help/gcalctool/ca/trigonometry.page +share/gnome/help/gcalctool/ca/variables.page +share/gnome/help/gcalctool/cs/absolute.page +share/gnome/help/gcalctool/cs/base.page +share/gnome/help/gcalctool/cs/boolean.page +share/gnome/help/gcalctool/cs/complex.page +share/gnome/help/gcalctool/cs/conv-base.page +share/gnome/help/gcalctool/cs/conv-character.page +share/gnome/help/gcalctool/cs/conv-currency.page +share/gnome/help/gcalctool/cs/conv-length.page +share/gnome/help/gcalctool/cs/conv-time.page +share/gnome/help/gcalctool/cs/conv-weight.page +share/gnome/help/gcalctool/cs/equation.page +share/gnome/help/gcalctool/cs/factorial.page +share/gnome/help/gcalctool/cs/factorize.page +share/gnome/help/gcalctool/cs/financial.page +share/gnome/help/gcalctool/cs/functions.page +share/gnome/help/gcalctool/cs/index.page +share/gnome/help/gcalctool/cs/keyboard.page +share/gnome/help/gcalctool/cs/legal.xml +share/gnome/help/gcalctool/cs/logarithm.page +share/gnome/help/gcalctool/cs/modulus.page +share/gnome/help/gcalctool/cs/mouse.page +share/gnome/help/gcalctool/cs/number-display.page +share/gnome/help/gcalctool/cs/percentage.page +share/gnome/help/gcalctool/cs/power.page +share/gnome/help/gcalctool/cs/scientific.page +share/gnome/help/gcalctool/cs/superscript.page +share/gnome/help/gcalctool/cs/trigonometry.page +share/gnome/help/gcalctool/cs/variables.page +share/gnome/help/gcalctool/de/absolute.page +share/gnome/help/gcalctool/de/base.page +share/gnome/help/gcalctool/de/boolean.page +share/gnome/help/gcalctool/de/complex.page +share/gnome/help/gcalctool/de/conv-base.page +share/gnome/help/gcalctool/de/conv-character.page +share/gnome/help/gcalctool/de/conv-currency.page +share/gnome/help/gcalctool/de/conv-length.page +share/gnome/help/gcalctool/de/conv-time.page +share/gnome/help/gcalctool/de/conv-weight.page +share/gnome/help/gcalctool/de/equation.page +share/gnome/help/gcalctool/de/factorial.page +share/gnome/help/gcalctool/de/factorize.page +share/gnome/help/gcalctool/de/financial.page +share/gnome/help/gcalctool/de/functions.page +share/gnome/help/gcalctool/de/index.page +share/gnome/help/gcalctool/de/keyboard.page +share/gnome/help/gcalctool/de/legal.xml +share/gnome/help/gcalctool/de/logarithm.page +share/gnome/help/gcalctool/de/modulus.page +share/gnome/help/gcalctool/de/mouse.page +share/gnome/help/gcalctool/de/number-display.page +share/gnome/help/gcalctool/de/percentage.page +share/gnome/help/gcalctool/de/power.page +share/gnome/help/gcalctool/de/scientific.page +share/gnome/help/gcalctool/de/superscript.page +share/gnome/help/gcalctool/de/trigonometry.page +share/gnome/help/gcalctool/de/variables.page +share/gnome/help/gcalctool/el/absolute.page +share/gnome/help/gcalctool/el/base.page +share/gnome/help/gcalctool/el/boolean.page +share/gnome/help/gcalctool/el/complex.page +share/gnome/help/gcalctool/el/conv-base.page +share/gnome/help/gcalctool/el/conv-character.page +share/gnome/help/gcalctool/el/conv-currency.page +share/gnome/help/gcalctool/el/conv-length.page +share/gnome/help/gcalctool/el/conv-time.page +share/gnome/help/gcalctool/el/conv-weight.page +share/gnome/help/gcalctool/el/equation.page +share/gnome/help/gcalctool/el/factorial.page +share/gnome/help/gcalctool/el/factorize.page +share/gnome/help/gcalctool/el/financial.page +share/gnome/help/gcalctool/el/functions.page +share/gnome/help/gcalctool/el/index.page +share/gnome/help/gcalctool/el/keyboard.page +share/gnome/help/gcalctool/el/legal.xml +share/gnome/help/gcalctool/el/logarithm.page +share/gnome/help/gcalctool/el/modulus.page +share/gnome/help/gcalctool/el/mouse.page +share/gnome/help/gcalctool/el/number-display.page +share/gnome/help/gcalctool/el/percentage.page +share/gnome/help/gcalctool/el/power.page +share/gnome/help/gcalctool/el/scientific.page +share/gnome/help/gcalctool/el/superscript.page +share/gnome/help/gcalctool/el/trigonometry.page +share/gnome/help/gcalctool/el/variables.page +share/gnome/help/gcalctool/es/absolute.page +share/gnome/help/gcalctool/es/base.page +share/gnome/help/gcalctool/es/boolean.page +share/gnome/help/gcalctool/es/complex.page +share/gnome/help/gcalctool/es/conv-base.page +share/gnome/help/gcalctool/es/conv-character.page +share/gnome/help/gcalctool/es/conv-currency.page +share/gnome/help/gcalctool/es/conv-length.page +share/gnome/help/gcalctool/es/conv-time.page +share/gnome/help/gcalctool/es/conv-weight.page +share/gnome/help/gcalctool/es/equation.page +share/gnome/help/gcalctool/es/factorial.page +share/gnome/help/gcalctool/es/factorize.page +share/gnome/help/gcalctool/es/financial.page +share/gnome/help/gcalctool/es/functions.page +share/gnome/help/gcalctool/es/index.page +share/gnome/help/gcalctool/es/keyboard.page +share/gnome/help/gcalctool/es/legal.xml +share/gnome/help/gcalctool/es/logarithm.page +share/gnome/help/gcalctool/es/modulus.page +share/gnome/help/gcalctool/es/mouse.page +share/gnome/help/gcalctool/es/number-display.page +share/gnome/help/gcalctool/es/percentage.page +share/gnome/help/gcalctool/es/power.page +share/gnome/help/gcalctool/es/scientific.page +share/gnome/help/gcalctool/es/superscript.page +share/gnome/help/gcalctool/es/trigonometry.page +share/gnome/help/gcalctool/es/variables.page +share/gnome/help/gcalctool/eu/absolute.page +share/gnome/help/gcalctool/eu/base.page +share/gnome/help/gcalctool/eu/boolean.page +share/gnome/help/gcalctool/eu/complex.page +share/gnome/help/gcalctool/eu/conv-base.page +share/gnome/help/gcalctool/eu/conv-character.page +share/gnome/help/gcalctool/eu/conv-currency.page +share/gnome/help/gcalctool/eu/conv-length.page +share/gnome/help/gcalctool/eu/conv-time.page +share/gnome/help/gcalctool/eu/conv-weight.page +share/gnome/help/gcalctool/eu/equation.page +share/gnome/help/gcalctool/eu/factorial.page +share/gnome/help/gcalctool/eu/factorize.page +share/gnome/help/gcalctool/eu/financial.page +share/gnome/help/gcalctool/eu/functions.page +share/gnome/help/gcalctool/eu/index.page +share/gnome/help/gcalctool/eu/keyboard.page +share/gnome/help/gcalctool/eu/legal.xml +share/gnome/help/gcalctool/eu/logarithm.page +share/gnome/help/gcalctool/eu/modulus.page +share/gnome/help/gcalctool/eu/mouse.page +share/gnome/help/gcalctool/eu/number-display.page +share/gnome/help/gcalctool/eu/percentage.page +share/gnome/help/gcalctool/eu/power.page +share/gnome/help/gcalctool/eu/scientific.page +share/gnome/help/gcalctool/eu/superscript.page +share/gnome/help/gcalctool/eu/trigonometry.page +share/gnome/help/gcalctool/eu/variables.page +share/gnome/help/gcalctool/fr/absolute.page +share/gnome/help/gcalctool/fr/base.page +share/gnome/help/gcalctool/fr/boolean.page +share/gnome/help/gcalctool/fr/complex.page +share/gnome/help/gcalctool/fr/conv-base.page +share/gnome/help/gcalctool/fr/conv-character.page +share/gnome/help/gcalctool/fr/conv-currency.page +share/gnome/help/gcalctool/fr/conv-length.page +share/gnome/help/gcalctool/fr/conv-time.page +share/gnome/help/gcalctool/fr/conv-weight.page +share/gnome/help/gcalctool/fr/equation.page +share/gnome/help/gcalctool/fr/factorial.page +share/gnome/help/gcalctool/fr/factorize.page +share/gnome/help/gcalctool/fr/financial.page +share/gnome/help/gcalctool/fr/functions.page +share/gnome/help/gcalctool/fr/index.page +share/gnome/help/gcalctool/fr/keyboard.page +share/gnome/help/gcalctool/fr/legal.xml +share/gnome/help/gcalctool/fr/logarithm.page +share/gnome/help/gcalctool/fr/modulus.page +share/gnome/help/gcalctool/fr/mouse.page +share/gnome/help/gcalctool/fr/number-display.page +share/gnome/help/gcalctool/fr/percentage.page +share/gnome/help/gcalctool/fr/power.page +share/gnome/help/gcalctool/fr/scientific.page +share/gnome/help/gcalctool/fr/superscript.page +share/gnome/help/gcalctool/fr/trigonometry.page +share/gnome/help/gcalctool/fr/variables.page +share/gnome/help/gcalctool/it/absolute.page +share/gnome/help/gcalctool/it/base.page +share/gnome/help/gcalctool/it/boolean.page +share/gnome/help/gcalctool/it/complex.page +share/gnome/help/gcalctool/it/conv-base.page +share/gnome/help/gcalctool/it/conv-character.page +share/gnome/help/gcalctool/it/conv-currency.page +share/gnome/help/gcalctool/it/conv-length.page +share/gnome/help/gcalctool/it/conv-time.page +share/gnome/help/gcalctool/it/conv-weight.page +share/gnome/help/gcalctool/it/equation.page +share/gnome/help/gcalctool/it/factorial.page +share/gnome/help/gcalctool/it/factorize.page +share/gnome/help/gcalctool/it/financial.page +share/gnome/help/gcalctool/it/functions.page +share/gnome/help/gcalctool/it/index.page +share/gnome/help/gcalctool/it/keyboard.page +share/gnome/help/gcalctool/it/legal.xml +share/gnome/help/gcalctool/it/logarithm.page +share/gnome/help/gcalctool/it/modulus.page +share/gnome/help/gcalctool/it/mouse.page +share/gnome/help/gcalctool/it/number-display.page +share/gnome/help/gcalctool/it/percentage.page +share/gnome/help/gcalctool/it/power.page +share/gnome/help/gcalctool/it/scientific.page +share/gnome/help/gcalctool/it/superscript.page +share/gnome/help/gcalctool/it/trigonometry.page +share/gnome/help/gcalctool/it/variables.page +share/gnome/help/gcalctool/ja/absolute.page +share/gnome/help/gcalctool/ja/base.page +share/gnome/help/gcalctool/ja/boolean.page +share/gnome/help/gcalctool/ja/complex.page +share/gnome/help/gcalctool/ja/conv-base.page +share/gnome/help/gcalctool/ja/conv-character.page +share/gnome/help/gcalctool/ja/conv-currency.page +share/gnome/help/gcalctool/ja/conv-length.page +share/gnome/help/gcalctool/ja/conv-time.page +share/gnome/help/gcalctool/ja/conv-weight.page +share/gnome/help/gcalctool/ja/equation.page +share/gnome/help/gcalctool/ja/factorial.page +share/gnome/help/gcalctool/ja/factorize.page +share/gnome/help/gcalctool/ja/financial.page +share/gnome/help/gcalctool/ja/functions.page +share/gnome/help/gcalctool/ja/index.page +share/gnome/help/gcalctool/ja/keyboard.page +share/gnome/help/gcalctool/ja/legal.xml +share/gnome/help/gcalctool/ja/logarithm.page +share/gnome/help/gcalctool/ja/modulus.page +share/gnome/help/gcalctool/ja/mouse.page +share/gnome/help/gcalctool/ja/number-display.page +share/gnome/help/gcalctool/ja/percentage.page +share/gnome/help/gcalctool/ja/power.page +share/gnome/help/gcalctool/ja/scientific.page +share/gnome/help/gcalctool/ja/superscript.page +share/gnome/help/gcalctool/ja/trigonometry.page +share/gnome/help/gcalctool/ja/variables.page +share/gnome/help/gcalctool/ko/absolute.page +share/gnome/help/gcalctool/ko/base.page +share/gnome/help/gcalctool/ko/boolean.page +share/gnome/help/gcalctool/ko/complex.page +share/gnome/help/gcalctool/ko/conv-base.page +share/gnome/help/gcalctool/ko/conv-character.page +share/gnome/help/gcalctool/ko/conv-currency.page +share/gnome/help/gcalctool/ko/conv-length.page +share/gnome/help/gcalctool/ko/conv-time.page +share/gnome/help/gcalctool/ko/conv-weight.page +share/gnome/help/gcalctool/ko/equation.page +share/gnome/help/gcalctool/ko/factorial.page +share/gnome/help/gcalctool/ko/factorize.page +share/gnome/help/gcalctool/ko/financial.page +share/gnome/help/gcalctool/ko/functions.page +share/gnome/help/gcalctool/ko/index.page +share/gnome/help/gcalctool/ko/keyboard.page +share/gnome/help/gcalctool/ko/legal.xml +share/gnome/help/gcalctool/ko/logarithm.page +share/gnome/help/gcalctool/ko/modulus.page +share/gnome/help/gcalctool/ko/mouse.page +share/gnome/help/gcalctool/ko/number-display.page +share/gnome/help/gcalctool/ko/percentage.page +share/gnome/help/gcalctool/ko/power.page +share/gnome/help/gcalctool/ko/scientific.page +share/gnome/help/gcalctool/ko/superscript.page +share/gnome/help/gcalctool/ko/trigonometry.page +share/gnome/help/gcalctool/ko/variables.page +share/gnome/help/gcalctool/oc/absolute.page +share/gnome/help/gcalctool/oc/base.page +share/gnome/help/gcalctool/oc/boolean.page +share/gnome/help/gcalctool/oc/complex.page +share/gnome/help/gcalctool/oc/conv-base.page +share/gnome/help/gcalctool/oc/conv-character.page +share/gnome/help/gcalctool/oc/conv-currency.page +share/gnome/help/gcalctool/oc/conv-length.page +share/gnome/help/gcalctool/oc/conv-time.page +share/gnome/help/gcalctool/oc/conv-weight.page +share/gnome/help/gcalctool/oc/equation.page +share/gnome/help/gcalctool/oc/factorial.page +share/gnome/help/gcalctool/oc/factorize.page +share/gnome/help/gcalctool/oc/financial.page +share/gnome/help/gcalctool/oc/functions.page +share/gnome/help/gcalctool/oc/index.page +share/gnome/help/gcalctool/oc/keyboard.page +share/gnome/help/gcalctool/oc/legal.xml +share/gnome/help/gcalctool/oc/logarithm.page +share/gnome/help/gcalctool/oc/modulus.page +share/gnome/help/gcalctool/oc/mouse.page +share/gnome/help/gcalctool/oc/number-display.page +share/gnome/help/gcalctool/oc/percentage.page +share/gnome/help/gcalctool/oc/power.page +share/gnome/help/gcalctool/oc/scientific.page +share/gnome/help/gcalctool/oc/superscript.page +share/gnome/help/gcalctool/oc/trigonometry.page +share/gnome/help/gcalctool/oc/variables.page +share/gnome/help/gcalctool/pt_BR/absolute.page +share/gnome/help/gcalctool/pt_BR/base.page +share/gnome/help/gcalctool/pt_BR/boolean.page +share/gnome/help/gcalctool/pt_BR/complex.page +share/gnome/help/gcalctool/pt_BR/conv-base.page +share/gnome/help/gcalctool/pt_BR/conv-character.page +share/gnome/help/gcalctool/pt_BR/conv-currency.page +share/gnome/help/gcalctool/pt_BR/conv-length.page +share/gnome/help/gcalctool/pt_BR/conv-time.page +share/gnome/help/gcalctool/pt_BR/conv-weight.page +share/gnome/help/gcalctool/pt_BR/equation.page +share/gnome/help/gcalctool/pt_BR/factorial.page +share/gnome/help/gcalctool/pt_BR/factorize.page +share/gnome/help/gcalctool/pt_BR/financial.page +share/gnome/help/gcalctool/pt_BR/functions.page +share/gnome/help/gcalctool/pt_BR/index.page +share/gnome/help/gcalctool/pt_BR/keyboard.page +share/gnome/help/gcalctool/pt_BR/legal.xml +share/gnome/help/gcalctool/pt_BR/logarithm.page +share/gnome/help/gcalctool/pt_BR/modulus.page +share/gnome/help/gcalctool/pt_BR/mouse.page +share/gnome/help/gcalctool/pt_BR/number-display.page +share/gnome/help/gcalctool/pt_BR/percentage.page +share/gnome/help/gcalctool/pt_BR/power.page +share/gnome/help/gcalctool/pt_BR/scientific.page +share/gnome/help/gcalctool/pt_BR/superscript.page +share/gnome/help/gcalctool/pt_BR/trigonometry.page +share/gnome/help/gcalctool/pt_BR/variables.page +share/gnome/help/gcalctool/ru/absolute.page +share/gnome/help/gcalctool/ru/base.page +share/gnome/help/gcalctool/ru/boolean.page +share/gnome/help/gcalctool/ru/complex.page +share/gnome/help/gcalctool/ru/conv-base.page +share/gnome/help/gcalctool/ru/conv-character.page +share/gnome/help/gcalctool/ru/conv-currency.page +share/gnome/help/gcalctool/ru/conv-length.page +share/gnome/help/gcalctool/ru/conv-time.page +share/gnome/help/gcalctool/ru/conv-weight.page +share/gnome/help/gcalctool/ru/equation.page +share/gnome/help/gcalctool/ru/factorial.page +share/gnome/help/gcalctool/ru/factorize.page +share/gnome/help/gcalctool/ru/financial.page +share/gnome/help/gcalctool/ru/functions.page +share/gnome/help/gcalctool/ru/index.page +share/gnome/help/gcalctool/ru/keyboard.page +share/gnome/help/gcalctool/ru/legal.xml +share/gnome/help/gcalctool/ru/logarithm.page +share/gnome/help/gcalctool/ru/modulus.page +share/gnome/help/gcalctool/ru/mouse.page +share/gnome/help/gcalctool/ru/number-display.page +share/gnome/help/gcalctool/ru/percentage.page +share/gnome/help/gcalctool/ru/power.page +share/gnome/help/gcalctool/ru/scientific.page +share/gnome/help/gcalctool/ru/superscript.page +share/gnome/help/gcalctool/ru/trigonometry.page +share/gnome/help/gcalctool/ru/variables.page +share/gnome/help/gcalctool/sv/absolute.page +share/gnome/help/gcalctool/sv/base.page +share/gnome/help/gcalctool/sv/boolean.page +share/gnome/help/gcalctool/sv/complex.page +share/gnome/help/gcalctool/sv/conv-base.page +share/gnome/help/gcalctool/sv/conv-character.page +share/gnome/help/gcalctool/sv/conv-currency.page +share/gnome/help/gcalctool/sv/conv-length.page +share/gnome/help/gcalctool/sv/conv-time.page +share/gnome/help/gcalctool/sv/conv-weight.page +share/gnome/help/gcalctool/sv/equation.page +share/gnome/help/gcalctool/sv/factorial.page +share/gnome/help/gcalctool/sv/factorize.page +share/gnome/help/gcalctool/sv/financial.page +share/gnome/help/gcalctool/sv/functions.page +share/gnome/help/gcalctool/sv/index.page +share/gnome/help/gcalctool/sv/keyboard.page +share/gnome/help/gcalctool/sv/legal.xml +share/gnome/help/gcalctool/sv/logarithm.page +share/gnome/help/gcalctool/sv/modulus.page +share/gnome/help/gcalctool/sv/mouse.page +share/gnome/help/gcalctool/sv/number-display.page +share/gnome/help/gcalctool/sv/percentage.page +share/gnome/help/gcalctool/sv/power.page +share/gnome/help/gcalctool/sv/scientific.page +share/gnome/help/gcalctool/sv/superscript.page +share/gnome/help/gcalctool/sv/trigonometry.page +share/gnome/help/gcalctool/sv/variables.page +share/gnome/help/gcalctool/zh_CN/absolute.page +share/gnome/help/gcalctool/zh_CN/base.page +share/gnome/help/gcalctool/zh_CN/boolean.page +share/gnome/help/gcalctool/zh_CN/complex.page +share/gnome/help/gcalctool/zh_CN/conv-base.page +share/gnome/help/gcalctool/zh_CN/conv-character.page +share/gnome/help/gcalctool/zh_CN/conv-currency.page +share/gnome/help/gcalctool/zh_CN/conv-length.page +share/gnome/help/gcalctool/zh_CN/conv-time.page +share/gnome/help/gcalctool/zh_CN/conv-weight.page +share/gnome/help/gcalctool/zh_CN/equation.page +share/gnome/help/gcalctool/zh_CN/factorial.page +share/gnome/help/gcalctool/zh_CN/factorize.page +share/gnome/help/gcalctool/zh_CN/financial.page +share/gnome/help/gcalctool/zh_CN/functions.page +share/gnome/help/gcalctool/zh_CN/index.page +share/gnome/help/gcalctool/zh_CN/keyboard.page +share/gnome/help/gcalctool/zh_CN/legal.xml +share/gnome/help/gcalctool/zh_CN/logarithm.page +share/gnome/help/gcalctool/zh_CN/modulus.page +share/gnome/help/gcalctool/zh_CN/mouse.page +share/gnome/help/gcalctool/zh_CN/number-display.page +share/gnome/help/gcalctool/zh_CN/percentage.page +share/gnome/help/gcalctool/zh_CN/power.page +share/gnome/help/gcalctool/zh_CN/scientific.page +share/gnome/help/gcalctool/zh_CN/superscript.page +share/gnome/help/gcalctool/zh_CN/trigonometry.page +share/gnome/help/gcalctool/zh_CN/variables.page +share/gnome/help/gcalctool/zh_HK/absolute.page +share/gnome/help/gcalctool/zh_HK/base.page +share/gnome/help/gcalctool/zh_HK/boolean.page +share/gnome/help/gcalctool/zh_HK/complex.page +share/gnome/help/gcalctool/zh_HK/conv-base.page +share/gnome/help/gcalctool/zh_HK/conv-character.page +share/gnome/help/gcalctool/zh_HK/conv-currency.page +share/gnome/help/gcalctool/zh_HK/conv-length.page +share/gnome/help/gcalctool/zh_HK/conv-time.page +share/gnome/help/gcalctool/zh_HK/conv-weight.page +share/gnome/help/gcalctool/zh_HK/equation.page +share/gnome/help/gcalctool/zh_HK/factorial.page +share/gnome/help/gcalctool/zh_HK/factorize.page +share/gnome/help/gcalctool/zh_HK/financial.page +share/gnome/help/gcalctool/zh_HK/functions.page +share/gnome/help/gcalctool/zh_HK/index.page +share/gnome/help/gcalctool/zh_HK/keyboard.page +share/gnome/help/gcalctool/zh_HK/legal.xml +share/gnome/help/gcalctool/zh_HK/logarithm.page +share/gnome/help/gcalctool/zh_HK/modulus.page +share/gnome/help/gcalctool/zh_HK/mouse.page +share/gnome/help/gcalctool/zh_HK/number-display.page +share/gnome/help/gcalctool/zh_HK/percentage.page +share/gnome/help/gcalctool/zh_HK/power.page +share/gnome/help/gcalctool/zh_HK/scientific.page +share/gnome/help/gcalctool/zh_HK/superscript.page +share/gnome/help/gcalctool/zh_HK/trigonometry.page +share/gnome/help/gcalctool/zh_HK/variables.page +share/gnome/help/gcalctool/zh_TW/absolute.page +share/gnome/help/gcalctool/zh_TW/base.page +share/gnome/help/gcalctool/zh_TW/boolean.page +share/gnome/help/gcalctool/zh_TW/complex.page +share/gnome/help/gcalctool/zh_TW/conv-base.page +share/gnome/help/gcalctool/zh_TW/conv-character.page +share/gnome/help/gcalctool/zh_TW/conv-currency.page +share/gnome/help/gcalctool/zh_TW/conv-length.page +share/gnome/help/gcalctool/zh_TW/conv-time.page +share/gnome/help/gcalctool/zh_TW/conv-weight.page +share/gnome/help/gcalctool/zh_TW/equation.page +share/gnome/help/gcalctool/zh_TW/factorial.page +share/gnome/help/gcalctool/zh_TW/factorize.page +share/gnome/help/gcalctool/zh_TW/financial.page +share/gnome/help/gcalctool/zh_TW/functions.page +share/gnome/help/gcalctool/zh_TW/index.page +share/gnome/help/gcalctool/zh_TW/keyboard.page +share/gnome/help/gcalctool/zh_TW/legal.xml +share/gnome/help/gcalctool/zh_TW/logarithm.page +share/gnome/help/gcalctool/zh_TW/modulus.page +share/gnome/help/gcalctool/zh_TW/mouse.page +share/gnome/help/gcalctool/zh_TW/number-display.page +share/gnome/help/gcalctool/zh_TW/percentage.page +share/gnome/help/gcalctool/zh_TW/power.page +share/gnome/help/gcalctool/zh_TW/scientific.page +share/gnome/help/gcalctool/zh_TW/superscript.page +share/gnome/help/gcalctool/zh_TW/trigonometry.page +share/gnome/help/gcalctool/zh_TW/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/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/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/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/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/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 +@dirrm share/gnome/help/gcalctool/zh_TW +@dirrm share/gnome/help/gcalctool/zh_HK +@dirrm share/gnome/help/gcalctool/zh_CN +@dirrm share/gnome/help/gcalctool/sv +@dirrm share/gnome/help/gcalctool/ru +@dirrm share/gnome/help/gcalctool/pt_BR +@dirrm share/gnome/help/gcalctool/oc +@dirrm share/gnome/help/gcalctool/ko +@dirrm share/gnome/help/gcalctool/ja +@dirrm share/gnome/help/gcalctool/it +@dirrm share/gnome/help/gcalctool/fr +@dirrm share/gnome/help/gcalctool/eu +@dirrm share/gnome/help/gcalctool/es +@dirrm share/gnome/help/gcalctool/el +@dirrm share/gnome/help/gcalctool/de +@dirrm share/gnome/help/gcalctool/cs +@dirrm share/gnome/help/gcalctool/ca +@dirrm share/gnome/help/gcalctool/bg +@dirrm share/gnome/help/gcalctool/C +@dirrm share/gnome/help/gcalctool +@dirrm %%DATADIR%% +@dirrmtry share/applications +@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/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/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 |