1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Move math/gnumeric2 --> math/gnumeric

This commit is contained in:
Michael Johnson 2004-12-11 09:38:24 +00:00
parent 524396ff43
commit 6b3bfe6971
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=123705
35 changed files with 499 additions and 1825 deletions

3
MOVED
View File

@ -1347,3 +1347,6 @@ editors/AbiWord2|editors/abiword|2004-12-04|renamed to abiword
multimedia/avidemux||2004-12-09|no longer maintained by the author
devel/arch|devel/tla|2004-12-09|removed obsolete version of arch
japanese/estraier|textproc/estraier|2004-12-11|accurate category
math/gnumeric2|math/gnumeric|2004-12-11|renamed to gnumeric
chinese/gnumeric|math/gnumeric|2004-12-11|obsoleted by gtk2 version
japanese/gnumeric|math/gnumeric|2004-12-11|obsoleted by gtk2 version

View File

@ -46,7 +46,6 @@
SUBDIR += gbfs
SUBDIR += gbscript
SUBDIR += gcin
SUBDIR += gnumeric
SUBDIR += gugod-clean
SUBDIR += hanzim
SUBDIR += hc

View File

@ -1,16 +0,0 @@
# New ports collection makefile for: zh-gnumeric
# Date created: 6 March 2001
# Whom: Jing-Tang Keith Jang <keith@FreeBSD.org>
#
# $FreeBSD$
#
CATEGORIES= chinese math gnome
MAINTAINER= ports@FreeBSD.org
MASTERDIR= ${.CURDIR}/../../math/gnumeric
EXTRA_PATCHES= ${.CURDIR}/files/patch-*
.include "${MASTERDIR}/Makefile"

View File

@ -1,18 +0,0 @@
--- src/style.c.orig Tue Jan 29 14:17:24 2002
+++ src/style.c Sun Aug 18 02:52:37 2002
@@ -80,13 +80,13 @@
}
/* Worst case scenario */
- font->gdk_font = gnome_display_font_get_gdk_font (font->dfont);
+ font->gdk_font = gdk_fontset_load ("-*-medium-r-normal-*-14-*-iso8859-1,-*-medium-r-normal--14-*-*-*-*-*-big5-0");
if (font->gdk_font == NULL)
/* xgettext:
* The name of the default font for this locale.
* Preferably something with the correct encoding.
*/
- font->gdk_font = gdk_fontset_load (_("fixed"));
+ font->gdk_font = gdk_font_load (_("fixed"));
else
gdk_font_ref (font->gdk_font);

View File

