Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Apr 2011 03:13:32 -0500
From:      Zhihao Yuan <lichray@gmail.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/156712: math/gnumeric: can be compiled without gnome
Message-ID:  <4dba732f.29d7e70a.71d2.3df0@mx.google.com>
Resent-Message-ID: <201104290820.p3T8KAXn083620@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         156712
>Category:       ports
>Synopsis:       math/gnumeric: can be compiled without gnome
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Apr 29 08:20:10 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Zhihao Yuan
>Release:        FreeBSD 8.2-STABLE amd64
>Organization:
Northern Illinois University
>Environment:
System: FreeBSD compaq.yuetime 8.2-STABLE FreeBSD 8.2-STABLE #0: Mon Mar 14 02:51:28 CDT 2011 root@compaq.yuetime:/usr/obj/usr/src/sys/HOUKAGO amd64


	
>Description:
	
	Currently, gnumeric depends on libgnome. Actually, this is not needed for a statistics software. I uses WANT_GNOME to detect whether we should enabled the gnome-related features for gnumeric.

	This PR depends on ports/156708 (to get rid of gconf).
>How-To-Repeat:
	
>Fix:

	
	1. uses WANT_GNOME to detect the libgnome;
	2. detects whether scrollkeeper is installed; if not, do not install scrollkeeper docs;
	3. adds MAKE_JOBS_SAFE;
	4. eliminates the empty gnumeric/VERSION/doc directory (for windows help file only);

	Note that when doing deinstall, there is a message say:

		No schema files found: removed existing output file.

	The gsettings schema files are installed, and are removed correctly. If you know what this message mean, please help me. Thanks.

--- patch-gnumeric_1 begins here ---
diff -ruN --exclude=CVS /usr/ports/math/gnumeric.orig/Makefile /usr/ports/math/gnumeric/Makefile
--- /usr/ports/math/gnumeric.orig/Makefile	2011-04-28 21:02:48.566332602 -0500
+++ /usr/ports/math/gnumeric/Makefile	2011-04-29 02:37:08.038233000 -0500
@@ -9,6 +9,7 @@
 
 PORTNAME=	gnumeric
 PORTVERSION=	1.10.14
+PORTREVISION=	1
 CATEGORIES=	math gnome
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome2
@@ -24,21 +25,21 @@
 USE_BZIP2=	yes
 USE_GETTEXT=	yes
 USE_GMAKE=	yes
+WANT_GNOME=	yes
 USE_GNOME=	gnomeprefix intlhack gnomehack gnomehier \
-		libgsf_gnome pygtk2 desktopfileutils libgnomeui
+		pygtk2 desktopfileutils
 USE_PYTHON=	yes
 INSTALLS_OMF=	yes
 USE_LDCONFIG=	yes
 WANT_PERL=	yes
 INSTALLS_ICONS=	yes
 GNU_CONFIGURE=	yes
-CONFIGURE_ARGS=	--with-gnome
-CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
-		LIBS="-L${LOCALBASE}/lib -liconv ${PTHREAD_LIBS}" \
-		python_prog=${PYTHON_VERSION}
 
-GCONF_SCHEMAS=	gnumeric-dialogs.schemas gnumeric-general.schemas \
-		gnumeric-plugins.schemas
+MAKE_ARGS+=	CPPFLAGS+="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
+			LIBS+="-L${LOCALBASE}/lib -liconv ${PTHREAD_LIBS}" \
+			python_prog=${PYTHON_VERSION}
+MAKE_JOBS_SAFE=	yes
+
 GLIB_SCHEMAS=	org.gnome.gnumeric.dialogs.gschema.xml \
 		org.gnome.gnumeric.gschema.xml \
 		org.gnome.gnumeric.plugin.gschema.xml
@@ -52,6 +53,24 @@
 
 .include <bsd.port.pre.mk>
 
+.if ${HAVE_GNOME:Mlibgnomeui}!=""
+CONFIGURE_ARGS+=	--with-gnome
+USE_GNOME+=	libgnomeui libgsf_gnome
+.else
+USE_GNOME+=	libgsf
+.endif
+
+.if !exists(${LOCALBASE}/bin/scrollkeeper-update)
+.undef INSTALLS_OMF
+CONFIGURE_ARGS+=	--disable-schemas-install
+EXTRA_PATCHES+=	${FILESDIR}/extra-patch-noscrollkeeper
+PLIST_SUB+=		OMF="@comment "
+.else
+PLIST_SUB+=		OMF=""
+GCONF_SCHEMAS=	gnumeric-dialogs.schemas gnumeric-general.schemas \
+		gnumeric-plugins.schemas
+.endif
+
 .if defined(WITH_PERL)
 USE_PERL5=		yes
 PLIST_SUB+=		PERL=""
diff -ruN --exclude=CVS /usr/ports/math/gnumeric.orig/files/extra-patch-noscrollkeeper /usr/ports/math/gnumeric/files/extra-patch-noscrollkeeper
--- /usr/ports/math/gnumeric.orig/files/extra-patch-noscrollkeeper	1969-12-31 18:00:00.000000000 -0600
+++ /usr/ports/math/gnumeric/files/extra-patch-noscrollkeeper	2011-04-29 02:37:08.038233000 -0500
@@ -0,0 +1,11 @@
+--- doc/C/Makefile.in.orig	2011-04-29 02:05:05.945159618 -0500
++++ doc/C/Makefile.in	2011-04-29 02:20:08.420332865 -0500
+@@ -750,7 +750,7 @@ installdirs-am:
+ 	for dir in "$(DESTDIR)$(manpagedir)" "$(DESTDIR)$(winhelpdir)"; do \
+ 	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
+ 	done
+-install: install-recursive
++install: install-manpageDATA
+ install-exec: install-exec-recursive
+ install-data: install-data-recursive
+ uninstall: uninstall-recursive
diff -ruN --exclude=CVS /usr/ports/math/gnumeric.orig/pkg-plist /usr/ports/math/gnumeric/pkg-plist
--- /usr/ports/math/gnumeric.orig/pkg-plist	2011-04-28 21:02:48.555328703 -0500
+++ /usr/ports/math/gnumeric/pkg-plist	2011-04-29 02:37:08.038233000 -0500
@@ -401,449 +401,449 @@
 share/gnumeric/%%VERSION%%/ui/view.ui
 share/gnumeric/%%VERSION%%/ui/wilcoxon-mann-whitney.ui
 share/gnumeric/%%VERSION%%/ui/workbook-attr.ui
-share/gnome/help/gnumeric/C/about-authors.xml
-share/gnome/help/gnumeric/C/about-history.xml
-share/gnome/help/gnumeric/C/about-license.xml
-share/gnome/help/gnumeric/C/analysis-complexNumbers.xml
-share/gnome/help/gnumeric/C/analysis-goalseek.xml
-share/gnome/help/gnumeric/C/analysis-overview.xml
-share/gnome/help/gnumeric/C/analysis-scenarios.xml
-share/gnome/help/gnumeric/C/analysis-simulation.xml
-share/gnome/help/gnumeric/C/analysis-solver.xml
-share/gnome/help/gnumeric/C/analysis-statistical.xml
-share/gnome/help/gnumeric/C/appendix-glossary.xml
-share/gnome/help/gnumeric/C/appendix-keybindings.xml
-share/gnome/help/gnumeric/C/bugs.xml
-share/gnome/help/gnumeric/C/configuration-localization.xml
-share/gnome/help/gnumeric/C/configuration-overview.xml
-share/gnome/help/gnumeric/C/configuration-plugins.xml
-share/gnome/help/gnumeric/C/configuration-preferences.xml
-share/gnome/help/gnumeric/C/configuration-toolbars.xml
-share/gnome/help/gnumeric/C/compiling.xml
-share/gnome/help/gnumeric/C/data-commentNlink.xml
-share/gnome/help/gnumeric/C/data-delete.xml
-share/gnome/help/gnumeric/C/data-entry-advanced.xml
-share/gnome/help/gnumeric/C/data-entry-external.xml
-share/gnome/help/gnumeric/C/data-entry.xml
-share/gnome/help/gnumeric/C/data-filter.xml
-share/gnome/help/gnumeric/C/data-format.xml
-share/gnome/help/gnumeric/C/data-generate.xml
-share/gnome/help/gnumeric/C/data-insert.xml
-share/gnome/help/gnumeric/C/data-modify.xml
-share/gnome/help/gnumeric/C/data-move-copy.xml
-share/gnome/help/gnumeric/C/data-overview.xml
-share/gnome/help/gnumeric/C/data-selections.xml
-share/gnome/help/gnumeric/C/data-types.xml
-share/gnome/help/gnumeric/C/documenting.xml
-share/gnome/help/gnumeric/C/extending-functions.xml
-share/gnome/help/gnumeric/C/extending-overview.xml
-share/gnome/help/gnumeric/C/extending-plugins.xml
-share/gnome/help/gnumeric/C/extending-python.xml
-share/gnome/help/gnumeric/C/figures/advanced-filter-1.png
-share/gnome/help/gnumeric/C/figures/advanced-filter-2.png
-share/gnome/help/gnumeric/C/figures/analysistools-ANOVA1-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-ANOVA1-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-ANOVA2w-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-ANOVA2w-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-ANOVA2wo-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-ANOVA2wo-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-correlation-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-correlation-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-correlation-ex3.png
-share/gnome/help/gnumeric/C/figures/analysistools-correlation.png
-share/gnome/help/gnumeric/C/figures/analysistools-covariance-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-covariance-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-covariance.png
-share/gnome/help/gnumeric/C/figures/analysistools-descstats-ex1-options.png
-share/gnome/help/gnumeric/C/figures/analysistools-descstats-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-descstats-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-descstats.png
-share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-a-holt-winters-formula.png
-share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-a-holt-winters-stderr.png
-share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-holt-formula.png
-share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-holt-stderr.png
-share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-hunter-formula.png
-share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-hunter-stderr.png
-share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-m-holt-winters-formula.png
-share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-m-holt-winters-stderr.png
-share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-roberts-formula.png
-share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-roberts-stderr.png
-share/gnome/help/gnumeric/C/figures/analysistools-fourier-formula.png
-share/gnome/help/gnumeric/C/figures/analysistools-fourier.png
-share/gnome/help/gnumeric/C/figures/analysistools-frequency-cats.png
-share/gnome/help/gnumeric/C/figures/analysistools-frequency-graphs.png
-share/gnome/help/gnumeric/C/figures/analysistools-frequency-results.png
-share/gnome/help/gnumeric/C/figures/analysistools-frequency.png
-share/gnome/help/gnumeric/C/figures/analysistools-ftest-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-ftest-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-ftest.png
-share/gnome/help/gnumeric/C/figures/analysistools-histogram-bins.png
-share/gnome/help/gnumeric/C/figures/analysistools-histogram-cutoffs.png
-share/gnome/help/gnumeric/C/figures/analysistools-histogram-ex4.png
-share/gnome/help/gnumeric/C/figures/analysistools-histogram-ex5.png
-share/gnome/help/gnumeric/C/figures/analysistools-histogram-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-histogram-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-histogram-ex3.png
-share/gnome/help/gnumeric/C/figures/analysistools-histogram-graphs.png
-share/gnome/help/gnumeric/C/figures/analysistools-histogram.png
-share/gnome/help/gnumeric/C/figures/analysistools-kaplan-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-kaplan-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-kaplan-ex3.png
-share/gnome/help/gnumeric/C/figures/analysistools-kaplan-groups.png
-share/gnome/help/gnumeric/C/figures/analysistools-kaplan-options.png
-share/gnome/help/gnumeric/C/figures/analysistools-kaplan.png
-share/gnome/help/gnumeric/C/figures/analysistools-moving-average-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-moving-average-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-moving-average-ex3.png
-share/gnome/help/gnumeric/C/figures/analysistools-moving-average-formula-central.png
-share/gnome/help/gnumeric/C/figures/analysistools-moving-average-formula-spencer.png
-share/gnome/help/gnumeric/C/figures/analysistools-moving-average-formula-weighted.png
-share/gnome/help/gnumeric/C/figures/analysistools-moving-average-options.png
-share/gnome/help/gnumeric/C/figures/analysistools-moving-average.png
-share/gnome/help/gnumeric/C/figures/analysistools-outputoptions.png
-share/gnome/help/gnumeric/C/figures/analysistools-random-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-random-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-random.png
-share/gnome/help/gnumeric/C/figures/analysistools-ranges.png
-share/gnome/help/gnumeric/C/figures/analysistools-rank-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-rank-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-rank.png
-share/gnome/help/gnumeric/C/figures/analysistools-regression-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-regression-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-regression-ex3.png
-share/gnome/help/gnumeric/C/figures/analysistools-regression.png
-share/gnome/help/gnumeric/C/figures/analysistools-sampling-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-sampling-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-sampling.png
-share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex3.png
-share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex4.png
-share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex5.png
-share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex6.png
-share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex7.png
-share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex8.png
-share/gnome/help/gnumeric/C/figures/analysistools-smoothing.png
-share/gnome/help/gnumeric/C/figures/analysistools-tools.png
-share/gnome/help/gnumeric/C/figures/analysistools-ttest-equal-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-ttest-equal-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-ttest-equal.png
-share/gnome/help/gnumeric/C/figures/analysistools-ttest-paired-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-ttest-paired-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-ttest-paired.png
-share/gnome/help/gnumeric/C/figures/analysistools-ttest-unequal-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-ttest-unequal-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-ttest-unequal.png
-share/gnome/help/gnumeric/C/figures/analysistools-ttest.png
-share/gnome/help/gnumeric/C/figures/analysistools-ztest-ex1.png
-share/gnome/help/gnumeric/C/figures/analysistools-ztest-ex2.png
-share/gnome/help/gnumeric/C/figures/analysistools-ztest.png
-share/gnome/help/gnumeric/C/figures/arrowhead-dimensions.png
-share/gnome/help/gnumeric/C/figures/button-align-center.png
-share/gnome/help/gnumeric/C/figures/button-align-left.png
-share/gnome/help/gnumeric/C/figures/button-align-right.png
-share/gnome/help/gnumeric/C/figures/button-arrow.png
-share/gnome/help/gnumeric/C/figures/button-bold.png
-share/gnome/help/gnumeric/C/figures/button-borders.png
-share/gnome/help/gnumeric/C/figures/button-center-across-selection.png
-share/gnome/help/gnumeric/C/figures/button-checkbox.png
-share/gnome/help/gnumeric/C/figures/button-combo.png
-share/gnome/help/gnumeric/C/figures/button-copy.png
-share/gnome/help/gnumeric/C/figures/button-cut.png
-share/gnome/help/gnumeric/C/figures/button-decrease-indent.png
-share/gnome/help/gnumeric/C/figures/button-decrease-precision.png
-share/gnome/help/gnumeric/C/figures/button-equals.png
-share/gnome/help/gnumeric/C/figures/button-fill.png
-share/gnome/help/gnumeric/C/figures/button-font-size.png
-share/gnome/help/gnumeric/C/figures/button-font-type.png
-share/gnome/help/gnumeric/C/figures/button-frame.png
-share/gnome/help/gnumeric/C/figures/button-function.png
-share/gnome/help/gnumeric/C/figures/button-graph.png
-share/gnome/help/gnumeric/C/figures/button-graphEditor-add.png
-share/gnome/help/gnumeric/C/figures/button-increase-indent.png
-share/gnome/help/gnumeric/C/figures/button-increase-precision.png
-share/gnome/help/gnumeric/C/figures/button-insert-component.png
-share/gnome/help/gnumeric/C/figures/button-insert-hyperlink.png
-share/gnome/help/gnumeric/C/figures/button-insert-object.png
-share/gnome/help/gnumeric/C/figures/button-italic.png
-share/gnome/help/gnumeric/C/figures/button-label.png
-share/gnome/help/gnumeric/C/figures/button-line.png
-share/gnome/help/gnumeric/C/figures/button-list.png
-share/gnome/help/gnumeric/C/figures/button-merge.png
-share/gnome/help/gnumeric/C/figures/button-money.png
-share/gnome/help/gnumeric/C/figures/button-new.png
-share/gnome/help/gnumeric/C/figures/button-open.png
-share/gnome/help/gnumeric/C/figures/button-oval.png
-share/gnome/help/gnumeric/C/figures/button-paste.png
-share/gnome/help/gnumeric/C/figures/button-percent.png
-share/gnome/help/gnumeric/C/figures/button-preview.png
-share/gnome/help/gnumeric/C/figures/button-print.png
-share/gnome/help/gnumeric/C/figures/button-rectangle.png
-share/gnome/help/gnumeric/C/figures/button-redo-and-history.png
-share/gnome/help/gnumeric/C/figures/button-save.png
-share/gnome/help/gnumeric/C/figures/button-scrollbar.png
-share/gnome/help/gnumeric/C/figures/button-slider.png
-share/gnome/help/gnumeric/C/figures/button-sort-az.png
-share/gnome/help/gnumeric/C/figures/button-sort-za.png
-share/gnome/help/gnumeric/C/figures/button-spin.png
-share/gnome/help/gnumeric/C/figures/button-split.png
-share/gnome/help/gnumeric/C/figures/button-sum.png
-share/gnome/help/gnumeric/C/figures/button-text-colour.png
-share/gnome/help/gnumeric/C/figures/button-thousands.png
-share/gnome/help/gnumeric/C/figures/button-underline.png
-share/gnome/help/gnumeric/C/figures/button-undo-and-history.png
-share/gnome/help/gnumeric/C/figures/button-zoom.png
-share/gnome/help/gnumeric/C/figures/cell-grid.png
-share/gnome/help/gnumeric/C/figures/cell-selected.png
-share/gnome/help/gnumeric/C/figures/cell-with-text.png
-share/gnome/help/gnumeric/C/figures/cells-1.png
-share/gnome/help/gnumeric/C/figures/cells-2.png
-share/gnome/help/gnumeric/C/figures/chart_area_1_1.png
-share/gnome/help/gnumeric/C/figures/chart_area_1_2.png
-share/gnome/help/gnumeric/C/figures/chart_area_1_3.png
-share/gnome/help/gnumeric/C/figures/chart_bar_1_1.png
-share/gnome/help/gnumeric/C/figures/chart_bar_1_2.png
-share/gnome/help/gnumeric/C/figures/chart_bar_1_3.png
-share/gnome/help/gnumeric/C/figures/chart_bubble_1_1.png
-share/gnome/help/gnumeric/C/figures/chart_column_1_1.png
-share/gnome/help/gnumeric/C/figures/chart_column_1_2.png
-share/gnome/help/gnumeric/C/figures/chart_column_1_3.png
-share/gnome/help/gnumeric/C/figures/chart_line_1_1.png
-share/gnome/help/gnumeric/C/figures/chart_line_1_2.png
-share/gnome/help/gnumeric/C/figures/chart_line_1_3.png
-share/gnome/help/gnumeric/C/figures/chart_line_2_1.png
-share/gnome/help/gnumeric/C/figures/chart_line_2_2.png
-share/gnome/help/gnumeric/C/figures/chart_line_2_3.png
-share/gnome/help/gnumeric/C/figures/chart_pie_1_1.png
-share/gnome/help/gnumeric/C/figures/chart_pie_2_1.png
-share/gnome/help/gnumeric/C/figures/chart_radar_1_1.png
-share/gnome/help/gnumeric/C/figures/chart_radar_1_2.png
-share/gnome/help/gnumeric/C/figures/chart_radar_1_3.png
-share/gnome/help/gnumeric/C/figures/chart_ring_1_1.png
-share/gnome/help/gnumeric/C/figures/chart_ring_1_2.png
-share/gnome/help/gnumeric/C/figures/chart_scatter_1_1.png
-share/gnome/help/gnumeric/C/figures/chart_scatter_3_1.png
-share/gnome/help/gnumeric/C/figures/chart_scatter_3_2.png
-share/gnome/help/gnumeric/C/figures/chart_surface_1.png
-share/gnome/help/gnumeric/C/figures/chart_surface_2.png
-share/gnome/help/gnumeric/C/figures/dialog-auto-correct.png
-share/gnome/help/gnumeric/C/figures/dialog-autosave.png
-share/gnome/help/gnumeric/C/figures/dialog-fileopen-withTags.png
-share/gnome/help/gnumeric/C/figures/dialog-filesave-compact-withTags.png
-share/gnome/help/gnumeric/C/figures/dialog-filesave-expanded-withTags.png
-share/gnome/help/gnumeric/C/figures/dialog-filter.png
-share/gnome/help/gnumeric/C/figures/dialog-insert-object.png
-share/gnome/help/gnumeric/C/figures/dialog-properties-arrow.png
-share/gnome/help/gnumeric/C/figures/dialog-properties-checkbox.png
-share/gnome/help/gnumeric/C/figures/dialog-properties-frame.png
-share/gnome/help/gnumeric/C/figures/dialog-properties-label.png
-share/gnome/help/gnumeric/C/figures/dialog-properties-line.png
-share/gnome/help/gnumeric/C/figures/dialog-properties-oval.png
-share/gnome/help/gnumeric/C/figures/dialog-properties-rectangle.png
-share/gnome/help/gnumeric/C/figures/dialog-properties-scrollbar.png
-share/gnome/help/gnumeric/C/figures/drawing-arrow.png
-share/gnome/help/gnumeric/C/figures/drawing-line.png
-share/gnome/help/gnumeric/C/figures/drawing-oval.png
-share/gnome/help/gnumeric/C/figures/drawing-rectangle.png
-share/gnome/help/gnumeric/C/figures/example-colGraph-modified.png
-share/gnome/help/gnumeric/C/figures/example-colGraph.png
-share/gnome/help/gnumeric/C/figures/example-columnSelect.png
-share/gnome/help/gnumeric/C/figures/example-data.png
-share/gnome/help/gnumeric/C/figures/files-html-example.png
-share/gnome/help/gnumeric/C/figures/files-html32-example.png
-share/gnome/help/gnumeric/C/figures/files-html40-example.png
-share/gnome/help/gnumeric/C/figures/gnumeric-icon-24.png
-share/gnome/help/gnumeric/C/figures/gnumeric-labelled.png
-share/gnome/help/gnumeric/C/figures/gnumeric-power-example.png
-share/gnome/help/gnumeric/C/figures/graph-components.png
-share/gnome/help/gnumeric/C/figures/graph-example-area.png
-share/gnome/help/gnumeric/C/figures/graph-example-bar.png
-share/gnome/help/gnumeric/C/figures/graph-example-bubble.png
-share/gnome/help/gnumeric/C/figures/graph-example-column.png
-share/gnome/help/gnumeric/C/figures/graph-example-line.png
-share/gnome/help/gnumeric/C/figures/graph-example-pie.png
-share/gnome/help/gnumeric/C/figures/graph-example-radar.png
-share/gnome/help/gnumeric/C/figures/graph-example-ring.png
-share/gnome/help/gnumeric/C/figures/graph-example-surface-t1.png
-share/gnome/help/gnumeric/C/figures/graph-example-surface-t2.png
-share/gnome/help/gnumeric/C/figures/graph-example-xyplot.png
-share/gnome/help/gnumeric/C/figures/graph-hierarchy.png
-share/gnome/help/gnumeric/C/figures/graphguru-axes-category-bounds.png
-share/gnome/help/gnumeric/C/figures/graphguru-axes-category-details.png
-share/gnome/help/gnumeric/C/figures/graphguru-axes-category-style.png
-share/gnome/help/gnumeric/C/figures/graphguru-axes-continuous-bounds.png
-share/gnome/help/gnumeric/C/figures/graphguru-axes-continuous-format.png
-share/gnome/help/gnumeric/C/figures/graphguru-backPanels-gradient.png
-share/gnome/help/gnumeric/C/figures/graphguru-backPanels-image.png
-share/gnome/help/gnumeric/C/figures/graphguru-backPanels-none.png
-share/gnome/help/gnumeric/C/figures/graphguru-backPanels-pattern.png
-share/gnome/help/gnumeric/C/figures/graphguru-components.png
-share/gnome/help/gnumeric/C/figures/graphguru-plot-barCol.png
-share/gnome/help/gnumeric/C/figures/graphguru-plot-bubble.png
-share/gnome/help/gnumeric/C/figures/graphguru-plot-pie.png
-share/gnome/help/gnumeric/C/figures/graphguru-plot-radar.png
-share/gnome/help/gnumeric/C/figures/graphguru-plot-ring.png
-share/gnome/help/gnumeric/C/figures/graphguru-series-data-bubble.png
-share/gnome/help/gnumeric/C/figures/graphguru-series-data-single.png
-share/gnome/help/gnumeric/C/figures/graphguru-series-data-xy.png
-share/gnome/help/gnumeric/C/figures/graphguru-series-error.png
-share/gnome/help/gnumeric/C/figures/graphguru-series-style-filled.png
-share/gnome/help/gnumeric/C/figures/graphguru-series-style-line.png
-share/gnome/help/gnumeric/C/figures/graphguru-title-font.png
-share/gnome/help/gnumeric/C/figures/graphical-elements-selected.png
-share/gnome/help/gnumeric/C/figures/graphical-elements-stacked.png
-share/gnome/help/gnumeric/C/figures/graphical-elements.png
-share/gnome/help/gnumeric/C/figures/graphs-types-area.png
-share/gnome/help/gnumeric/C/figures/graphs-types-bar.png
-share/gnome/help/gnumeric/C/figures/graphs-types-bubble.png
-share/gnome/help/gnumeric/C/figures/graphs-types-column.png
-share/gnome/help/gnumeric/C/figures/graphs-types-line.png
-share/gnome/help/gnumeric/C/figures/graphs-types-pie.png
-share/gnome/help/gnumeric/C/figures/graphs-types-radar.png
-share/gnome/help/gnumeric/C/figures/graphs-types-ring.png
-share/gnome/help/gnumeric/C/figures/graphs-types-stock.png
-share/gnome/help/gnumeric/C/figures/graphs-types-surface.png
-share/gnome/help/gnumeric/C/figures/graphs-types-xyplot.png
-share/gnome/help/gnumeric/C/figures/info-area.png
-share/gnome/help/gnumeric/C/figures/menu-context-col-row-header.png
-share/gnome/help/gnumeric/C/figures/menu-context-graph-order.png
-share/gnome/help/gnumeric/C/figures/menu-context-graph.png
-share/gnome/help/gnumeric/C/figures/menu-context-grid.png
-share/gnome/help/gnumeric/C/figures/menu-context-object-order.png
-share/gnome/help/gnumeric/C/figures/menu-context-object.png
-share/gnome/help/gnumeric/C/figures/menu-context-tabs.png
-share/gnome/help/gnumeric/C/figures/menu-context-toolbars.png
-share/gnome/help/gnumeric/C/figures/menu-data-labelled.png
-share/gnome/help/gnumeric/C/figures/menu-edit-delete-cells.png
-share/gnome/help/gnumeric/C/figures/menu-edit-labelled.png
-share/gnome/help/gnumeric/C/figures/menu-edit-paste-special.png
-share/gnome/help/gnumeric/C/figures/menu-edit-select.png
-share/gnome/help/gnumeric/C/figures/menu-file-labelled.png
-share/gnome/help/gnumeric/C/figures/menu-file-printarea.png
-share/gnome/help/gnumeric/C/figures/menu-format-column.png
-share/gnome/help/gnumeric/C/figures/menu-format-labelled.png
-share/gnome/help/gnumeric/C/figures/menu-format-sheet.png
-share/gnome/help/gnumeric/C/figures/menu-help-labelled.png
-share/gnome/help/gnumeric/C/figures/menu-insert-labelled.png
-share/gnome/help/gnumeric/C/figures/menu-tools-labelled.png
-share/gnome/help/gnumeric/C/figures/menu-torn-off.png
-share/gnome/help/gnumeric/C/figures/menu-view-labelled.png
-share/gnome/help/gnumeric/C/figures/menu-view-properties-dialog.png
-share/gnome/help/gnumeric/C/figures/menubar.png
-share/gnome/help/gnumeric/C/figures/number-format-border-dialog.png
-share/gnome/help/gnumeric/C/figures/number-format-color-dialog.png
-share/gnome/help/gnumeric/C/figures/number-format-dialog.png
-share/gnome/help/gnumeric/C/figures/number-format-font-dialog.png
-share/gnome/help/gnumeric/C/figures/number-format-justification-dialog-2.png
-share/gnome/help/gnumeric/C/figures/number-format-protection.png
-share/gnome/help/gnumeric/C/figures/number-format-validation-warning.png
-share/gnome/help/gnumeric/C/figures/number-format-validation.png
-share/gnome/help/gnumeric/C/figures/pointer_arrow_left_std.png
-share/gnome/help/gnumeric/C/figures/pointer_cross_hair.png
-share/gnome/help/gnumeric/C/figures/pointer_cross_wide.png
-share/gnome/help/gnumeric/C/figures/pointer_diagonal_resize.png
-share/gnome/help/gnumeric/C/figures/pointer_double_horizontal_arrow.png
-share/gnome/help/gnumeric/C/figures/pointer_double_vertical_arrow.png
-share/gnome/help/gnumeric/C/figures/pointer_four_way_arrow.png
-share/gnome/help/gnumeric/C/figures/pointer_hand_left.png
-share/gnome/help/gnumeric/C/figures/pointer_left.png
-share/gnome/help/gnumeric/C/figures/pointer_resize_multiple.png
-share/gnome/help/gnumeric/C/figures/pointer_right.png
-share/gnome/help/gnumeric/C/figures/pointer_text_edit.png
-share/gnome/help/gnumeric/C/figures/pointer_zoom_in.png
-share/gnome/help/gnumeric/C/figures/pointer_zoom_out.png
-share/gnome/help/gnumeric/C/figures/preferences-copypaste.png
-share/gnome/help/gnumeric/C/figures/preferences-files.png
-share/gnome/help/gnumeric/C/figures/preferences-font-header.png
-share/gnome/help/gnumeric/C/figures/preferences-font.png
-share/gnome/help/gnumeric/C/figures/preferences-screen.png
-share/gnome/help/gnumeric/C/figures/preferences-sorting.png
-share/gnome/help/gnumeric/C/figures/preferences-tools.png
-share/gnome/help/gnumeric/C/figures/preferences-undo.png
-share/gnome/help/gnumeric/C/figures/preferences-windows.png
-share/gnome/help/gnumeric/C/figures/print-large.png
-share/gnome/help/gnumeric/C/figures/print-preview-back.png
-share/gnome/help/gnumeric/C/figures/print-preview-first.png
-share/gnome/help/gnumeric/C/figures/print-preview-fit.png
-share/gnome/help/gnumeric/C/figures/print-preview-fitonetoone.png
-share/gnome/help/gnumeric/C/figures/print-preview-last.png
-share/gnome/help/gnumeric/C/figures/print-preview-next.png
-share/gnome/help/gnumeric/C/figures/print-preview-zoomin.png
-share/gnome/help/gnumeric/C/figures/print-preview-zoomout.png
-share/gnome/help/gnumeric/C/figures/print-worksheet-job.png
-share/gnome/help/gnumeric/C/figures/print-worksheet-paper.png
-share/gnome/help/gnumeric/C/figures/print-worksheet-printer.png
-share/gnome/help/gnumeric/C/figures/printing-preview.png
-share/gnome/help/gnumeric/C/figures/printing-setup-header-config.png
-share/gnome/help/gnumeric/C/figures/printing-setup-header.png
-share/gnome/help/gnumeric/C/figures/printing-setup-page.png
-share/gnome/help/gnumeric/C/figures/printing-setup-sheet.png
-share/gnome/help/gnumeric/C/figures/selection-1.png
-share/gnome/help/gnumeric/C/figures/selection-10.png
-share/gnome/help/gnumeric/C/figures/selection-2.png
-share/gnome/help/gnumeric/C/figures/selection-3.png
-share/gnome/help/gnumeric/C/figures/selection-4.png
-share/gnome/help/gnumeric/C/figures/selection-5.png
-share/gnome/help/gnumeric/C/figures/selection-8.png
-share/gnome/help/gnumeric/C/figures/selection-9.png
-share/gnome/help/gnumeric/C/figures/solver-01.png
-share/gnome/help/gnumeric/C/figures/solver-02.png
-share/gnome/help/gnumeric/C/figures/solver-03.png
-share/gnome/help/gnumeric/C/figures/solver-04.png
-share/gnome/help/gnumeric/C/figures/solver-05.png
-share/gnome/help/gnumeric/C/figures/textguru-export-panel1-withTags.png
-share/gnome/help/gnumeric/C/figures/textguru-export-panel2-withTags.png
-share/gnome/help/gnumeric/C/figures/textguru-import-panel1-withTags.png
-share/gnome/help/gnumeric/C/figures/textguru-import-panel2a-withTags.png
-share/gnome/help/gnumeric/C/figures/textguru-import-panel2b-withTags.png
-share/gnome/help/gnumeric/C/figures/textguru-import-panel3-withTags.png
-share/gnome/help/gnumeric/C/figures/toolbar-object.png
-share/gnome/help/gnumeric/C/figures/widget-checkbox.png
-share/gnome/help/gnumeric/C/figures/widget-combobox.png
-share/gnome/help/gnumeric/C/figures/widget-entryBox-outlined.png
-share/gnome/help/gnumeric/C/figures/widget-frame.png
-share/gnome/help/gnumeric/C/figures/widget-label.png
-share/gnome/help/gnumeric/C/figures/widget-list.png
-share/gnome/help/gnumeric/C/figures/widget-scrollbar.png
-share/gnome/help/gnumeric/C/figures/widget-slider.png
-share/gnome/help/gnumeric/C/figures/widget-spinbutton.png
-share/gnome/help/gnumeric/C/figures/worksheet-cols-1.png
-share/gnome/help/gnumeric/C/figures/worksheet-data-1.png
-share/gnome/help/gnumeric/C/figures/worksheet-data-2.png
-share/gnome/help/gnumeric/C/figures/worksheet-data-3.png
-share/gnome/help/gnumeric/C/figures/worksheet-data-4.png
-share/gnome/help/gnumeric/C/figures/worksheet-rows-1.png
-share/gnome/help/gnumeric/C/figures/worksheet-running-calc-1.png
-share/gnome/help/gnumeric/C/files-email.xml
-share/gnome/help/gnumeric/C/files-formats.xml
-share/gnome/help/gnumeric/C/files-opening.xml
-share/gnome/help/gnumeric/C/files-overview.xml
-share/gnome/help/gnumeric/C/files-saving.xml
-share/gnome/help/gnumeric/C/files-ssconvert.xml
-share/gnome/help/gnumeric/C/files-textopen.xml
-share/gnome/help/gnumeric/C/files-textsave.xml
-share/gnome/help/gnumeric/C/functions.xml
-share/gnome/help/gnumeric/C/getting-involved.xml
-share/gnome/help/gnumeric/C/gnumeric.xml
-share/gnome/help/gnumeric/C/graphics-drawings.xml
-share/gnome/help/gnumeric/C/graphics-images.xml
-share/gnome/help/gnumeric/C/graphics-overview.xml
-share/gnome/help/gnumeric/C/graphics-plots.xml
-share/gnome/help/gnumeric/C/graphics-widgets.xml
-share/gnome/help/gnumeric/C/gui-menus.xml
-share/gnome/help/gnumeric/C/gui-mouse.xml
-share/gnome/help/gnumeric/C/gui-other-elements.xml
-share/gnome/help/gnumeric/C/gui-overview.xml
-share/gnome/help/gnumeric/C/gui-toolbars.xml
-share/gnome/help/gnumeric/C/installing.xml
-share/gnome/help/gnumeric/C/legal.xml
-share/gnome/help/gnumeric/C/manual-usage.xml
-share/gnome/help/gnumeric/C/morehelp.xml
-share/gnome/help/gnumeric/C/printing.xml
-share/gnome/help/gnumeric/C/quick-start.xml
-share/gnome/help/gnumeric/C/welcome.xml
-share/gnome/help/gnumeric/C/workbooks.xml
-share/gnome/help/gnumeric/C/worksheets.xml
+%%OMF%%share/gnome/help/gnumeric/C/about-authors.xml
+%%OMF%%share/gnome/help/gnumeric/C/about-history.xml
+%%OMF%%share/gnome/help/gnumeric/C/about-license.xml
+%%OMF%%share/gnome/help/gnumeric/C/analysis-complexNumbers.xml
+%%OMF%%share/gnome/help/gnumeric/C/analysis-goalseek.xml
+%%OMF%%share/gnome/help/gnumeric/C/analysis-overview.xml
+%%OMF%%share/gnome/help/gnumeric/C/analysis-scenarios.xml
+%%OMF%%share/gnome/help/gnumeric/C/analysis-simulation.xml
+%%OMF%%share/gnome/help/gnumeric/C/analysis-solver.xml
+%%OMF%%share/gnome/help/gnumeric/C/analysis-statistical.xml
+%%OMF%%share/gnome/help/gnumeric/C/appendix-glossary.xml
+%%OMF%%share/gnome/help/gnumeric/C/appendix-keybindings.xml
+%%OMF%%share/gnome/help/gnumeric/C/bugs.xml
+%%OMF%%share/gnome/help/gnumeric/C/configuration-localization.xml
+%%OMF%%share/gnome/help/gnumeric/C/configuration-overview.xml
+%%OMF%%share/gnome/help/gnumeric/C/configuration-plugins.xml
+%%OMF%%share/gnome/help/gnumeric/C/configuration-preferences.xml
+%%OMF%%share/gnome/help/gnumeric/C/configuration-toolbars.xml
+%%OMF%%share/gnome/help/gnumeric/C/compiling.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-commentNlink.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-delete.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-entry-advanced.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-entry-external.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-entry.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-filter.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-format.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-generate.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-insert.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-modify.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-move-copy.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-overview.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-selections.xml
+%%OMF%%share/gnome/help/gnumeric/C/data-types.xml
+%%OMF%%share/gnome/help/gnumeric/C/documenting.xml
+%%OMF%%share/gnome/help/gnumeric/C/extending-functions.xml
+%%OMF%%share/gnome/help/gnumeric/C/extending-overview.xml
+%%OMF%%share/gnome/help/gnumeric/C/extending-plugins.xml
+%%OMF%%share/gnome/help/gnumeric/C/extending-python.xml
+%%OMF%%share/gnome/help/gnumeric/C/figures/advanced-filter-1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/advanced-filter-2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ANOVA1-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ANOVA1-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ANOVA2w-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ANOVA2w-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ANOVA2wo-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ANOVA2wo-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-correlation-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-correlation-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-correlation-ex3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-correlation.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-covariance-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-covariance-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-covariance.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-descstats-ex1-options.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-descstats-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-descstats-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-descstats.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-a-holt-winters-formula.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-a-holt-winters-stderr.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-holt-formula.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-holt-stderr.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-hunter-formula.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-hunter-stderr.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-m-holt-winters-formula.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-m-holt-winters-stderr.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-roberts-formula.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-exp-smoothing-roberts-stderr.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-fourier-formula.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-fourier.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-frequency-cats.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-frequency-graphs.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-frequency-results.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-frequency.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ftest-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ftest-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ftest.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-histogram-bins.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-histogram-cutoffs.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-histogram-ex4.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-histogram-ex5.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-histogram-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-histogram-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-histogram-ex3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-histogram-graphs.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-histogram.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-kaplan-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-kaplan-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-kaplan-ex3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-kaplan-groups.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-kaplan-options.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-kaplan.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-moving-average-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-moving-average-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-moving-average-ex3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-moving-average-formula-central.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-moving-average-formula-spencer.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-moving-average-formula-weighted.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-moving-average-options.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-moving-average.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-outputoptions.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-random-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-random-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-random.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ranges.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-rank-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-rank-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-rank.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-regression-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-regression-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-regression-ex3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-regression.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-sampling-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-sampling-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-sampling.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex4.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex5.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex6.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex7.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-smoothing-ex8.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-smoothing.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-tools.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ttest-equal-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ttest-equal-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ttest-equal.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ttest-paired-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ttest-paired-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ttest-paired.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ttest-unequal-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ttest-unequal-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ttest-unequal.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ttest.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ztest-ex1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ztest-ex2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/analysistools-ztest.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/arrowhead-dimensions.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-align-center.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-align-left.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-align-right.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-arrow.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-bold.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-borders.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-center-across-selection.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-checkbox.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-combo.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-copy.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-cut.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-decrease-indent.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-decrease-precision.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-equals.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-fill.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-font-size.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-font-type.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-frame.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-function.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-graph.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-graphEditor-add.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-increase-indent.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-increase-precision.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-insert-component.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-insert-hyperlink.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-insert-object.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-italic.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-label.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-line.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-list.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-merge.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-money.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-new.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-open.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-oval.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-paste.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-percent.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-preview.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-print.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-rectangle.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-redo-and-history.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-save.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-scrollbar.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-slider.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-sort-az.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-sort-za.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-spin.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-split.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-sum.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-text-colour.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-thousands.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-underline.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-undo-and-history.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/button-zoom.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/cell-grid.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/cell-selected.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/cell-with-text.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/cells-1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/cells-2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_area_1_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_area_1_2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_area_1_3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_bar_1_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_bar_1_2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_bar_1_3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_bubble_1_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_column_1_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_column_1_2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_column_1_3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_line_1_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_line_1_2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_line_1_3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_line_2_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_line_2_2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_line_2_3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_pie_1_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_pie_2_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_radar_1_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_radar_1_2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_radar_1_3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_ring_1_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_ring_1_2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_scatter_1_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_scatter_3_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_scatter_3_2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_surface_1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/chart_surface_2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-auto-correct.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-autosave.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-fileopen-withTags.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-filesave-compact-withTags.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-filesave-expanded-withTags.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-filter.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-insert-object.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-properties-arrow.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-properties-checkbox.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-properties-frame.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-properties-label.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-properties-line.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-properties-oval.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-properties-rectangle.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/dialog-properties-scrollbar.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/drawing-arrow.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/drawing-line.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/drawing-oval.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/drawing-rectangle.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/example-colGraph-modified.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/example-colGraph.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/example-columnSelect.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/example-data.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/files-html-example.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/files-html32-example.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/files-html40-example.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/gnumeric-icon-24.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/gnumeric-labelled.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/gnumeric-power-example.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-components.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-example-area.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-example-bar.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-example-bubble.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-example-column.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-example-line.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-example-pie.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-example-radar.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-example-ring.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-example-surface-t1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-example-surface-t2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-example-xyplot.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graph-hierarchy.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-axes-category-bounds.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-axes-category-details.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-axes-category-style.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-axes-continuous-bounds.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-axes-continuous-format.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-backPanels-gradient.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-backPanels-image.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-backPanels-none.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-backPanels-pattern.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-components.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-plot-barCol.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-plot-bubble.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-plot-pie.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-plot-radar.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-plot-ring.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-series-data-bubble.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-series-data-single.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-series-data-xy.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-series-error.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-series-style-filled.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-series-style-line.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphguru-title-font.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphical-elements-selected.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphical-elements-stacked.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphical-elements.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphs-types-area.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphs-types-bar.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphs-types-bubble.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphs-types-column.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphs-types-line.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphs-types-pie.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphs-types-radar.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphs-types-ring.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphs-types-stock.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphs-types-surface.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/graphs-types-xyplot.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/info-area.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-context-col-row-header.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-context-graph-order.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-context-graph.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-context-grid.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-context-object-order.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-context-object.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-context-tabs.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-context-toolbars.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-data-labelled.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-edit-delete-cells.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-edit-labelled.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-edit-paste-special.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-edit-select.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-file-labelled.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-file-printarea.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-format-column.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-format-labelled.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-format-sheet.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-help-labelled.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-insert-labelled.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-tools-labelled.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-torn-off.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-view-labelled.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menu-view-properties-dialog.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/menubar.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/number-format-border-dialog.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/number-format-color-dialog.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/number-format-dialog.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/number-format-font-dialog.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/number-format-justification-dialog-2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/number-format-protection.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/number-format-validation-warning.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/number-format-validation.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_arrow_left_std.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_cross_hair.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_cross_wide.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_diagonal_resize.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_double_horizontal_arrow.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_double_vertical_arrow.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_four_way_arrow.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_hand_left.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_left.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_resize_multiple.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_right.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_text_edit.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_zoom_in.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/pointer_zoom_out.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/preferences-copypaste.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/preferences-files.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/preferences-font-header.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/preferences-font.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/preferences-screen.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/preferences-sorting.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/preferences-tools.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/preferences-undo.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/preferences-windows.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-large.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-preview-back.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-preview-first.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-preview-fit.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-preview-fitonetoone.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-preview-last.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-preview-next.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-preview-zoomin.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-preview-zoomout.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-worksheet-job.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-worksheet-paper.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/print-worksheet-printer.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/printing-preview.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/printing-setup-header-config.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/printing-setup-header.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/printing-setup-page.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/printing-setup-sheet.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/selection-1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/selection-10.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/selection-2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/selection-3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/selection-4.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/selection-5.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/selection-8.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/selection-9.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/solver-01.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/solver-02.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/solver-03.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/solver-04.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/solver-05.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/textguru-export-panel1-withTags.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/textguru-export-panel2-withTags.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/textguru-import-panel1-withTags.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/textguru-import-panel2a-withTags.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/textguru-import-panel2b-withTags.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/textguru-import-panel3-withTags.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/toolbar-object.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/widget-checkbox.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/widget-combobox.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/widget-entryBox-outlined.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/widget-frame.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/widget-label.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/widget-list.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/widget-scrollbar.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/widget-slider.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/widget-spinbutton.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/worksheet-cols-1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/worksheet-data-1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/worksheet-data-2.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/worksheet-data-3.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/worksheet-data-4.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/worksheet-rows-1.png
+%%OMF%%share/gnome/help/gnumeric/C/figures/worksheet-running-calc-1.png
+%%OMF%%share/gnome/help/gnumeric/C/files-email.xml
+%%OMF%%share/gnome/help/gnumeric/C/files-formats.xml
+%%OMF%%share/gnome/help/gnumeric/C/files-opening.xml
+%%OMF%%share/gnome/help/gnumeric/C/files-overview.xml
+%%OMF%%share/gnome/help/gnumeric/C/files-saving.xml
+%%OMF%%share/gnome/help/gnumeric/C/files-ssconvert.xml
+%%OMF%%share/gnome/help/gnumeric/C/files-textopen.xml
+%%OMF%%share/gnome/help/gnumeric/C/files-textsave.xml
+%%OMF%%share/gnome/help/gnumeric/C/functions.xml
+%%OMF%%share/gnome/help/gnumeric/C/getting-involved.xml
+%%OMF%%share/gnome/help/gnumeric/C/gnumeric.xml
+%%OMF%%share/gnome/help/gnumeric/C/graphics-drawings.xml
+%%OMF%%share/gnome/help/gnumeric/C/graphics-images.xml
+%%OMF%%share/gnome/help/gnumeric/C/graphics-overview.xml
+%%OMF%%share/gnome/help/gnumeric/C/graphics-plots.xml
+%%OMF%%share/gnome/help/gnumeric/C/graphics-widgets.xml
+%%OMF%%share/gnome/help/gnumeric/C/gui-menus.xml
+%%OMF%%share/gnome/help/gnumeric/C/gui-mouse.xml
+%%OMF%%share/gnome/help/gnumeric/C/gui-other-elements.xml
+%%OMF%%share/gnome/help/gnumeric/C/gui-overview.xml
+%%OMF%%share/gnome/help/gnumeric/C/gui-toolbars.xml
+%%OMF%%share/gnome/help/gnumeric/C/installing.xml
+%%OMF%%share/gnome/help/gnumeric/C/legal.xml
+%%OMF%%share/gnome/help/gnumeric/C/manual-usage.xml
+%%OMF%%share/gnome/help/gnumeric/C/morehelp.xml
+%%OMF%%share/gnome/help/gnumeric/C/printing.xml
+%%OMF%%share/gnome/help/gnumeric/C/quick-start.xml
+%%OMF%%share/gnome/help/gnumeric/C/welcome.xml
+%%OMF%%share/gnome/help/gnumeric/C/workbooks.xml
+%%OMF%%share/gnome/help/gnumeric/C/worksheets.xml
 share/icons/hicolor/16x16/apps/gnumeric.png
 share/icons/hicolor/22x22/apps/gnumeric.png
 share/icons/hicolor/24x24/apps/gnumeric.png
@@ -851,7 +851,7 @@
 share/icons/hicolor/48x48/apps/gnumeric.png
 share/icons/hicolor/scalable/apps/gnumeric.svg
 share/mime-info/gnumeric.mime
-share/omf/gnumeric/gnumeric-C.omf
+%%OMF%%share/omf/gnumeric/gnumeric-C.omf
 share/pixmaps/gnome-application-vnd.lotus-1-2-3.png
 share/pixmaps/gnome-application-x-applix-spreadsheet.png
 share/pixmaps/gnome-application-x-generic-spreadsheet.png
@@ -987,14 +987,14 @@
 share/locale/zh_TW/LC_MESSAGES/gnumeric-functions.mo
 share/locale/zh_TW/LC_MESSAGES/gnumeric.mo
 @dirrm share/pixmaps/gnumeric
-@dirrm share/omf/gnumeric
-@dirrm share/gnome/help/gnumeric/C/figures
-@dirrm share/gnome/help/gnumeric/C
-@dirrm share/gnome/help/gnumeric
+%%OMF%%@dirrm share/omf/gnumeric
+%%OMF%%@dirrm share/gnome/help/gnumeric/C/figures
+%%OMF%%@dirrm share/gnome/help/gnumeric/C
+%%OMF%%@dirrm share/gnome/help/gnumeric
 @dirrm share/gnumeric/%%VERSION%%/ui
 @dirrm share/gnumeric/%%VERSION%%/templates
-@dirrm share/gnumeric/%%VERSION%%/doc/C
-@dirrm share/gnumeric/%%VERSION%%/doc
+%%OMF%%@dirrm share/gnumeric/%%VERSION%%/doc/C
+%%OMF%%@dirrm share/gnumeric/%%VERSION%%/doc
 @dirrm share/gnumeric/%%VERSION%%/autoformat-templates/List
 @dirrm share/gnumeric/%%VERSION%%/autoformat-templates/General
 @dirrm share/gnumeric/%%VERSION%%/autoformat-templates/Financial
--- patch-gnumeric_1 ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4dba732f.29d7e70a.71d2.3df0>