diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-09-13 15:13:03 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-09-13 15:13:03 +0800 |
commit | c1a9ff555d3b7431ebcbfb88e08de9cb8054584a (patch) | |
tree | 6545f0bd8d89723079f331d98d23a4e493513b03 /math | |
parent | 4c427dfb72bba2614233a7487aa1a49fe23dcb7c (diff) | |
download | marcuscom-ports-c1a9ff555d3b7431ebcbfb88e08de9cb8054584a.tar marcuscom-ports-c1a9ff555d3b7431ebcbfb88e08de9cb8054584a.tar.gz marcuscom-ports-c1a9ff555d3b7431ebcbfb88e08de9cb8054584a.tar.bz2 marcuscom-ports-c1a9ff555d3b7431ebcbfb88e08de9cb8054584a.tar.lz marcuscom-ports-c1a9ff555d3b7431ebcbfb88e08de9cb8054584a.tar.xz marcuscom-ports-c1a9ff555d3b7431ebcbfb88e08de9cb8054584a.tar.zst marcuscom-ports-c1a9ff555d3b7431ebcbfb88e08de9cb8054584a.zip |
Add gnumeric2 and update to 1.1.90.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1209 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'math')
-rw-r--r-- | math/gnumeric2/Makefile | 47 | ||||
-rw-r--r-- | math/gnumeric2/distinfo | 1 | ||||
-rw-r--r-- | math/gnumeric2/files/patch-configure | 29 | ||||
-rw-r--r-- | math/gnumeric2/files/patch-doc_xmldocs.make | 11 | ||||
-rw-r--r-- | math/gnumeric2/files/patch-src_regutf8.h | 11 | ||||
-rw-r--r-- | math/gnumeric2/pkg-descr | 3 | ||||
-rw-r--r-- | math/gnumeric2/pkg-plist | 845 |
7 files changed, 947 insertions, 0 deletions
diff --git a/math/gnumeric2/Makefile b/math/gnumeric2/Makefile new file mode 100644 index 000000000..216d96d56 --- /dev/null +++ b/math/gnumeric2/Makefile @@ -0,0 +1,47 @@ +# New ports collection makefile for: gnumeric2 +# Date created: 26 August 2002 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD: ports/math/gnumeric2/Makefile,v 1.109 2003/09/07 06:35:52 marcus Exp $ +# + +PORTNAME= gnumeric2 +PORTVERSION= 1.1.90 +CATEGORIES= math gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/1.1 +DISTNAME= ${PORTNAME:S/2$//}-${PORTVERSION} +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= The GNOME 2 spreadsheet + +BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtk.so:${PORTSDIR}/x11-toolkits/py-gtk2 +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtk.so:${PORTSDIR}/x11-toolkits/py-gtk2 + +USE_BZIP2= yes +USE_X_PREFIX= yes +USE_PERL5= yes +USE_GMAKE= yes +USE_GNOME= gnomeprefix gnomehack gnomehier libgnomeprintui gal2 libgnomedb libgsf +USE_PYTHON= yes +USE_REINPLACE= yes +USE_LIBTOOL= yes +CONFIGURE_ARGS= --without-guile --with-bonobo --with-gnome-db +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ + LIBS="-L${LOCALBASE}/lib -liconv ${PTHREAD_LIBS}" \ + DEFS="-I${X11BASE}/include/gal-2.0" + +PLIST_SUB= VERSION=${PORTVERSION}-bonobo + +post-patch: + @${FIND} ${WRKSRC}/plugins -name "plugin.xml.in" | ${XARGS} \ + ${REINPLACE_CMD} -e 's|\.la|.so|g' + @${RM} -f ${WRKSRC}/GNOME_Gnumeric.server.in + +post-install: +.for dir in share/gnome lib + @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/${dir}/gnumeric +.endfor + +.include <bsd.port.mk> diff --git a/math/gnumeric2/distinfo b/math/gnumeric2/distinfo new file mode 100644 index 000000000..d4886f41c --- /dev/null +++ b/math/gnumeric2/distinfo @@ -0,0 +1 @@ +MD5 (gnome2/gnumeric-1.1.90.tar.bz2) = 626b775bf2d700d2a049bc748285de1b diff --git a/math/gnumeric2/files/patch-configure b/math/gnumeric2/files/patch-configure new file mode 100644 index 000000000..4feaedade --- /dev/null +++ b/math/gnumeric2/files/patch-configure @@ -0,0 +1,29 @@ +--- configure.orig Wed Nov 13 14:39:44 2002 ++++ configure Fri Nov 15 20:11:48 2002 +@@ -8244,6 +8244,7 @@ + + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' +@@ -9562,7 +9563,8 @@ + int + main () + { +-FILE *f = fdopen(1, "r") ++FILE *f; ++f = fdopen(1, "r") + ; + return 0; + } +@@ -13997,7 +13999,7 @@ + }' + fi + +-DEFS=-DHAVE_CONFIG_H ++DEFS="$DEFS -DHAVE_CONFIG_H" + + ac_libobjs= + ac_ltlibobjs= diff --git a/math/gnumeric2/files/patch-doc_xmldocs.make b/math/gnumeric2/files/patch-doc_xmldocs.make new file mode 100644 index 000000000..e4f9a4864 --- /dev/null +++ b/math/gnumeric2/files/patch-doc_xmldocs.make @@ -0,0 +1,11 @@ +--- doc/xmldocs.make.orig Sun Sep 7 22:37:55 2003 ++++ doc/xmldocs.make Sat Sep 13 02:47:14 2003 +@@ -32,7 +32,7 @@ + # dist-hook: app-dist-hook + # + +-docdir = $(gnumeric_datadir)/share/gnome/help/$(docname)/$(lang) ++docdir = $(gnumeric_datadir)/help/$(docname)/$(lang) + + xml_files = $(entities) $(docname).xml + diff --git a/math/gnumeric2/files/patch-src_regutf8.h b/math/gnumeric2/files/patch-src_regutf8.h new file mode 100644 index 000000000..04040ac56 --- /dev/null +++ b/math/gnumeric2/files/patch-src_regutf8.h @@ -0,0 +1,11 @@ +--- src/regutf8.h.orig Thu Sep 12 00:17:54 2002 ++++ src/regutf8.h Thu Sep 12 00:18:02 2002 +@@ -19,7 +19,7 @@ + #endif + + #ifndef REG_OK +-#define REG_OK REG_NOERROR ++#define REG_OK 0 + #endif + + // ---------------------------------------------------------------------------- diff --git a/math/gnumeric2/pkg-descr b/math/gnumeric2/pkg-descr new file mode 100644 index 000000000..76139dab8 --- /dev/null +++ b/math/gnumeric2/pkg-descr @@ -0,0 +1,3 @@ +The GNOME 2 spreadsheet. + +WWW: http://www.gnome.org/projects/gnumeric/index.shtml diff --git a/math/gnumeric2/pkg-plist b/math/gnumeric2/pkg-plist new file mode 100644 index 000000000..ee052bd70 --- /dev/null +++ b/math/gnumeric2/pkg-plist @@ -0,0 +1,845 @@ +bin/gnumeric +etc/gconf/gconf.xml.defaults/apps/gnome-settings/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnome-settings/gnumeric/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/autocorrect/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/autoformat/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/defaultfont/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/file/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/file/history/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/file/save/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/gui/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/gui/editing/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/gui/screen/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/gui/window/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/sort/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/sort/default/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/sort/dialog/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/workbook/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/core/xml/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/cut-and-paste/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/dialogs/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/dialogs/rs/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/file/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/file/history/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/functionselector/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/plugin/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/plugin/latex/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/plugins/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/printsetup/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnumeric/undo/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnome-settings/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnome-settings/gnumeric/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/autocorrect/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/autoformat/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/defaultfont/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/file/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/file/history/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/file/save/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/gui/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/gui/editing/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/gui/screen/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/gui/window/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/sort/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/sort/default/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/sort/dialog/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/workbook/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/xml/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/cut-and-paste/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/dialogs/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/dialogs/rs/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/functionselector/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/plugin/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/plugin/latex/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/plugins/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/printsetup/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/undo/%gconf.xml +etc/gconf/schemas/gnumeric-dialogs.schemas +etc/gconf/schemas/gnumeric-general.schemas +etc/gconf/schemas/gnumeric-plugins.schemas +lib/gnumeric/%%VERSION%%/plugins/applix/applix.so +lib/gnumeric/%%VERSION%%/plugins/applix/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/corba/corba.so +lib/gnumeric/%%VERSION%%/plugins/corba/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/derivatives/derivatives.so +lib/gnumeric/%%VERSION%%/plugins/derivatives/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/dif/dif.so +lib/gnumeric/%%VERSION%%/plugins/dif/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/excel/excel.so +lib/gnumeric/%%VERSION%%/plugins/excel/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-complex/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-complex/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-database/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-database/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-date/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-date/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-eng/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-eng/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-financial/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-financial/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-info/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-info/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-logical/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-logical/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-lookup/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-lookup/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-math/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-math/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-random/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-random/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-stat/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-stat/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/fn-string/plugin.so +lib/gnumeric/%%VERSION%%/plugins/fn-string/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/gdaif/gdaif.so +lib/gnumeric/%%VERSION%%/plugins/gdaif/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/gnome-db/gnomedb.so +lib/gnumeric/%%VERSION%%/plugins/gnome-db/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/gnome-db/ui.xml +lib/gnumeric/%%VERSION%%/plugins/gnome-glossary/glossary-po-header +lib/gnumeric/%%VERSION%%/plugins/gnome-glossary/gnome_glossary.py +lib/gnumeric/%%VERSION%%/plugins/gnome-glossary/gnome_glossary.pyc +lib/gnumeric/%%VERSION%%/plugins/gnome-glossary/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/html/html.so +lib/gnumeric/%%VERSION%%/plugins/html/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/lotus/lotus.so +lib/gnumeric/%%VERSION%%/plugins/lotus/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/mps/mps.so +lib/gnumeric/%%VERSION%%/plugins/mps/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/numtheory/numtheory.so +lib/gnumeric/%%VERSION%%/plugins/numtheory/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/oleo/oleo.so +lib/gnumeric/%%VERSION%%/plugins/oleo/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/openoffice/openoffice.so +lib/gnumeric/%%VERSION%%/plugins/openoffice/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/plan_perfect/plan_perfect.so +lib/gnumeric/%%VERSION%%/plugins/plan_perfect/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/plot_barcol/barcol.so +lib/gnumeric/%%VERSION%%/plugins/plot_barcol/gog-barcol-prefs.glade +lib/gnumeric/%%VERSION%%/plugins/plot_barcol/plot-types.xml +lib/gnumeric/%%VERSION%%/plugins/plot_barcol/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/plot_pie/gog-pie-prefs.glade +lib/gnumeric/%%VERSION%%/plugins/plot_pie/gog-ring-prefs.glade +lib/gnumeric/%%VERSION%%/plugins/plot_pie/pie.so +lib/gnumeric/%%VERSION%%/plugins/plot_pie/plot-types.xml +lib/gnumeric/%%VERSION%%/plugins/plot_pie/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/plot_xy/plot-types.xml +lib/gnumeric/%%VERSION%%/plugins/plot_xy/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/plot_xy/xy.so +lib/gnumeric/%%VERSION%%/plugins/py-func/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/py-func/py_func.py +lib/gnumeric/%%VERSION%%/plugins/py-func/py_func.pyc +lib/gnumeric/%%VERSION%%/plugins/python-loader/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/python-loader/python_loader.so +lib/gnumeric/%%VERSION%%/plugins/python-loader/ui-console-menu.xml +lib/gnumeric/%%VERSION%%/plugins/qpro/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/qpro/qpro.so +lib/gnumeric/%%VERSION%%/plugins/sample_datasource/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/sample_datasource/sample_datasource.so +lib/gnumeric/%%VERSION%%/plugins/sc/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/sc/sc.so +lib/gnumeric/%%VERSION%%/plugins/sylk/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/sylk/sylk.so +lib/gnumeric/%%VERSION%%/plugins/uihello/hello.xml +lib/gnumeric/%%VERSION%%/plugins/uihello/plugin.so +lib/gnumeric/%%VERSION%%/plugins/uihello/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/xbase/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/xbase/xbase.so +lib/gnumeric/%%VERSION%%/plugins/xml_sax/plugin.xml +lib/gnumeric/%%VERSION%%/plugins/xml_sax/xml_sax.so +libdata/bonobo/servers/GNOME_Gnumeric.server +libexec/gnumeric-component +share/gnome/applications/gnumeric.desktop +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/3D/.category +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/3D/autoformat.3D.button.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/3D/autoformat.3D.list.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Classical/.category +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Classical/autoformat.Classical.cool.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Classical/autoformat.Classical.simple.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Classical/autoformat.Classical.trendy.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Colourful/.category +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Colourful/autoformat.Colourful.banana.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Colourful/autoformat.Colourful.black.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Colourful/autoformat.Colourful.blue.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Colourful/autoformat.Colourful.orange.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Colourful/autoformat.Colourful.vanilla.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Financial/.category +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Financial/autoformat.Financial.basic.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Financial/autoformat.Financial.desert.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Financial/autoformat.Financial.ice.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Financial/autoformat.Financial.modern.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Financial/autoformat.Financial.purple.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/General/.category +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/General/autoformat.General.advanced.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/General/autoformat.General.basic.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/General/autoformat.General.empty.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/General/autoformat.General.table.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/List/.category +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/List/autoformat.List.basic.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/List/autoformat.List.green.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/List/autoformat.List.lila.xml +share/gnome/gnumeric/%%VERSION%%/autoformat-templates/List/autoformat.List.simple.xml +share/gnome/gnumeric/%%VERSION%%/glade/advanced-filter.glade +share/gnome/gnumeric/%%VERSION%%/glade/anova-one.glade +share/gnome/gnumeric/%%VERSION%%/glade/anova-two.glade +share/gnome/gnumeric/%%VERSION%%/glade/autocorrect.glade +share/gnome/gnumeric/%%VERSION%%/glade/autofilter-expression.glade +share/gnome/gnumeric/%%VERSION%%/glade/autofilter-top10.glade +share/gnome/gnumeric/%%VERSION%%/glade/autoformat.glade +share/gnome/gnumeric/%%VERSION%%/glade/autosave.glade +share/gnome/gnumeric/%%VERSION%%/glade/cell-comment.glade +share/gnome/gnumeric/%%VERSION%%/glade/cell-format.glade +share/gnome/gnumeric/%%VERSION%%/glade/cell-sort.glade +share/gnome/gnumeric/%%VERSION%%/glade/col-width.glade +share/gnome/gnumeric/%%VERSION%%/glade/colrow.glade +share/gnome/gnumeric/%%VERSION%%/glade/consolidate.glade +share/gnome/gnumeric/%%VERSION%%/glade/correlation.glade +share/gnome/gnumeric/%%VERSION%%/glade/covariance.glade +share/gnome/gnumeric/%%VERSION%%/glade/delete-cells.glade +share/gnome/gnumeric/%%VERSION%%/glade/descriptive-stats.glade +share/gnome/gnumeric/%%VERSION%%/glade/dialog-stf-export.glade +share/gnome/gnumeric/%%VERSION%%/glade/dialog-stf.glade +share/gnome/gnumeric/%%VERSION%%/glade/dialog-zoom.glade +share/gnome/gnumeric/%%VERSION%%/glade/exp-smoothing.glade +share/gnome/gnumeric/%%VERSION%%/glade/fill-series.glade +share/gnome/gnumeric/%%VERSION%%/glade/font-sel.glade +share/gnome/gnumeric/%%VERSION%%/glade/format-selector.glade +share/gnome/gnumeric/%%VERSION%%/glade/formula-guru.glade +share/gnome/gnumeric/%%VERSION%%/glade/fourier-analysis.glade +share/gnome/gnumeric/%%VERSION%%/glade/function-select.glade +share/gnome/gnumeric/%%VERSION%%/glade/goalseek.glade +share/gnome/gnumeric/%%VERSION%%/glade/gog-axis-prefs.glade +share/gnome/gnumeric/%%VERSION%%/glade/gog-guru.glade +share/gnome/gnumeric/%%VERSION%%/glade/gog-style-prefs.glade +share/gnome/gnumeric/%%VERSION%%/glade/goto.glade +share/gnome/gnumeric/%%VERSION%%/glade/gradient_n2s.png +share/gnome/gnumeric/%%VERSION%%/glade/gradient_ne2sw.png +share/gnome/gnumeric/%%VERSION%%/glade/gradient_nw2se.png +share/gnome/gnumeric/%%VERSION%%/glade/gradient_w2e.png +share/gnome/gnumeric/%%VERSION%%/glade/hf-config.glade +share/gnome/gnumeric/%%VERSION%%/glade/histogram.glade +share/gnome/gnumeric/%%VERSION%%/glade/hyperlink.glade +share/gnome/gnumeric/%%VERSION%%/glade/insert-cells.glade +share/gnome/gnumeric/%%VERSION%%/glade/mean-tests.glade +share/gnome/gnumeric/%%VERSION%%/glade/merge.glade +share/gnome/gnumeric/%%VERSION%%/glade/moving-averages.glade +share/gnome/gnumeric/%%VERSION%%/glade/names.glade +share/gnome/gnumeric/%%VERSION%%/glade/pivottable.glade +share/gnome/gnumeric/%%VERSION%%/glade/plugin-manager.glade +share/gnome/gnumeric/%%VERSION%%/glade/preferences.glade +share/gnome/gnumeric/%%VERSION%%/glade/print.glade +share/gnome/gnumeric/%%VERSION%%/glade/random-generation.glade +share/gnome/gnumeric/%%VERSION%%/glade/rank.glade +share/gnome/gnumeric/%%VERSION%%/glade/regression.glade +share/gnome/gnumeric/%%VERSION%%/glade/row-height.glade +share/gnome/gnumeric/%%VERSION%%/glade/sampling.glade +share/gnome/gnumeric/%%VERSION%%/glade/scenario-add.glade +share/gnome/gnumeric/%%VERSION%%/glade/scenario-manager.glade +share/gnome/gnumeric/%%VERSION%%/glade/search-replace.glade +share/gnome/gnumeric/%%VERSION%%/glade/search.glade +share/gnome/gnumeric/%%VERSION%%/glade/sheet-order.glade +share/gnome/gnumeric/%%VERSION%%/glade/shuffle.glade +share/gnome/gnumeric/%%VERSION%%/glade/simulation.glade +share/gnome/gnumeric/%%VERSION%%/glade/so-arrow.glade +share/gnome/gnumeric/%%VERSION%%/glade/so-checkbox.glade +share/gnome/gnumeric/%%VERSION%%/glade/so-fill.glade +share/gnome/gnumeric/%%VERSION%%/glade/so-frame.glade +share/gnome/gnumeric/%%VERSION%%/glade/so-scrollbar.glade +share/gnome/gnumeric/%%VERSION%%/glade/solver.glade +share/gnome/gnumeric/%%VERSION%%/glade/summary.glade +share/gnome/gnumeric/%%VERSION%%/glade/tabulate.glade +share/gnome/gnumeric/%%VERSION%%/glade/variance-tests.glade +share/gnome/gnumeric/%%VERSION%%/glade/view.glade +share/gnome/gnumeric/%%VERSION%%/glade/workbook-attr.glade +share/gnome/gnumeric/%%VERSION%%/gnome +share/gnome/gnumeric/%%VERSION%%/gnome-2.0/ui/GNOME_Gnumeric.xml +share/gnome/gnumeric/%%VERSION%%/gnome-2.0/ui/GNOME_Gnumeric_Component.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/about-authors.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/about-compiling.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/about-get-involved.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/about-history.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/about-license.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/analysis-complexNumbers.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/analysis-goalseek.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/analysis-overview.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/analysis-scenarios.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/analysis-simulation.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/analysis-solver.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/analysis-statistical.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/appendix-glossary.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/appendix-keybindings.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/configuration-localization.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/configuration-overview.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/configuration-plugins.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/configuration-preferences.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/configuration-toolbars.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-commentNlink.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-delete.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-entry-advanced.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-entry.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-format.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-generate.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-insert.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-modify.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-move-copy.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-overview.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-selections.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/data-types.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/datasource.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/extending-code.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/extending-functions.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/extending-overview.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/extending-plugins.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/extending-python.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/advanced-filter-1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/advanced-filter-2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysis-tools.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ANOVA1-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ANOVA1-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ANOVA2w-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ANOVA2w-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ANOVA2wo-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ANOVA2wo-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-correlation-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-correlation-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-correlation-ex3.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-correlation.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-covariance-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-covariance-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-covariance.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-descstats-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-descstats-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-descstats.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-fourier-formula.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-fourier.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ftest-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ftest-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ftest.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-histogram-bins.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-histogram-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-histogram-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-histogram-ex3.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-histogram.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-moving-average-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-moving-average-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-moving-average.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-outputoptions.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-random-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-random-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-random.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ranges.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-rank-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-rank-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-rank.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-regression-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-regression-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-regression-ex3.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-regression.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-sampling-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-sampling-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-sampling.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-smoothing-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-smoothing-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-smoothing.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-tools.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ttest-equal-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ttest-equal-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ttest-equal.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ttest-paired-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ttest-paired-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ttest-paired.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ttest-unequal-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ttest-unequal-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ttest-unequal.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ttest.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ztest-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ztest-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/analysistools-ztest.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/autofill-1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/autofill-10.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/autofill-2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/autofill-3.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/autofill-4.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/autofill-5.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/autofill-6.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/autofill-7.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/autofill-8.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/autofill-9.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-align-center.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-align-left.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-align-right.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-arrow.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-bold.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-borders.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-center-across-selection.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-checkbox.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-combo.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-copy.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-cut.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-decrease-indent.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-decrease-precision.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-equals.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-fill.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-font-size.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-font-type.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-frame.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-function.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-graph.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-increase-indent.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-increase-precision.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-insert-component.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-insert-object.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-italic.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-label.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-line.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-list.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-merge.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-money.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-new.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-open.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-oval.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-paste.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-percent.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-preview.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-print.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-rectangle.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-redo-and-history.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-save.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-sort-az.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-sort-za.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-split.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-sum.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-text-colour.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-thousands.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-underline.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-undo-and-history.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/button-zoom.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/buttonGroup-bonobo.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/buttonGroup-filesystem.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/buttonGroup-printing.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/cell-grid.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/cell-selected.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/cell-with-text.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/cells-1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/cells-2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/dialog-auto-correct.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/dialog-autosave.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/dialog-border.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/dialog-filter.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/dialog-graphing.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/dialog-insert-object.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/dialog-summary.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/file-dialog.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/file-formats-import-list.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-csv-export-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-csv-export-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-csv-import-ex1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-csv-import-ex2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-csv-import-ex3.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-csv-import-ex4.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-csv-import-ex5.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-dvi-example.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-formats-list.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-html-example.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-html32-example.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-html40-example.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-latex-example.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/files-xml-example.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/gnumeric-empty.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/gnumeric-labelled.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/gnumeric-power-example.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/gnumeric-rearranged.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/info-area.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/label-five.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/label-four.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/label-one.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/label-seven.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/label-six.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/label-three.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/label-transparent.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/label-two.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-context-col-row-header.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-context-grid.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-context-object.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-context-tabs.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-context-toolbars.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-data-labelled.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-edit-labelled.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-file-labelled.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-format-torn-off.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-help-torn-off.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-insert-labelled.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-tools-labelled.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-torn-off.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menu-view-labelled.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/menubar.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/number-format-border-dialog.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/number-format-buttonbar.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/number-format-color-dialog.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/number-format-dialog.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/number-format-font-dialog.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/number-format-justification-dialog-2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/number-format-justification.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/number-format-protection.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/number-format-validation-warning.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/number-format-validation.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_arrow_left_std.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_cross.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_cross_hair.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_cross_wide.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_diagonal_resize.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_double_horizontal_arrow.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_double_vertical_arrow.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_four_way_arrow.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_hand_closed.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_hand_left.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_hand_open.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_left.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_resize_multiple.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_right.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_text_edit.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_zoom_in.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/pointer_zoom_out.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-large.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-preview-back.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-preview-first.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-preview-fit.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-preview-fittall.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-preview-fitwide.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-preview-last.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-preview-next.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-preview-toolbar.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-preview-zoomin.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-preview-zoomout.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-preview.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print-worksheet.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/print.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/printing-preview.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/printing-setup-header-config.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/printing-setup-header.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/printing-setup-margins.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/printing-setup-page-1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/printing-setup-page.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/printing-setup-sheet.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/selection-1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/selection-10.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/selection-2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/selection-3.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/selection-4.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/selection-5.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/selection-6.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/selection-7.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/selection-8.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/selection-9.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/solver-01.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/solver-02.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/solver-03.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/solver-04.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/solver-05.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/toolbar-format.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/toolbar-object.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/toolbar-standard.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/toolbar.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/toolbars.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/worksheet-all-1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/worksheet-cols-1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/worksheet-data-1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/worksheet-data-2.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/worksheet-data-3.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/worksheet-data-4.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/worksheet-info-1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/worksheet-rows-1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/worksheet-running-calc-1.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/zoom-dialog.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/zoom-toolbar.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures/zoom.png +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/files-autosave.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/files-opening.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/files-overview.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/files-saving.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/functions.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/gnumeric.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/graphics-drawings.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/graphics-images.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/graphics-overview.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/graphics-plots.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/gui-menus.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/gui-mouse.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/gui-other-elements.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/gui-overview.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/gui-toolbars.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/legal.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/manual-usage.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/morehelp.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/printing.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/quick-start.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/welcome.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/workbooks.xml +share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/worksheets.xml +share/gnome/gnumeric/%%VERSION%%/idl/GNOME_Gnumeric.idl +share/gnome/gnumeric/%%VERSION%%/templates/invoice.gnumeric +share/gnome/gnumeric/%%VERSION%%/templates/loan.gnumeric +share/gnome/gnumeric/%%VERSION%%/templates/mileage.gnumeric +share/gnome/gnumeric/%%VERSION%%/templates/purchase_order.gnumeric +share/gnome/mc/templates/gnumeric.desktop +share/gnome/mime-info/gnumeric.keys +share/gnome/mime-info/gnumeric.mime +share/gnome/omf/gnumeric/gnumeric-C.omf +@exec scrollkeeper-install -q %D/share/gnome/omf/gnumeric/gnumeric-C.omf 2>/dev/null || /usr/bin/true +share/gnome/pixmaps/gnome-application-vnd.lotus-1-2-3.png +share/gnome/pixmaps/gnome-application-x-applix-spreadsheet.png +share/gnome/pixmaps/gnome-application-x-generic-spreadsheet.png +share/gnome/pixmaps/gnome-application-x-gnumeric.png +share/gnome/pixmaps/gnome-application-x-xls.png +share/gnome/pixmaps/gnome-gnumeric.png +share/gnome/pixmaps/gnumeric/area.xpm +share/gnome/pixmaps/gnumeric/bar.xpm +share/gnome/pixmaps/gnumeric/bubble.xpm +share/gnome/pixmaps/gnumeric/chart_area_1_1.png +share/gnome/pixmaps/gnumeric/chart_area_1_2.png +share/gnome/pixmaps/gnumeric/chart_area_1_3.png +share/gnome/pixmaps/gnumeric/chart_bar_1_1.png +share/gnome/pixmaps/gnumeric/chart_bar_1_2.png +share/gnome/pixmaps/gnumeric/chart_bar_1_3.png +share/gnome/pixmaps/gnumeric/chart_bar_2_1.png +share/gnome/pixmaps/gnumeric/chart_bar_2_2.png +share/gnome/pixmaps/gnumeric/chart_bar_2_3.png +share/gnome/pixmaps/gnumeric/chart_bubble_1_1.png +share/gnome/pixmaps/gnumeric/chart_column_1_1.png +share/gnome/pixmaps/gnumeric/chart_column_1_2.png +share/gnome/pixmaps/gnumeric/chart_column_1_3.png +share/gnome/pixmaps/gnumeric/chart_column_2_1.png +share/gnome/pixmaps/gnumeric/chart_column_2_2.png +share/gnome/pixmaps/gnumeric/chart_column_2_3.png +share/gnome/pixmaps/gnumeric/chart_column_3_1.png +share/gnome/pixmaps/gnumeric/chart_cone_1_1.png +share/gnome/pixmaps/gnumeric/chart_cone_1_2.png +share/gnome/pixmaps/gnumeric/chart_cone_1_3.png +share/gnome/pixmaps/gnumeric/chart_cone_2_1.png +share/gnome/pixmaps/gnumeric/chart_cone_2_2.png +share/gnome/pixmaps/gnumeric/chart_cone_2_3.png +share/gnome/pixmaps/gnumeric/chart_cone_3_1.png +share/gnome/pixmaps/gnumeric/chart_cylinder_1_1.png +share/gnome/pixmaps/gnumeric/chart_cylinder_1_2.png +share/gnome/pixmaps/gnumeric/chart_cylinder_1_3.png +share/gnome/pixmaps/gnumeric/chart_cylinder_2_1.png +share/gnome/pixmaps/gnumeric/chart_cylinder_2_2.png +share/gnome/pixmaps/gnumeric/chart_cylinder_2_3.png +share/gnome/pixmaps/gnumeric/chart_cylinder_3_1.png +share/gnome/pixmaps/gnumeric/chart_line_1_1.png +share/gnome/pixmaps/gnumeric/chart_line_1_2.png +share/gnome/pixmaps/gnumeric/chart_line_1_3.png +share/gnome/pixmaps/gnumeric/chart_line_2_1.png +share/gnome/pixmaps/gnumeric/chart_line_2_2.png +share/gnome/pixmaps/gnumeric/chart_line_2_3.png +share/gnome/pixmaps/gnumeric/chart_line_3_1.png +share/gnome/pixmaps/gnumeric/chart_pie_1_1.png +share/gnome/pixmaps/gnumeric/chart_pie_1_2.png +share/gnome/pixmaps/gnumeric/chart_pie_1_3.png +share/gnome/pixmaps/gnumeric/chart_pie_2_1.png +share/gnome/pixmaps/gnumeric/chart_pie_2_2.png +share/gnome/pixmaps/gnumeric/chart_pie_2_3.png +share/gnome/pixmaps/gnumeric/chart_pyramid_1_1.png +share/gnome/pixmaps/gnumeric/chart_pyramid_1_2.png +share/gnome/pixmaps/gnumeric/chart_pyramid_1_3.png +share/gnome/pixmaps/gnumeric/chart_pyramid_2_1.png +share/gnome/pixmaps/gnumeric/chart_pyramid_2_2.png +share/gnome/pixmaps/gnumeric/chart_pyramid_2_3.png +share/gnome/pixmaps/gnumeric/chart_pyramid_3_1.png +share/gnome/pixmaps/gnumeric/chart_ring_1_1.png +share/gnome/pixmaps/gnumeric/chart_ring_1_2.png +share/gnome/pixmaps/gnumeric/chart_scatter_1_1.png +share/gnome/pixmaps/gnumeric/chart_scatter_2_1.png +share/gnome/pixmaps/gnumeric/chart_scatter_2_2.png +share/gnome/pixmaps/gnumeric/chart_scatter_3_1.png +share/gnome/pixmaps/gnumeric/chart_scatter_3_2.png +share/gnome/pixmaps/gnumeric/chart_stock_1_1.png +share/gnome/pixmaps/gnumeric/chart_stock_1_2.png +share/gnome/pixmaps/gnumeric/chart_stock_2_1.png +share/gnome/pixmaps/gnumeric/chart_stock_2_2.png +share/gnome/pixmaps/gnumeric/column.xpm +share/gnome/pixmaps/gnumeric/doughnut.xpm +share/gnome/pixmaps/gnumeric/down-right.png +share/gnome/pixmaps/gnumeric/gnome-application-vnd.lotus-1-2-3.png +share/gnome/pixmaps/gnumeric/gnome-application-x-applix-spreadsheet.png +share/gnome/pixmaps/gnumeric/gnome-application-x-generic-spreadsheet.png +share/gnome/pixmaps/gnumeric/gnome-application-x-gnumeric.png +share/gnome/pixmaps/gnumeric/gnome-application-x-xls.png +share/gnome/pixmaps/gnumeric/gnome-gnumeric.png +share/gnome/pixmaps/gnumeric/linegraph.xpm +share/gnome/pixmaps/gnumeric/orient-horizontal.png +share/gnome/pixmaps/gnumeric/orient-vertical.png +share/gnome/pixmaps/gnumeric/pie.xpm +share/gnome/pixmaps/gnumeric/radar.xpm +share/gnome/pixmaps/gnumeric/right-down.png +share/gnome/pixmaps/gnumeric/scatter.xpm +share/gnome/pixmaps/gnumeric/stf-druid.png +share/gnome/pixmaps/gnumeric/stock.xpm +share/gnome/pixmaps/gnumeric/surface.xpm +share/locale/am/LC_MESSAGES/gnumeric.mo +share/locale/az/LC_MESSAGES/gnumeric.mo +share/locale/bg/LC_MESSAGES/gnumeric.mo +share/locale/ca/LC_MESSAGES/gnumeric.mo +share/locale/cs/LC_MESSAGES/gnumeric.mo +share/locale/da/LC_MESSAGES/gnumeric.mo +share/locale/de/LC_MESSAGES/gnumeric.mo +share/locale/el/LC_MESSAGES/gnumeric.mo +share/locale/en_CA/LC_MESSAGES/gnumeric.mo +share/locale/en_GB/LC_MESSAGES/gnumeric.mo +share/locale/es/LC_MESSAGES/gnumeric.mo +share/locale/et/LC_MESSAGES/gnumeric.mo +share/locale/fi/LC_MESSAGES/gnumeric.mo +share/locale/fr/LC_MESSAGES/gnumeric.mo +share/locale/ga/LC_MESSAGES/gnumeric.mo +share/locale/gl/LC_MESSAGES/gnumeric.mo +share/locale/he/LC_MESSAGES/gnumeric.mo +share/locale/hi/LC_MESSAGES/gnumeric.mo +share/locale/hr/LC_MESSAGES/gnumeric.mo +share/locale/hu/LC_MESSAGES/gnumeric.mo +share/locale/it/LC_MESSAGES/gnumeric.mo +share/locale/ja/LC_MESSAGES/gnumeric.mo +share/locale/ko/LC_MESSAGES/gnumeric.mo +share/locale/lv/LC_MESSAGES/gnumeric.mo +share/locale/ml/LC_MESSAGES/gnumeric.mo +share/locale/ms/LC_MESSAGES/gnumeric.mo +share/locale/nl/LC_MESSAGES/gnumeric.mo +share/locale/nn/LC_MESSAGES/gnumeric.mo +share/locale/no/LC_MESSAGES/gnumeric.mo +share/locale/pl/LC_MESSAGES/gnumeric.mo +share/locale/pt/LC_MESSAGES/gnumeric.mo +share/locale/pt_BR/LC_MESSAGES/gnumeric.mo +share/locale/ro/LC_MESSAGES/gnumeric.mo +share/locale/ru/LC_MESSAGES/gnumeric.mo +share/locale/sk/LC_MESSAGES/gnumeric.mo +share/locale/sr/LC_MESSAGES/gnumeric.mo +share/locale/sr@Latn/LC_MESSAGES/gnumeric.mo +share/locale/sv/LC_MESSAGES/gnumeric.mo +share/locale/tr/LC_MESSAGES/gnumeric.mo +share/locale/uk/LC_MESSAGES/gnumeric.mo +share/locale/vi/LC_MESSAGES/gnumeric.mo +share/locale/zh_CN/LC_MESSAGES/gnumeric.mo +share/locale/zh_TW/LC_MESSAGES/gnumeric.mo +@dirrm share/gnome/pixmaps/gnumeric +@dirrm share/gnome/omf/gnumeric +@dirrm share/gnome/gnumeric/%%VERSION%%/templates +@dirrm share/gnome/gnumeric/%%VERSION%%/idl +@dirrm share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C/figures +@dirrm share/gnome/gnumeric/%%VERSION%%/help/gnumeric/C +@dirrm share/gnome/gnumeric/%%VERSION%%/help/gnumeric +@dirrm share/gnome/gnumeric/%%VERSION%%/help +@dirrm share/gnome/gnumeric/%%VERSION%%/gnome-2.0/ui +@dirrm share/gnome/gnumeric/%%VERSION%%/gnome-2.0 +@dirrm share/gnome/gnumeric/%%VERSION%%/glade +@dirrm share/gnome/gnumeric/%%VERSION%%/autoformat-templates/List +@dirrm share/gnome/gnumeric/%%VERSION%%/autoformat-templates/General +@dirrm share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Financial +@dirrm share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Colourful +@dirrm share/gnome/gnumeric/%%VERSION%%/autoformat-templates/Classical +@dirrm share/gnome/gnumeric/%%VERSION%%/autoformat-templates/3D +@dirrm share/gnome/gnumeric/%%VERSION%%/autoformat-templates +@dirrm share/gnome/gnumeric/%%VERSION%% +@dirrm share/gnome/gnumeric +@dirrm lib/gnumeric/%%VERSION%%/plugins/xml_sax +@dirrm lib/gnumeric/%%VERSION%%/plugins/xbase +@dirrm lib/gnumeric/%%VERSION%%/plugins/uihello +@dirrm lib/gnumeric/%%VERSION%%/plugins/sylk +@dirrm lib/gnumeric/%%VERSION%%/plugins/sc +@dirrm lib/gnumeric/%%VERSION%%/plugins/sample_datasource +@dirrm lib/gnumeric/%%VERSION%%/plugins/qpro +@dirrm lib/gnumeric/%%VERSION%%/plugins/python-loader +@dirrm lib/gnumeric/%%VERSION%%/plugins/py-func +@dirrm lib/gnumeric/%%VERSION%%/plugins/plot_xy +@dirrm lib/gnumeric/%%VERSION%%/plugins/plot_pie +@dirrm lib/gnumeric/%%VERSION%%/plugins/plot_barcol +@dirrm lib/gnumeric/%%VERSION%%/plugins/plan_perfect +@dirrm lib/gnumeric/%%VERSION%%/plugins/openoffice +@dirrm lib/gnumeric/%%VERSION%%/plugins/oleo +@dirrm lib/gnumeric/%%VERSION%%/plugins/numtheory +@dirrm lib/gnumeric/%%VERSION%%/plugins/mps +@dirrm lib/gnumeric/%%VERSION%%/plugins/lotus +@dirrm lib/gnumeric/%%VERSION%%/plugins/html +@dirrm lib/gnumeric/%%VERSION%%/plugins/gnome-glossary +@dirrm lib/gnumeric/%%VERSION%%/plugins/gnome-db +@dirrm lib/gnumeric/%%VERSION%%/plugins/gdaif +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-string +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-stat +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-random +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-math +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-lookup +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-logical +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-info +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-financial +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-eng +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-date +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-database +@dirrm lib/gnumeric/%%VERSION%%/plugins/fn-complex +@dirrm lib/gnumeric/%%VERSION%%/plugins/excel +@dirrm lib/gnumeric/%%VERSION%%/plugins/dif +@dirrm lib/gnumeric/%%VERSION%%/plugins/derivatives +@dirrm lib/gnumeric/%%VERSION%%/plugins/corba +@dirrm lib/gnumeric/%%VERSION%%/plugins/applix +@dirrm lib/gnumeric/%%VERSION%%/plugins +@dirrm lib/gnumeric/%%VERSION%% +@dirrm lib/gnumeric +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/undo +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/printsetup +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/plugins +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/plugin/latex +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/plugin +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/functionselector +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/dialogs/rs +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/dialogs +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/cut-and-paste +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/xml +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/workbook +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/sort/dialog +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/sort/default +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/sort +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/gui/window +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/gui/screen +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/gui/editing +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/gui +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/file/save +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/file/history +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/file +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core/defaultfont +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/core +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/autoformat +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric/autocorrect +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnumeric +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-settings/gnumeric +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-settings +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/undo +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/printsetup +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/plugins +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/plugin/latex +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/plugin +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/functionselector +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/file/history +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/file +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/dialogs/rs +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/dialogs +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/cut-and-paste +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/xml +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/workbook +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/sort/dialog +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/sort/default +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/sort +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/gui/window +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/gui/screen +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/gui/editing +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/gui +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/file/save +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/file/history +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/file +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core/defaultfont +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/core +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/autoformat +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric/autocorrect +@dirrm etc/gconf/gconf.xml.defaults/apps/gnumeric +@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-settings/gnumeric +@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-settings +@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnumeric/gnumeric-C.omf 2>/dev/null || /usr/bin/true |