@ -1,14 +0,0 @@
--- src/item-edit.c.orig Thu Dec 27 06:10:52 2001
+++ src/item-edit.c Sun Aug 18 02:52:37 2002
@@ -240,6 +240,11 @@
return;
top_pos += item_edit->font->ascent;
+ /* Handle multibyte */
+ if( cursor_pos != -1 )
+ cursor_pos = strlen(gtk_editable_get_chars(GTK_EDITABLE(item_edit->entry),
+ 0, cursor_pos));
+
/* Draw the background (recall that gdk_draw_rectangle excludes far coords) */
gdk_draw_rectangle (
drawable, canvas->style->white_gc, TRUE,

View File

@ -7,7 +7,7 @@
PORTNAME= gnome2-office
PORTVERSION= 2.8.1
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= editors gnome
MASTER_SITES= # empty
DISTFILES= # empty
@ -16,7 +16,7 @@ EXTRACT_ONLY= # empty
MAINTAINER= gnome@FreeBSD.org
COMMENT= GNOME 2 office applications
RUN_DEPENDS= gnumeric:${PORTSDIR}/math/gnumeric2 \
RUN_DEPENDS= gnumeric:${PORTSDIR}/math/gnumeric \
planner:${PORTSDIR}/deskutils/planner \
dia:${PORTSDIR}/graphics/dia \
glabels:${PORTSDIR}/deskutils/glabels \

View File

@ -94,7 +94,6 @@
SUBDIR += gn-gnspool
SUBDIR += gnome
SUBDIR += gnomelibs
SUBDIR += gnumeric
SUBDIR += gorua
SUBDIR += gqmpeg
SUBDIR += grep

View File

@ -18,7 +18,6 @@ COMMENT= The Japanese "meta-port" for the GNOME integrated X11 desktop
LIB_DEPENDS= gnome.5:${PORTSDIR}/japanese/gnomelibs \
gal.23:${PORTSDIR}/japanese/gal
RUN_DEPENDS= gnumeric:${PORTSDIR}/japanese/gnumeric
NO_BUILD= yes

View File

@ -1,18 +0,0 @@
# New ports collection makefile for: gnumeric
# Date created: 30 October 2000
# Whom: Yukihiro Nakai <nakai@FreeBSD.org>
#
# $FreeBSD$
#
# This port does not work with another version of master port.
#PORTVERSION= 1.0.4
CATEGORIES= japanese math gnome
MASTERDIR= ${.CURDIR}/../../math/gnumeric
EXTRA_PATCHES= ${.CURDIR}/files/patch-*
MAINTAINER= ports@FreeBSD.org
.include "${MASTERDIR}/Makefile"

View File

@ -1,10 +0,0 @@
--- src/style.c.orig Sun Oct 7 08:34:37 2001
+++ src/style.c Mon Oct 22 20:50:21 2001
@@ -81,6 +81,7 @@
/* Worst case scenario */
font->gdk_font = gnome_display_font_get_gdk_font (font->dfont);
+ font->gdk_font = gdk_fontset_load(_("fixed"));
if (font->gdk_font == NULL)
/* xgettext:
* The name of the default font for this locale.

View File

@ -1,65 +0,0 @@
--- src/item-edit.c.orig Thu Dec 27 07:10:52 2001
+++ src/item-edit.c Fri Mar 1 21:58:00 2002
@@ -42,6 +42,41 @@
ARG_SHEET_CONTROL_GUI, /* The SheetControlGUI * argument */
};
+/* Update XIM position */
+static void
+item_edit_update_im_position(ItemEdit* item_edit, int x, int y)
+{
+ /* Need widget pointer that has GdkIC */
+ GnumericCanvas* gcanvas =
+ GNUMERIC_CANVAS(GNOME_CANVAS_ITEM(item_edit)->canvas);
+ int cx, cy;
+
+ if (GTK_WIDGET_HAS_FOCUS(gcanvas) && gdk_im_ready() &&
+ gcanvas->ic && (gdk_ic_get_style (gcanvas->ic)
+ & GDK_IM_PREEDIT_POSITION)){
+
+ int width, height;
+
+ /* position should be inside the widget */
+ if ( x <= 0 || y <=0 )
+ return;
+
+ gnome_canvas_get_scroll_offsets(GNOME_CANVAS(gcanvas), &cx, &cy);
+
+ gcanvas->ic_attr->spot_location.x =
+ (int)GNOME_CANVAS_ITEM(item_edit)->x1 + x - cx;
+ gcanvas->ic_attr->spot_location.y =
+ (int)GNOME_CANVAS_ITEM(item_edit)->y1 + y - 2 - cy;
+
+ gdk_window_get_size (GTK_WIDGET(gcanvas)->window, &width, &height);
+ gcanvas->ic_attr->preedit_area.width = width;
+ gcanvas->ic_attr->preedit_area.height = height;
+
+ gdk_ic_set_attr (gcanvas->ic, gcanvas->ic_attr,
+ GDK_IC_SPOT_LOCATION | GDK_IC_PREEDIT_AREA);
+ }
+}
+
static void
scan_at (const char *text, int *scan)
{
@@ -169,6 +204,8 @@
gdk_draw_line (drawable, style->black_gc,
x, y-font->ascent,
x, y+font->descent);
+
+ item_edit_update_im_position(item_edit, x, y+font->descent);
}
static void
@@ -239,6 +276,11 @@
if (item_edit->font == NULL)
return;
top_pos += item_edit->font->ascent;
+
+ /* Handle multibyte */
+ if( cursor_pos != -1 )
+ cursor_pos = strlen(gtk_editable_get_chars(GTK_EDITABLE(item_edit->entry),
+ 0, cursor_pos));
/* Draw the background (recall that gdk_draw_rectangle excludes far coords) */
gdk_draw_rectangle (

View File

@ -65,7 +65,6 @@
SUBDIR += glove
SUBDIR += glpk
SUBDIR += gnumeric
SUBDIR += gnumeric2
SUBDIR += gnuplot
SUBDIR += gnuplot+
SUBDIR += grace

View File

@ -5,39 +5,60 @@
# $FreeBSD$
#
PORTNAME= gnumeric
PORTVERSION= 1.0.13
PORTREVISION= 1
CATEGORIES?= math gnome
PORTNAME= gnumeric2
PORTVERSION= 1.4.1
CATEGORIES= math gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.0
DIST_SUBDIR= gnome
MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:R}
DISTNAME= ${PORTNAME:S/2$//}-${PORTVERSION}
DIST_SUBDIR= gnome2
MAINTAINER?= gnome@FreeBSD.org
COMMENT= The GNOME spreadsheet
LIB_DEPENDS= gnomeole2.0:${PORTSDIR}/devel/libole2 \
gbrun.0:${PORTSDIR}/lang/gnomebasic \
psiconv.8:${PORTSDIR}/converters/psiconv
RUN_DEPENDS= guppi-gnumeric:${PORTSDIR}/math/guppi
MAINTAINER= gnome@FreeBSD.org
COMMENT= The GNOME 2 spreadsheet
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_PERL5= yes
USE_GMAKE= yes
USE_GNOME= gnomeprefix gnomehack gnomelibs bonobo libglade gal
USE_ICONV= yes
USE_GNOME= gnomeprefix intlhack gnomehack gnomehier libgnomeprintui \
libgnomedb libgsf_gnome pygtk2
USE_PYTHON= yes
USE_LIBTOOL_VER=13
INSTALLS_SHLIB= yes
CONFIGURE_ARGS= --with-evolution --without-guile
INSTALLS_OMF= yes
USE_REINPLACE= yes
USE_LIBTOOL_VER=15
CONFIGURE_ARGS= --without-guile --with-bonobo --with-gnome-db
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
LIBS="-L${LOCALBASE}/lib -lintl -liconv ${PTHREAD_LIBS}"
LIBS="-L${LOCALBASE}/lib -liconv ${PTHREAD_LIBS}" \
DEFS="-I${X11BASE}/include/gal-2.0" \
python_prog=${PYTHON_VERSION}
PLIST_SUB= VERSION=${PORTVERSION}-bonobo
GCONF_SCHEMAS= gnumeric-dialogs.schemas gnumeric-general.schemas \
gnumeric-plugins.schemas
PLIST_SUB= VERSION=${PORTVERSION}
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500600
# The Perl plug-ins don't build with Perl < 5.6.1
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-plugins_Makefile.in
.endif
post-patch:
@cd ${WRKSRC} && ${REINPLACE_CMD} -e 's,malloc.h,stdlib.h,' \
src/tools/solver/lp_solve/commonlib.h \
src/tools/solver/lp_solve/fortify.c \
src/tools/solver/lp_solve/lp_Hash.c \
src/tools/solver/lp_solve/lp_etaPFI.c \
src/tools/solver/lp_solve/lp_lib.h \
src/tools/solver/lp_solve/lp_rlp.c \
src/tools/solver/lp_solve/lp_rlpt.c
@${FIND} ${WRKSRC}/plugins -name "plugin.xml.in" | ${XARGS} \
${REINPLACE_CMD} -e 's|\.la|.so|g'
@${FIND} ${WRKSRC}/src/cut-n-paste-code/goffice/graph/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

View File

@ -1,2 +1,2 @@
MD5 (gnome/gnumeric-1.0.13.tar.bz2) = 7f0e7b88538719cba9d9f5509ccbb491
SIZE (gnome/gnumeric-1.0.13.tar.bz2) = 9853785
MD5 (gnome2/gnumeric-1.4.1.tar.bz2) = bc60b5c342908e969b320ab833e6b151
SIZE (gnome2/gnumeric-1.4.1.tar.bz2) = 16827174

View File

@ -1,19 +0,0 @@
--- configure.orig Thu Dec 12 14:44:07 2002
+++ configure Tue Dec 24 00:22:37 2002
@@ -9014,6 +9014,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'
@@ -17878,7 +17879,7 @@
if gnome-config --libs gb > /dev/null 2>&1; then
verstxt=`gnome-config --modversion gb 2>/dev/null`
vers=`echo "$verstxt" | awk -F. '{ printf "%d", $1 * 10000 + $2 * 100 + $3; }'`
- if test "$vers" -eq 000017; then
+ if test "$vers" -ge 000017; then
echo "$as_me:$LINENO: result: $marker_ok found $verstxt" >&5
echo "${ECHO_T}$marker_ok found $verstxt" >&6

View File

@ -1,7 +0,0 @@
--- Makefile.in.orig Mon Nov 13 19:56:19 2000
+++ Makefile.in Tue Nov 14 15:34:05 2000
@@ -164,3 +164,3 @@
-confexecdir = $(libdir)
+confexecdir = $(sysconfdir)
confexec_DATA = gnumericConf.sh

View File

@ -1,14 +0,0 @@
$FreeBSD$
--- doc/Makefile.in.orig Wed Mar 13 00:26:49 2002
+++ doc/Makefile.in Wed Mar 13 00:25:45 2002
@@ -185,7 +185,7 @@
perl_val = @perl_val@
python_val = @python_val@
-SUBDIRS = C de es hu ja nl no pl pt ru sk sv
+SUBDIRS = C
EXTRA_DIST = sgmldocs.make gnumeric-doc.make make-func-list.pl translating.sgml Design Future-Roadmap README saving.txt writing-functions.sgml excel-format-doc.txt linux-expo-99-gnumeric.tex linuxexpo.sty Dependencies.txt Styles.txt features.txt pref-attributes.txt guile-gnumeric.txt python-gnumeric.txt stf-export.txt stf-parser.txt

View File

@ -1,14 +0,0 @@
$FreeBSD$
--- doc/sgmldocs.make 2002/06/07 19:38:15 1.1
+++ doc/sgmldocs.make 2002/06/07 19:38:30
@@ -32,7 +32,7 @@
# dist-hook: app-dist-hook
#
-docdir = $(datadir)/gnome/help/$(docname)/$(lang)
+docdir = $(datadir)/help/$(docname)/$(lang)
doc_DATA = index.html

View File

@ -1,11 +0,0 @@
--- plugins/gb/Makefile.in.orig Tue Dec 24 00:29:02 2002
+++ plugins/gb/Makefile.in Tue Dec 24 00:29:57 2002
@@ -311,7 +311,7 @@
gnum_gb_la_LIBADD = \
$(GB_LIBS) \
$(GNUMERIC_LIBS) \
- -lm @GLIB_LIBS@ -lgb -lgbrun
+ -lm @GLIB_LIBS@ -lgbrun
xml_in_files = plugin.xml.in

View File

@ -1,10 +0,0 @@
--- plugins/html/html.c.orig Sun Sep 19 16:34:22 2004
+++ plugins/html/html.c Sun Sep 19 16:34:43 2004
@@ -410,6 +410,7 @@
"</HEAD>\n<BODY>\n", fp);
break;
default:
+ break;
}
sheets = workbook_sheets (wb);

