Remove, it's been merged to the main DIR.

This commit is contained in:
ajacoutot 2011-06-01 15:09:08 +00:00
parent 3b5204a55a
commit 3e52433696
5 changed files with 0 additions and 865 deletions

View File

@ -1,46 +0,0 @@
# $OpenBSD: Makefile,v 1.2 2011/05/31 13:31:45 ajacoutot Exp $
COMMENT= GTK desktop calculator
GNOME_PROJECT= gcalctool
GNOME_VERSION= 6.0.2
REVISION= 0
CATEGORIES= math
# GPLv2
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB += GL X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
WANTLIB += Xi Xinerama Xrandr Xrender Xxf86vm atk-1.0 c cairo
WANTLIB += cairo-gobject drm expat fontconfig freetype gdk-3 gdk_pixbuf-2.0
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 gthread-2.0
WANTLIB += gtk-3 m pango-1.0 pangocairo-1.0 pangoft2-1.0 pixman-1
WANTLIB += png pthread pthread-stubs xcb xcb-render xcb-shm xml2
WANTLIB += z
MODULES= devel/gettext \
x11/gnome \
devel/dconf
LIB_DEPENDS= x11/gtk+3
BUILD_DEPENDS= devel/bison
YACC= bison
# needed to download IMF/ECB rates (Financial mode)
RUN_DEPENDS= x11/gnome/gvfs
MODGNOME_HELP_FILES= Yes
DESKTOP_FILES= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --with-gtk=3.0
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (gnome/gcalctool-6.0.2.tar.bz2) = UxVt2Wru7PaiZpKSAl3nXA==
RMD160 (gnome/gcalctool-6.0.2.tar.bz2) = xnM2Y2mT26Yd7d8jHBepMstVYl0=
SHA1 (gnome/gcalctool-6.0.2.tar.bz2) = eChe7tYdlQHnU0FhsU7sZ6OFiQs=
SHA256 (gnome/gcalctool-6.0.2.tar.bz2) = YxkP3hvlICq0N3R4W1Uh2PEVksap4SVnMCjFrCNckxY=
SIZE (gnome/gcalctool-6.0.2.tar.bz2) = 1275979

View File

