From 6a2a890c5cd397f9f0287409c2aa0244d50f3573 Mon Sep 17 00:00:00 2001 From: kwm Date: Mon, 10 May 2010 21:19:08 +0000 Subject: Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for this release can be found at http://library.gnome.org/misc/release-notes/2.30/ . This release brings initial PackageKit support, Upower (replaces power management part of hal), cuse4bsd integration with HAL and cheese, and a faster Evolution. Sadly GNOME 2.30.x will be the last release with FreeBSD 6.X support. This will also be the last of the 2.x releases. The next release will be the highly-anticipated GNOME 3.0 which will bring with it a new UI experience. Currently, there are a few bugs with GNOME 2.30 that may be of note for our users. Be sure to consult the UPGRADING note or the 2.30 upgrade FAQ at http://www.freebsd.org/gnome/docs/faq230.html for specific upgrading instructions, and the up-to-date list of known issues. This release features commits by avl, ahze, bland, marcus, mezz, and myself. The FreeBSD GNOME Team would like to thank Anders F Bjorklund for doing the initual packagekit porting. And the following contributors & testers for there help with this release: Eric L. Chen Vladimir Grebenschikov Sergio de Almeida Lenzi DomiX walder crsd Kevin Oberman Michal Varga Pavel Plesov Bapt kevin and ITetcu for two exp-run PR: ports/143852 ports/145347 ports/144980 ports/145830 ports/145511 --- math/gcalctool/Makefile | 6 +- math/gcalctool/distinfo | 6 +- math/gcalctool/files/patch-src_gcalccmd.c | 92 ++++ math/gcalctool/pkg-descr | 6 +- math/gcalctool/pkg-plist | 707 ++++++++++++++++++++++-------- 5 files changed, 635 insertions(+), 182 deletions(-) create mode 100644 math/gcalctool/files/patch-src_gcalccmd.c (limited to 'math') diff --git a/math/gcalctool/Makefile b/math/gcalctool/Makefile index 45c1ff7a7963..45cc40f11318 100644 --- a/math/gcalctool/Makefile +++ b/math/gcalctool/Makefile @@ -3,12 +3,11 @@ # Whom: Joe Marcus Clarke # # $FreeBSD$ -# $MCom: ports/math/gcalctool/Makefile,v 1.123 2009/10/18 23:25:02 avl Exp $ +# $MCom: ports/math/gcalctool/Makefile,v 1.132 2010/04/26 11:11:43 kwm Exp $ # PORTNAME= gcalctool -PORTVERSION= 5.28.2 -PORTREVISION= 2 +PORTVERSION= 5.30.1 PORTEPOCH= 2 CATEGORIES= math gnome MASTER_SITES= GNOME @@ -19,7 +18,6 @@ COMMENT= A GNOME 2 calculator tool based on the old calctool for OpenWindows USE_BZIP2= yes USE_BISON= build -INSTALLS_OMF= yes USE_GETTEXT= yes USE_GMAKE= yes USE_AUTOTOOLS= libtool:22 diff --git a/math/gcalctool/distinfo b/math/gcalctool/distinfo index fc6022a8b795..06f7f2466606 100644 --- a/math/gcalctool/distinfo +++ b/math/gcalctool/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/gcalctool-5.28.2.tar.bz2) = 5c7ad2f95f2f0756f8261073dde342da -SHA256 (gnome2/gcalctool-5.28.2.tar.bz2) = 1acd72b8b16e6f23636a3a685fe0732499470e0cb1905517ca7146b4fd059287 -SIZE (gnome2/gcalctool-5.28.2.tar.bz2) = 2273145 +MD5 (gnome2/gcalctool-5.30.1.tar.bz2) = fc54536bab41161f2e3ccc206c32976f +SHA256 (gnome2/gcalctool-5.30.1.tar.bz2) = 2979924df4eaa37d1ecba90753b1c23e3c662f9247c0e2394f4a9d4c51802eef +SIZE (gnome2/gcalctool-5.30.1.tar.bz2) = 1125957 diff --git a/math/gcalctool/files/patch-src_gcalccmd.c b/math/gcalctool/files/patch-src_gcalccmd.c new file mode 100644 index 000000000000..8766e797db0b --- /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 + #include + #include + #include + #include ++#include + #include + + #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 index 30e69fa214f9..2efb4943f6bb 100644 --- a/math/gcalctool/pkg-descr +++ b/math/gcalctool/pkg-descr @@ -1,5 +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 +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://calctool.sourceforge.net/ +WWW: http://live.gnome.org/Gcalctool diff --git a/math/gcalctool/pkg-plist b/math/gcalctool/pkg-plist index b2e862d86bb0..f9f618bfdd12 100644 --- a/math/gcalctool/pkg-plist +++ b/math/gcalctool/pkg-plist @@ -1,142 +1,541 @@ +bin/gcalccmd bin/gcalctool bin/gnome-calculator share/applications/gcalctool.desktop %%DATADIR%%/gcalctool.ui %%DATADIR%%/financial.ui -share/gnome/help/gcalctool/C/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/C/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/C/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/C/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/C/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/C/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/C/gcalctool.xml +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/bg/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/bg/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/bg/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/bg/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/bg/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/bg/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/bg/gcalctool.xml -share/gnome/help/gcalctool/ca/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/ca/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/ca/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/ca/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/ca/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/ca/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/ca/gcalctool.xml -share/gnome/help/gcalctool/cs/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/cs/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/cs/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/cs/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/cs/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/cs/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/cs/gcalctool.xml -share/gnome/help/gcalctool/de/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/de/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/de/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/de/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/de/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/de/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/de/gcalctool.xml -share/gnome/help/gcalctool/el/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/el/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/el/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/el/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/el/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/el/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/el/gcalctool.xml -share/gnome/help/gcalctool/es/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/es/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/es/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/es/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/es/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/es/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/es/gcalctool.xml -share/gnome/help/gcalctool/eu/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/eu/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/eu/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/eu/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/eu/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/eu/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/eu/gcalctool.xml -share/gnome/help/gcalctool/fr/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/fr/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/fr/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/fr/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/fr/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/fr/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/fr/gcalctool.xml -share/gnome/help/gcalctool/it/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/it/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/it/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/it/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/it/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/it/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/it/gcalctool.xml -share/gnome/help/gcalctool/ja/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/ja/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/ja/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/ja/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/ja/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/ja/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/ja/gcalctool.xml -share/gnome/help/gcalctool/ko/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/ko/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/ko/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/ko/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/ko/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/ko/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/ko/gcalctool.xml -share/gnome/help/gcalctool/oc/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/oc/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/oc/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/oc/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/oc/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/oc/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/oc/gcalctool.xml -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/pt_BR/gcalctool.xml -share/gnome/help/gcalctool/ru/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/ru/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/ru/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/ru/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/ru/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/ru/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/ru/gcalctool.xml -share/gnome/help/gcalctool/sv/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/sv/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/sv/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/sv/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/sv/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/sv/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/sv/gcalctool.xml -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/zh_CN/gcalctool.xml -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/zh_HK/gcalctool.xml -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/zh_TW/gcalctool.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 @@ -157,6 +556,7 @@ 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 @@ -220,63 +620,24 @@ 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 -share/omf/gcalctool/gcalctool-C.omf -share/omf/gcalctool/gcalctool-bg.omf -share/omf/gcalctool/gcalctool-ca.omf -share/omf/gcalctool/gcalctool-cs.omf -share/omf/gcalctool/gcalctool-de.omf -share/omf/gcalctool/gcalctool-el.omf -share/omf/gcalctool/gcalctool-es.omf -share/omf/gcalctool/gcalctool-eu.omf -share/omf/gcalctool/gcalctool-fr.omf -share/omf/gcalctool/gcalctool-it.omf -share/omf/gcalctool/gcalctool-ja.omf -share/omf/gcalctool/gcalctool-ko.omf -share/omf/gcalctool/gcalctool-oc.omf -share/omf/gcalctool/gcalctool-pt_BR.omf -share/omf/gcalctool/gcalctool-ru.omf -share/omf/gcalctool/gcalctool-sv.omf -share/omf/gcalctool/gcalctool-zh_CN.omf -share/omf/gcalctool/gcalctool-zh_HK.omf -share/omf/gcalctool/gcalctool-zh_TW.omf -@dirrm share/omf/gcalctool -@dirrm share/gnome/help/gcalctool/zh_TW/figures @dirrm share/gnome/help/gcalctool/zh_TW -@dirrm share/gnome/help/gcalctool/zh_HK/figures @dirrm share/gnome/help/gcalctool/zh_HK -@dirrm share/gnome/help/gcalctool/zh_CN/figures @dirrm share/gnome/help/gcalctool/zh_CN -@dirrm share/gnome/help/gcalctool/sv/figures @dirrm share/gnome/help/gcalctool/sv -@dirrm share/gnome/help/gcalctool/ru/figures @dirrm share/gnome/help/gcalctool/ru -@dirrm share/gnome/help/gcalctool/pt_BR/figures @dirrm share/gnome/help/gcalctool/pt_BR -@dirrm share/gnome/help/gcalctool/oc/figures @dirrm share/gnome/help/gcalctool/oc -@dirrm share/gnome/help/gcalctool/ko/figures @dirrm share/gnome/help/gcalctool/ko -@dirrm share/gnome/help/gcalctool/ja/figures @dirrm share/gnome/help/gcalctool/ja -@dirrm share/gnome/help/gcalctool/it/figures @dirrm share/gnome/help/gcalctool/it -@dirrm share/gnome/help/gcalctool/fr/figures @dirrm share/gnome/help/gcalctool/fr -@dirrm share/gnome/help/gcalctool/eu/figures @dirrm share/gnome/help/gcalctool/eu -@dirrm share/gnome/help/gcalctool/es/figures @dirrm share/gnome/help/gcalctool/es -@dirrm share/gnome/help/gcalctool/el/figures @dirrm share/gnome/help/gcalctool/el -@dirrm share/gnome/help/gcalctool/de/figures @dirrm share/gnome/help/gcalctool/de -@dirrm share/gnome/help/gcalctool/cs/figures @dirrm share/gnome/help/gcalctool/cs -@dirrm share/gnome/help/gcalctool/ca/figures @dirrm share/gnome/help/gcalctool/ca -@dirrm share/gnome/help/gcalctool/bg/figures @dirrm share/gnome/help/gcalctool/bg -@dirrm share/gnome/help/gcalctool/C/figures @dirrm share/gnome/help/gcalctool/C @dirrm share/gnome/help/gcalctool @dirrm %%DATADIR%% @@ -305,6 +666,8 @@ share/omf/gcalctool/gcalctool-zh_TW.omf @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 -- cgit