View File

@ -1,27 +0,0 @@
--- plugins/psiconv/psiconv-read.c.orig Sun Sep 19 16:43:32 2004
+++ plugins/psiconv/psiconv-read.c Sun Sep 19 16:44:35 2004
@@ -301,7 +301,7 @@
/* case psiconv_formula_mark_opend: */
default:
/* kind = -1; */
- /* break; */
+ break;
}
if (kind == -1) {
@@ -336,6 +336,7 @@
v = value_new_cellrange(cr1,cr2,1,1);
break;
default:
+ break;
}
if (!v)
return NULL;
@@ -407,6 +408,7 @@
return NULL;
return parse_subexpr(psi_form1);
default:
+ break;
}
}

View File

@ -1,9 +0,0 @@
--- src/mathfunc.h.orig Thu Apr 26 20:47:46 2001
+++ src/mathfunc.h Mon May 21 12:08:51 2001
@@ -7,2 +7,6 @@
+#ifdef __FreeBSD__
+#define FINITE finite
+#endif
+
#ifndef FINITE

View File

@ -1,12 +0,0 @@
--- src/stf-parse.c.orig Fri Mar 1 21:03:09 2002
+++ src/stf-parse.c Fri Mar 1 21:03:17 2002
@@ -870,8 +870,7 @@
if (len == -1)
return (char *)s;
if (len > 1) {
- if (mbstowcs (&wstr, s, 1) == 1 &&
- !iswprint (wstr) && !iswspace (wstr))
+ if (mbstowcs (&wstr, s, 1) == 1)
return (char *)s;
s += len;
} else {

View File

@ -1,3 +1,3 @@
The GNOME spreadsheet.
The GNOME 2 spreadsheet.
WWW: http://www.gnome.org/projects/gnumeric/index.shtml

File diff suppressed because it is too large Load Diff

View File

@ -1,67 +0,0 @@
# New ports collection makefile for: gnumeric2
# Date created: 26 August 2002
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= gnumeric2
PORTVERSION= 1.4.1
CATEGORIES= math gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:R}
DISTNAME= ${PORTNAME:S/2$//}-${PORTVERSION}
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
COMMENT= The GNOME 2 spreadsheet
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_PERL5= yes
USE_GMAKE= yes
USE_GNOME= gnomeprefix intlhack gnomehack gnomehier libgnomeprintui \
libgnomedb libgsf_gnome pygtk2
USE_PYTHON= yes
INSTALLS_OMF= yes
USE_REINPLACE= yes
USE_LIBTOOL_VER=15
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" \
python_prog=${PYTHON_VERSION}
GCONF_SCHEMAS= gnumeric-dialogs.schemas gnumeric-general.schemas \
gnumeric-plugins.schemas
PLIST_SUB= VERSION=${PORTVERSION}
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500600
# The Perl plug-ins don't build with Perl < 5.6.1
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-plugins_Makefile.in
.endif
post-patch:
@cd ${WRKSRC} && ${REINPLACE_CMD} -e 's,malloc.h,stdlib.h,' \
src/tools/solver/lp_solve/commonlib.h \
src/tools/solver/lp_solve/fortify.c \
src/tools/solver/lp_solve/lp_Hash.c \
src/tools/solver/lp_solve/lp_etaPFI.c \
src/tools/solver/lp_solve/lp_lib.h \
src/tools/solver/lp_solve/lp_rlp.c \
src/tools/solver/lp_solve/lp_rlpt.c
@${FIND} ${WRKSRC}/plugins -name "plugin.xml.in" | ${XARGS} \
${REINPLACE_CMD} -e 's|\.la|.so|g'
@${FIND} ${WRKSRC}/src/cut-n-paste-code/goffice/graph/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.post.mk>

View File

@ -1,2 +0,0 @@
MD5 (gnome2/gnumeric-1.4.1.tar.bz2) = bc60b5c342908e969b320ab833e6b151
SIZE (gnome2/gnumeric-1.4.1.tar.bz2) = 16827174

View File

@ -1,3 +0,0 @@
The GNOME 2 spreadsheet.
WWW: http://www.gnome.org/projects/gnumeric/index.shtml

View File

@ -1,823 +0,0 @@
bin/gnumeric
bin/gnumeric-%%VERSION%%
bin/ssconvert
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-erlang/erlang.so
lib/gnumeric/%%VERSION%%/plugins/fn-erlang/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-pie-series.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_radar/plot-types.xml
lib/gnumeric/%%VERSION%%/plugins/plot_radar/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/plot_radar/radar.so
lib/gnumeric/%%VERSION%%/plugins/plot_surface/gog-contour-prefs.glade
lib/gnumeric/%%VERSION%%/plugins/plot_surface/surface.so
lib/gnumeric/%%VERSION%%/plugins/plot_surface/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/plot_surface/plot-types.xml
lib/gnumeric/%%VERSION%%/plugins/plot_xy/gog-bubble-prefs.glade
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
share/gnome/applications/gnumeric.desktop
share/gnome/gnumeric/%%VERSION%%/GNOME_Gnumeric-gtk.xml
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/dao.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-error-bar-prefs.glade
share/gnome/gnumeric/%%VERSION%%/glade/gog-guru.glade
share/gnome/gnumeric/%%VERSION%%/glade/gog-guru-type-selector.glade
share/gnome/gnumeric/%%VERSION%%/glade/gog-style-prefs.glade
share/gnome/gnumeric/%%VERSION%%/glade/goto.glade
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-checkbox.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%%/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/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-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-fourier-formula.png
share/gnome/help/gnumeric/C/figures/analysistools-fourier.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-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.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.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.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/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-empty.510.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-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-labelled.png
share/gnome/help/gnumeric/C/figures/menu-file-labelled.png
share/gnome/help/gnumeric/C/figures/menu-format-labelled.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/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-format.510.png
share/gnome/help/gnumeric/C/figures/toolbar-object.png
share/gnome/help/gnumeric/C/figures/toolbar-standard.510.png
share/gnome/help/gnumeric/C/figures/toolbars.510.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
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
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-hboth.png
share/gnome/pixmaps/gnumeric/bar-hminus.png
share/gnome/pixmaps/gnumeric/bar-hplus.png
share/gnome/pixmaps/gnumeric/bar-none.png
share/gnome/pixmaps/gnumeric/bar-vboth.png
share/gnome/pixmaps/gnumeric/bar-vminus.png
share/gnome/pixmaps/gnumeric/bar-vplus.png
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_radar_1_1.png
share/gnome/pixmaps/gnumeric/chart_radar_1_2.png
share/gnome/pixmaps/gnumeric/chart_radar_1_3.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/gnumeric-about.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/gnome/pixmaps/gnumeric/win32-gnumeric.ico
share/gnome/pixmaps/win32-gnumeric.ico
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/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/mr/LC_MESSAGES/gnumeric.mo
share/locale/ms/LC_MESSAGES/gnumeric.mo
share/locale/nb/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/help/gnumeric/C/figures
@dirrm share/gnome/help/gnumeric/C
@dirrm share/gnome/help/gnumeric
@dirrm share/gnome/gnumeric/%%VERSION%%/templates
@dirrm share/gnome/gnumeric/%%VERSION%%/idl
@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_surface
@dirrm lib/gnumeric/%%VERSION%%/plugins/plot_radar
@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-erlang
@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

View File

@ -7,7 +7,7 @@
PORTNAME= plugger-plugins-hubbe
PORTVERSION= 5.0
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= www multimedia audio graphics print editors
MASTER_SITES= # empty
DISTFILES= # empty
@ -31,7 +31,7 @@ RUN_DEPENDS= sidplay:${PORTSDIR}/audio/sidplay \
xmp:${PORTSDIR}/audio/xmp \
${X11BASE}/bin/xscreensaver-hacks/molecule:${PORTSDIR}/x11/xscreensaver-gnome \
mplayer:${PORTSDIR}/multimedia/mplayer \
gnumeric:${PORTSDIR}/math/gnumeric2 \
gnumeric:${PORTSDIR}/math/gnumeric \
abiword:${PORTSDIR}/editors/abiword \
display:${PORTSDIR}/graphics/ImageMagick