@ -1,31 +0,0 @@
$OpenBSD: patch-src_math-equation_c,v 1.1.1.1 2011/05/31 09:08:31 jasper Exp $
Fix stackoverflow as the lexer wouldn't be able to fit on the stack.
https://bugzilla.gnome.org/show_bug.cgi?id=650174
--- src/math-equation.c.orig Tue May 24 05:20:42 2011
+++ src/math-equation.c Tue May 31 09:37:25 2011
@@ -1305,6 +1305,7 @@ void
math_equation_solve(MathEquation *equation)
{
GError *error = NULL;
+ gulong stacksize = 0;
g_return_if_fail(equation != NULL);
@@ -1326,7 +1327,14 @@ math_equation_solve(MathEquation *equation)
math_equation_set_number_mode(equation, NORMAL);
- g_thread_create(math_equation_solve_real, equation, false, &error);
+ if (GLIB_SIZEOF_LONG == 8) {
+ stacksize = 0x400000;
+ } else {
+ stacksize = 0x200000;
+ }
+
+ g_thread_create_full(math_equation_solve_real, equation, stacksize, false,
+ false, G_THREAD_PRIORITY_NORMAL, &error);
if (error)
g_warning("Error spawning thread for calculations: %s\n", error->message);

View File

@ -1,5 +0,0 @@
Gcalctool is the default GNOME desktop calculator.
It has Basic, Financial and Scientific modes. Internally it uses
multiple precision arithmetic to produce results to a high degree of
accuracy.

View File

@ -1,778 +0,0 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2011/05/31 09:08:31 jasper Exp $
@bin bin/gcalccmd
@bin bin/gcalctool
bin/gnome-calculator
@man man/man1/gcalccmd.1
@man man/man1/gcalctool.1
share/applications/gcalctool.desktop
share/gcalctool/
share/gcalctool/buttons-advanced.ui
share/gcalctool/buttons-basic.ui
share/gcalctool/buttons-financial.ui
share/gcalctool/buttons-programming.ui
share/gcalctool/preferences.ui
share/glib-2.0/schemas/org.gnome.gcalctool.gschema.xml
share/gnome/help/gcalctool/
share/gnome/help/gcalctool/C/
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/
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/
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/
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/
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/
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/
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/
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/fi/
share/gnome/help/gcalctool/fi/absolute.page
share/gnome/help/gcalctool/fi/base.page
share/gnome/help/gcalctool/fi/boolean.page
share/gnome/help/gcalctool/fi/complex.page
share/gnome/help/gcalctool/fi/conv-base.page
share/gnome/help/gcalctool/fi/conv-character.page
share/gnome/help/gcalctool/fi/conv-currency.page
share/gnome/help/gcalctool/fi/conv-length.page
share/gnome/help/gcalctool/fi/conv-time.page
share/gnome/help/gcalctool/fi/conv-weight.page
share/gnome/help/gcalctool/fi/equation.page
share/gnome/help/gcalctool/fi/factorial.page
share/gnome/help/gcalctool/fi/factorize.page
share/gnome/help/gcalctool/fi/financial.page
share/gnome/help/gcalctool/fi/functions.page
share/gnome/help/gcalctool/fi/index.page
share/gnome/help/gcalctool/fi/keyboard.page
share/gnome/help/gcalctool/fi/legal.xml
share/gnome/help/gcalctool/fi/logarithm.page
share/gnome/help/gcalctool/fi/modulus.page
share/gnome/help/gcalctool/fi/mouse.page
share/gnome/help/gcalctool/fi/number-display.page
share/gnome/help/gcalctool/fi/percentage.page
share/gnome/help/gcalctool/fi/power.page
share/gnome/help/gcalctool/fi/scientific.page
share/gnome/help/gcalctool/fi/superscript.page
share/gnome/help/gcalctool/fi/trigonometry.page
share/gnome/help/gcalctool/fi/variables.page
share/gnome/help/gcalctool/fr/
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/gl/
share/gnome/help/gcalctool/gl/absolute.page
share/gnome/help/gcalctool/gl/base.page
share/gnome/help/gcalctool/gl/boolean.page
share/gnome/help/gcalctool/gl/complex.page
share/gnome/help/gcalctool/gl/conv-base.page
share/gnome/help/gcalctool/gl/conv-character.page
share/gnome/help/gcalctool/gl/conv-currency.page
share/gnome/help/gcalctool/gl/conv-length.page
share/gnome/help/gcalctool/gl/conv-time.page
share/gnome/help/gcalctool/gl/conv-weight.page
share/gnome/help/gcalctool/gl/equation.page
share/gnome/help/gcalctool/gl/factorial.page
share/gnome/help/gcalctool/gl/factorize.page
share/gnome/help/gcalctool/gl/financial.page
share/gnome/help/gcalctool/gl/functions.page
share/gnome/help/gcalctool/gl/index.page
share/gnome/help/gcalctool/gl/keyboard.page
share/gnome/help/gcalctool/gl/legal.xml
share/gnome/help/gcalctool/gl/logarithm.page
share/gnome/help/gcalctool/gl/modulus.page
share/gnome/help/gcalctool/gl/mouse.page
share/gnome/help/gcalctool/gl/number-display.page
share/gnome/help/gcalctool/gl/percentage.page
share/gnome/help/gcalctool/gl/power.page
share/gnome/help/gcalctool/gl/scientific.page
share/gnome/help/gcalctool/gl/superscript.page
share/gnome/help/gcalctool/gl/trigonometry.page
share/gnome/help/gcalctool/gl/variables.page
share/gnome/help/gcalctool/hu/
share/gnome/help/gcalctool/hu/absolute.page
share/gnome/help/gcalctool/hu/base.page
share/gnome/help/gcalctool/hu/boolean.page
share/gnome/help/gcalctool/hu/complex.page
share/gnome/help/gcalctool/hu/conv-base.page
share/gnome/help/gcalctool/hu/conv-character.page
share/gnome/help/gcalctool/hu/conv-currency.page
share/gnome/help/gcalctool/hu/conv-length.page
share/gnome/help/gcalctool/hu/conv-time.page
share/gnome/help/gcalctool/hu/conv-weight.page
share/gnome/help/gcalctool/hu/equation.page
share/gnome/help/gcalctool/hu/factorial.page
share/gnome/help/gcalctool/hu/factorize.page
share/gnome/help/gcalctool/hu/financial.page
share/gnome/help/gcalctool/hu/functions.page
share/gnome/help/gcalctool/hu/index.page
share/gnome/help/gcalctool/hu/keyboard.page
share/gnome/help/gcalctool/hu/legal.xml
share/gnome/help/gcalctool/hu/logarithm.page
share/gnome/help/gcalctool/hu/modulus.page
share/gnome/help/gcalctool/hu/mouse.page
share/gnome/help/gcalctool/hu/number-display.page
share/gnome/help/gcalctool/hu/percentage.page
share/gnome/help/gcalctool/hu/power.page
share/gnome/help/gcalctool/hu/scientific.page
share/gnome/help/gcalctool/hu/superscript.page
share/gnome/help/gcalctool/hu/trigonometry.page
share/gnome/help/gcalctool/hu/variables.page
share/gnome/help/gcalctool/it/
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/
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/
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/
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/
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/
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/sl/
share/gnome/help/gcalctool/sl/absolute.page
share/gnome/help/gcalctool/sl/base.page
share/gnome/help/gcalctool/sl/boolean.page
share/gnome/help/gcalctool/sl/complex.page
share/gnome/help/gcalctool/sl/conv-base.page
share/gnome/help/gcalctool/sl/conv-character.page
share/gnome/help/gcalctool/sl/conv-currency.page
share/gnome/help/gcalctool/sl/conv-length.page
share/gnome/help/gcalctool/sl/conv-time.page
share/gnome/help/gcalctool/sl/conv-weight.page
share/gnome/help/gcalctool/sl/equation.page
share/gnome/help/gcalctool/sl/factorial.page
share/gnome/help/gcalctool/sl/factorize.page
share/gnome/help/gcalctool/sl/financial.page
share/gnome/help/gcalctool/sl/functions.page
share/gnome/help/gcalctool/sl/index.page
share/gnome/help/gcalctool/sl/keyboard.page
share/gnome/help/gcalctool/sl/legal.xml
share/gnome/help/gcalctool/sl/logarithm.page
share/gnome/help/gcalctool/sl/modulus.page
share/gnome/help/gcalctool/sl/mouse.page
share/gnome/help/gcalctool/sl/number-display.page
share/gnome/help/gcalctool/sl/percentage.page
share/gnome/help/gcalctool/sl/power.page
share/gnome/help/gcalctool/sl/scientific.page
share/gnome/help/gcalctool/sl/superscript.page
share/gnome/help/gcalctool/sl/trigonometry.page
share/gnome/help/gcalctool/sl/variables.page
share/gnome/help/gcalctool/sv/
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/
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/
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/
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
@exec %D/bin/update-desktop-database
@unexec-delete %D/bin/update-desktop-database
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/
share/locale/en_US/LC_MESSAGES/
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/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/
share/locale/tk/LC_MESSAGES/
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
@exec %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas
@unexec-delete %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas