Re-import devel/goffice under devel/goffice08.

ok jasper@
This commit is contained in:
ajacoutot 2012-12-19 10:40:08 +00:00
parent 810222603c
commit 2c7b8c2fcb
7 changed files with 694 additions and 0 deletions

53
devel/goffice08/Makefile Normal file
View File

@ -0,0 +1,53 @@
# $OpenBSD: Makefile,v 1.1.1.1 2012/12/19 10:40:08 ajacoutot Exp $
SHARED_ONLY= Yes
COMMENT= document centric objects and utilities
GNOME_PROJECT= goffice
GNOME_VERSION= 0.8.17
EXTRACT_SUFX= .tar.bz2
PKGNAME= goffice08-${GNOME_VERSION}
SHARED_LIBS += goffice-0.8 0.0 # .8.0
CATEGORIES= devel
API_VERSION= 0.8
SUBST_VARS= GNOME_VERSION API_VERSION
# GPLv2+
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB += GL X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
WANTLIB += Xi Xinerama Xrandr Xrender Xxf86vm atk-1.0 bz2 cairo
WANTLIB += dbus-1 dbus-glib-1 drm expat ffi fontconfig freetype
WANTLIB += gconf-2 gdk-x11-2.0 gdk_pixbuf-2.0 gio-2.0 glib-2.0
WANTLIB += gmodule-2.0 gobject-2.0 gsf-1 gthread-2.0 gtk-x11-2.0
WANTLIB += icudata icule icuuc m pango-1.0 pangocairo-1.0 pangoft2-1.0
WANTLIB += pcre pixman-1 png pthread pthread-stubs stdc++ xcb
WANTLIB += xcb-render xcb-shm xml2 z harfbuzz
MODULES= devel/gettext \
x11/gnome
LIB_DEPENDS= devel/libgsf \
devel/gconf2 \
devel/pango \
x11/gtk+2
MODGNOME_LDFLAGS= -L${X11BASE}/lib
LIBTOOL_FLAGS= --tag=disable-static
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS= --disable-static \
--with-config-backend=gconf
post-install:
rm ${PREFIX}/lib/goffice/${GNOME_VERSION}/plugins/*/*.la
.include <bsd.port.mk>

5
devel/goffice08/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (goffice-0.8.17.tar.bz2) = tMkkRXFj4C2vio0kKPUdEA==
RMD160 (goffice-0.8.17.tar.bz2) = NSJOU6FDGy7PgSl6CBFZxylxELs=
SHA1 (goffice-0.8.17.tar.bz2) = DI9XjzB0a5Lze9jm6xPbuqoSQng=
SHA256 (goffice-0.8.17.tar.bz2) = 3Yyu9f7/+8U5OPphnen1jnxNxxoYA94TQGXUITimjAY=
SIZE (goffice-0.8.17.tar.bz2) = 2289608

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-configure,v 1.1.1.1 2012/12/19 10:40:08 ajacoutot Exp $
Matches 'UTF-8 and UTF-16 support'.
--- configure.orig Sun Mar 18 07:43:56 2012
+++ configure Sun Mar 18 07:44:12 2012
@@ -15285,7 +15285,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for UTF-8 support in pcre" >&5
$as_echo_n "checking for UTF-8 support in pcre... " >&6; }
- if (pcretest -C 2>&1) | grep -i "^ *UTF-8 support" >/dev/null; then
+ if (pcretest -C 2>&1) | grep -i "^ *UTF-8.*support" >/dev/null; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
LIBS="$LIBS -lpcre"

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-docs_reference_Makefile_in,v 1.1.1.1 2012/12/19 10:40:08 ajacoutot Exp $
--- docs/reference/Makefile.in.orig Fri Mar 25 00:34:53 2011
+++ docs/reference/Makefile.in Fri Mar 25 07:44:27 2011
@@ -243,7 +243,7 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
-DOC_MODULE = goffice-@GOFFICE_API_VER@
+DOC_MODULE = goffice
DOC_MAIN_SGML_FILE = goffice-docs.sgml
DOC_SOURCE_DIR = ../../goffice
SCANGOBJ_OPTIONS = --nogtkinit --type-init-func="g_type_init ()"

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-goffice_utils_regutf8_c,v 1.1.1.1 2012/12/19 10:40:08 ajacoutot Exp $
Fix with pcre >= 8.30 (undefine ref. to pcre_info).
--- goffice/utils/regutf8.c.orig Tue Mar 20 07:33:58 2012
+++ goffice/utils/regutf8.c Tue Mar 20 07:35:37 2012
@@ -155,7 +155,7 @@ go_regcomp (GORegexp *gor, const char *pat, int cflags
default: return GO_REG_BADPAT;
}
} else {
- gor->re_nsub = pcre_info (r, NULL, NULL);
+ pcre_fullinfo(r, NULL, PCRE_INFO_CAPTURECOUNT, &gor->re_nsub);
gor->nosub = (cflags & GO_REG_NOSUB) != 0;
return 0;
}

View File

@ -0,0 +1,9 @@
Goffice is a set of document centric components for GLib and GTK+.
There are common operations for document centric applications that are
conceptually simple, but complex to implement fully.
- plugins
- load/save documents
- undo/redo
Goffice provides a single library for performing such operations.

585
devel/goffice08/pkg/PLIST Normal file
View File

@ -0,0 +1,585 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2012/12/19 10:40:09 ajacoutot Exp $
@conflict goffice-<0.10.0
include/libgoffice-${API_VERSION}/
include/libgoffice-${API_VERSION}/goffice/
include/libgoffice-${API_VERSION}/goffice/app/
include/libgoffice-${API_VERSION}/goffice/app/error-info.h
include/libgoffice-${API_VERSION}/goffice/app/file.h
include/libgoffice-${API_VERSION}/goffice/app/go-cmd-context-impl.h
include/libgoffice-${API_VERSION}/goffice/app/go-cmd-context.h
include/libgoffice-${API_VERSION}/goffice/app/go-conf.h
include/libgoffice-${API_VERSION}/goffice/app/go-doc-control-impl.h
include/libgoffice-${API_VERSION}/goffice/app/go-doc-control.h
include/libgoffice-${API_VERSION}/goffice/app/go-doc-impl.h
include/libgoffice-${API_VERSION}/goffice/app/go-doc.h
include/libgoffice-${API_VERSION}/goffice/app/go-plugin-loader-module.h
include/libgoffice-${API_VERSION}/goffice/app/go-plugin-loader.h
include/libgoffice-${API_VERSION}/goffice/app/go-plugin-service-impl.h
include/libgoffice-${API_VERSION}/goffice/app/go-plugin-service.h
include/libgoffice-${API_VERSION}/goffice/app/go-plugin.h
include/libgoffice-${API_VERSION}/goffice/app/goffice-app.h
include/libgoffice-${API_VERSION}/goffice/app/io-context-priv.h
include/libgoffice-${API_VERSION}/goffice/app/io-context.h
include/libgoffice-${API_VERSION}/goffice/app/module-plugin-defs.h
include/libgoffice-${API_VERSION}/goffice/canvas/
include/libgoffice-${API_VERSION}/goffice/canvas/goc-arc.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-canvas.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-circle.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-ellipse.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-graph.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-group.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-item.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-line.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-path.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-pixbuf.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-polygon.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-polyline.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-rectangle.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-structs.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-styled-item.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-text.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-utils.h
include/libgoffice-${API_VERSION}/goffice/canvas/goc-widget.h
include/libgoffice-${API_VERSION}/goffice/canvas/goffice-canvas.h
include/libgoffice-${API_VERSION}/goffice/component/
include/libgoffice-${API_VERSION}/goffice/component/go-component-factory.h
include/libgoffice-${API_VERSION}/goffice/component/go-component.h
include/libgoffice-${API_VERSION}/goffice/component/goffice-component.h
include/libgoffice-${API_VERSION}/goffice/data/
include/libgoffice-${API_VERSION}/goffice/data/go-data-impl.h
include/libgoffice-${API_VERSION}/goffice/data/go-data-simple.h
include/libgoffice-${API_VERSION}/goffice/data/go-data.h
include/libgoffice-${API_VERSION}/goffice/data/goffice-data.h
include/libgoffice-${API_VERSION}/goffice/drawing/
include/libgoffice-${API_VERSION}/goffice/drawing/god-anchor.h
include/libgoffice-${API_VERSION}/goffice/drawing/god-default-attributes.h
include/libgoffice-${API_VERSION}/goffice/drawing/god-drawing-group.h
include/libgoffice-${API_VERSION}/goffice/drawing/god-drawing-renderer-gdk.h
include/libgoffice-${API_VERSION}/goffice/drawing/god-drawing-view.h
include/libgoffice-${API_VERSION}/goffice/drawing/god-drawing.h
include/libgoffice-${API_VERSION}/goffice/drawing/god-image-store.h
include/libgoffice-${API_VERSION}/goffice/drawing/god-image.h
include/libgoffice-${API_VERSION}/goffice/drawing/god-paragraph-attributes.h
include/libgoffice-${API_VERSION}/goffice/drawing/god-property-table.h
include/libgoffice-${API_VERSION}/goffice/drawing/god-shape.h
include/libgoffice-${API_VERSION}/goffice/drawing/god-text-model.h
include/libgoffice-${API_VERSION}/goffice/goffice-features.h
include/libgoffice-${API_VERSION}/goffice/goffice.h
include/libgoffice-${API_VERSION}/goffice/graph/
include/libgoffice-${API_VERSION}/goffice/graph/goffice-graph.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-3d-box.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-axis-line-impl.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-axis-line.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-axis.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-chart-impl.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-chart-map-3d.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-chart-map.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-chart.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-child-button.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-data-allocator.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-data-set.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-error-bar.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-graph-impl.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-graph.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-grid-line.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-grid.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-guru.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-label.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-legend.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-object-xml.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-object.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-outlined-object.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-plot-engine.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-plot-impl.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-plot.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-reg-curve.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-renderer.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-series-impl.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-series-lines.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-series.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-smoothed-curve.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-styled-object.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-theme.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-trend-line.h
include/libgoffice-${API_VERSION}/goffice/graph/gog-view.h
include/libgoffice-${API_VERSION}/goffice/gtk/
include/libgoffice-${API_VERSION}/goffice/gtk/go-3d-rotation-sel.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-action-combo-color.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-action-combo-pixmaps.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-action-combo-stack.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-action-combo-text.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-calendar-button.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-charmap-sel.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-color-group.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-color-palette.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-color-selector.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-combo-box.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-combo-color.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-combo-pixmaps.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-combo-text.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-font-sel.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-format-sel.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-gradient-selector.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-graph-widget.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-image-sel.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-line-selector.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-locale-sel.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-marker-selector.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-optionmenu.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-palette.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-pattern-selector.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-pixbuf.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-rotation-sel.h
include/libgoffice-${API_VERSION}/goffice/gtk/go-selector.h
include/libgoffice-${API_VERSION}/goffice/gtk/goffice-gtk.h
include/libgoffice-${API_VERSION}/goffice/math/
include/libgoffice-${API_VERSION}/goffice/math/go-R.h
include/libgoffice-${API_VERSION}/goffice/math/go-complex.h
include/libgoffice-${API_VERSION}/goffice/math/go-cspline.h
include/libgoffice-${API_VERSION}/goffice/math/go-distribution.h
include/libgoffice-${API_VERSION}/goffice/math/go-fft.h
include/libgoffice-${API_VERSION}/goffice/math/go-math.h
include/libgoffice-${API_VERSION}/goffice/math/go-matrix3x3.h
include/libgoffice-${API_VERSION}/goffice/math/go-quad.h
include/libgoffice-${API_VERSION}/goffice/math/go-rangefunc.h
include/libgoffice-${API_VERSION}/goffice/math/go-regression.h
include/libgoffice-${API_VERSION}/goffice/math/goffice-math.h
include/libgoffice-${API_VERSION}/goffice/ms-compat/
include/libgoffice-${API_VERSION}/goffice/ms-compat/go-ms-parser.h
include/libgoffice-${API_VERSION}/goffice/ms-compat/god-drawing-ms-client-handler.h
include/libgoffice-${API_VERSION}/goffice/ms-compat/god-drawing-ms.h
include/libgoffice-${API_VERSION}/goffice/ms-compat/god-image-ms.h
include/libgoffice-${API_VERSION}/goffice/utils/
include/libgoffice-${API_VERSION}/goffice/utils/datetime.h
include/libgoffice-${API_VERSION}/goffice/utils/go-bezier.h
include/libgoffice-${API_VERSION}/goffice/utils/go-cairo.h
include/libgoffice-${API_VERSION}/goffice/utils/go-color.h
include/libgoffice-${API_VERSION}/goffice/utils/go-editor.h
include/libgoffice-${API_VERSION}/goffice/utils/go-file.h
include/libgoffice-${API_VERSION}/goffice/utils/go-font.h
include/libgoffice-${API_VERSION}/goffice/utils/go-format.h
include/libgoffice-${API_VERSION}/goffice/utils/go-geometry.h
include/libgoffice-${API_VERSION}/goffice/utils/go-glib-extras.h
include/libgoffice-${API_VERSION}/goffice/utils/go-gradient.h
include/libgoffice-${API_VERSION}/goffice/utils/go-image.h
include/libgoffice-${API_VERSION}/goffice/utils/go-libxml-extras.h
include/libgoffice-${API_VERSION}/goffice/utils/go-line.h
include/libgoffice-${API_VERSION}/goffice/utils/go-locale.h
include/libgoffice-${API_VERSION}/goffice/utils/go-marker.h
include/libgoffice-${API_VERSION}/goffice/utils/go-pango-extras.h
include/libgoffice-${API_VERSION}/goffice/utils/go-path.h
include/libgoffice-${API_VERSION}/goffice/utils/go-pattern.h
include/libgoffice-${API_VERSION}/goffice/utils/go-persist.h
include/libgoffice-${API_VERSION}/goffice/utils/go-string.h
include/libgoffice-${API_VERSION}/goffice/utils/go-style.h
include/libgoffice-${API_VERSION}/goffice/utils/go-styled-object.h
include/libgoffice-${API_VERSION}/goffice/utils/go-undo.h
include/libgoffice-${API_VERSION}/goffice/utils/go-units.h
include/libgoffice-${API_VERSION}/goffice/utils/goffice-utils.h
include/libgoffice-${API_VERSION}/goffice/utils/regutf8.h
lib/goffice/
lib/goffice/${GNOME_VERSION}/
lib/goffice/${GNOME_VERSION}/plugins/
lib/goffice/${GNOME_VERSION}/plugins/plot_barcol/
lib/goffice/${GNOME_VERSION}/plugins/plot_barcol/barcol.so
lib/goffice/${GNOME_VERSION}/plugins/plot_barcol/gog-area-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_barcol/gog-barcol-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_barcol/gog-minmax-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_barcol/plot-types.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_barcol/plugin.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_distrib/
lib/goffice/${GNOME_VERSION}/plugins/plot_distrib/distrib.so
lib/goffice/${GNOME_VERSION}/plugins/plot_distrib/gog-boxplot-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_distrib/gog-double-histogram-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_distrib/gog-histogram-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_distrib/plot-types.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_distrib/plugin.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_pie/
lib/goffice/${GNOME_VERSION}/plugins/plot_pie/gog-pie-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_pie/gog-pie-series.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_pie/gog-ring-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_pie/pie.so
lib/goffice/${GNOME_VERSION}/plugins/plot_pie/plot-types.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_pie/plugin.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_radar/
lib/goffice/${GNOME_VERSION}/plugins/plot_radar/gog-color-polar-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_radar/gog-polar-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_radar/plot-types.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_radar/plugin.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_radar/radar.so
lib/goffice/${GNOME_VERSION}/plugins/plot_surface/
lib/goffice/${GNOME_VERSION}/plugins/plot_surface/gog-xyz-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_surface/gog-xyz-surface-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_surface/plot-types.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_surface/plugin.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_surface/surface.so
lib/goffice/${GNOME_VERSION}/plugins/plot_xy/
lib/goffice/${GNOME_VERSION}/plugins/plot_xy/gog-bubble-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_xy/gog-xy-color-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_xy/gog-xy-dropbar-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_xy/gog-xy-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_xy/gog-xy-series-prefs.ui
lib/goffice/${GNOME_VERSION}/plugins/plot_xy/plot-types.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_xy/plugin.xml
lib/goffice/${GNOME_VERSION}/plugins/plot_xy/xy.so
lib/goffice/${GNOME_VERSION}/plugins/reg_linear/
lib/goffice/${GNOME_VERSION}/plugins/reg_linear/linreg.so
lib/goffice/${GNOME_VERSION}/plugins/reg_linear/plugin.xml
lib/goffice/${GNOME_VERSION}/plugins/reg_linear/reg-types.xml
lib/goffice/${GNOME_VERSION}/plugins/reg_logfit/
lib/goffice/${GNOME_VERSION}/plugins/reg_logfit/logfit.so
lib/goffice/${GNOME_VERSION}/plugins/reg_logfit/plugin.xml
lib/goffice/${GNOME_VERSION}/plugins/reg_logfit/reg-types.xml
lib/goffice/${GNOME_VERSION}/plugins/smoothing/
lib/goffice/${GNOME_VERSION}/plugins/smoothing/gog-exp-smooth.ui
lib/goffice/${GNOME_VERSION}/plugins/smoothing/gog-moving-avg.ui
lib/goffice/${GNOME_VERSION}/plugins/smoothing/plugin.xml
lib/goffice/${GNOME_VERSION}/plugins/smoothing/smoothing.so
lib/goffice/${GNOME_VERSION}/plugins/smoothing/types.xml
lib/libgoffice-${API_VERSION}.la
@lib lib/libgoffice-${API_VERSION}.so.${LIBgoffice-0.8_VERSION}
lib/pkgconfig/libgoffice-${API_VERSION}.pc
share/goffice/
share/goffice/${GNOME_VERSION}/
share/goffice/${GNOME_VERSION}/patterns/
share/goffice/${GNOME_VERSION}/patterns/svg-patterns.xml
share/goffice/${GNOME_VERSION}/ui/
share/goffice/${GNOME_VERSION}/ui/go-3d-rotation-sel.ui
share/goffice/${GNOME_VERSION}/ui/go-font-sel.ui
share/goffice/${GNOME_VERSION}/ui/go-format-sel.ui
share/goffice/${GNOME_VERSION}/ui/go-image-save-dialog-extra.ui
share/goffice/${GNOME_VERSION}/ui/go-image-sel.ui
share/goffice/${GNOME_VERSION}/ui/go-rotation-sel.ui
share/goffice/${GNOME_VERSION}/ui/go-style-prefs.ui
share/goffice/${GNOME_VERSION}/ui/gog-3d-box-prefs.ui
share/goffice/${GNOME_VERSION}/ui/gog-axis-prefs.ui
share/goffice/${GNOME_VERSION}/ui/gog-equation-prefs.ui
share/goffice/${GNOME_VERSION}/ui/gog-error-bar-prefs.ui
share/goffice/${GNOME_VERSION}/ui/gog-graph-prefs.ui
share/goffice/${GNOME_VERSION}/ui/gog-guru-type-selector.ui
share/goffice/${GNOME_VERSION}/ui/gog-guru.ui
share/goffice/${GNOME_VERSION}/ui/gog-object-prefs.ui
share/goffice/${GNOME_VERSION}/ui/gog-plot-prefs.ui
share/goffice/${GNOME_VERSION}/ui/gog-reg-curve-prefs.ui
share/goffice/${GNOME_VERSION}/ui/gog-reg-eqn-prefs.ui
share/goffice/${GNOME_VERSION}/ui/gog-series-prefs.ui
share/gtk-doc/html/goffice/
share/gtk-doc/html/goffice/GOCalendarButton.html
share/gtk-doc/html/goffice/GOCharmapSel.html
share/gtk-doc/html/goffice/GOCmdContext.html
share/gtk-doc/html/goffice/GOComboBox.html
share/gtk-doc/html/goffice/GOComboColor.html
share/gtk-doc/html/goffice/GOComboPixmaps.html
share/gtk-doc/html/goffice/GOComboText.html
share/gtk-doc/html/goffice/GOComponent.html
share/gtk-doc/html/goffice/GOData.html
share/gtk-doc/html/goffice/GODataMatrix.html
share/gtk-doc/html/goffice/GODataScalar.html
share/gtk-doc/html/goffice/GODataVector.html
share/gtk-doc/html/goffice/GODoc.html
share/gtk-doc/html/goffice/GODocControl.html
share/gtk-doc/html/goffice/GOFileOpener.html
share/gtk-doc/html/goffice/GOFileSaver.html
share/gtk-doc/html/goffice/GOFontSel.html
share/gtk-doc/html/goffice/GOFormatSel.html
share/gtk-doc/html/goffice/GOGraphWidget.html
share/gtk-doc/html/goffice/GOIOContext.html
share/gtk-doc/html/goffice/GOLocaleSel.html
share/gtk-doc/html/goffice/GOMarker.html
share/gtk-doc/html/goffice/GOOptionMenu.html
share/gtk-doc/html/goffice/GOPersist.html
share/gtk-doc/html/goffice/GOPluginLoader.html
share/gtk-doc/html/goffice/GOPluginLoaderModule.html
share/gtk-doc/html/goffice/GOPluginService.html
share/gtk-doc/html/goffice/GORotationSel.html
share/gtk-doc/html/goffice/GOSearchReplace.html
share/gtk-doc/html/goffice/GOSelector.html
share/gtk-doc/html/goffice/GOStyle.html
share/gtk-doc/html/goffice/GOStyledObject.html
share/gtk-doc/html/goffice/GocArc.html
share/gtk-doc/html/goffice/GocCanvas.html
share/gtk-doc/html/goffice/GocCircle.html
share/gtk-doc/html/goffice/GocEllipse.html
share/gtk-doc/html/goffice/GocGraph.html
share/gtk-doc/html/goffice/GocGroup.html
share/gtk-doc/html/goffice/GocItem.html
share/gtk-doc/html/goffice/GocLine.html
share/gtk-doc/html/goffice/GocPixbuf.html
share/gtk-doc/html/goffice/GocPolygon.html
share/gtk-doc/html/goffice/GocPolyline.html
share/gtk-doc/html/goffice/GocRectangle.html
share/gtk-doc/html/goffice/GocStyledItem.html
share/gtk-doc/html/goffice/GocText.html
share/gtk-doc/html/goffice/GocWidget.html
share/gtk-doc/html/goffice/Gog3DBox.html
share/gtk-doc/html/goffice/GogAxis.html
share/gtk-doc/html/goffice/GogAxisLine.html
share/gtk-doc/html/goffice/GogChart.html
share/gtk-doc/html/goffice/GogDataAllocator.html
share/gtk-doc/html/goffice/GogDataset.html
share/gtk-doc/html/goffice/GogErrorBar.html
share/gtk-doc/html/goffice/GogGraph.html
share/gtk-doc/html/goffice/GogGrid.html
share/gtk-doc/html/goffice/GogGridLine.html
share/gtk-doc/html/goffice/GogLabel.html
share/gtk-doc/html/goffice/GogLegend.html
share/gtk-doc/html/goffice/GogObject.html
share/gtk-doc/html/goffice/GogOutlinedObject.html
share/gtk-doc/html/goffice/GogPlot.html
share/gtk-doc/html/goffice/GogRegCurve.html
share/gtk-doc/html/goffice/GogRegEqn.html
share/gtk-doc/html/goffice/GogRenderer.html
share/gtk-doc/html/goffice/GogSeries.html
share/gtk-doc/html/goffice/GogSeriesLines.html
share/gtk-doc/html/goffice/GogSmoothedCurve.html
share/gtk-doc/html/goffice/GogStyledObject.html
share/gtk-doc/html/goffice/GogText.html
share/gtk-doc/html/goffice/GogTheme.html
share/gtk-doc/html/goffice/GogTrendLine.html
share/gtk-doc/html/goffice/GogView.html
share/gtk-doc/html/goffice/ch01.html
share/gtk-doc/html/goffice/ch02.html
share/gtk-doc/html/goffice/ch03.html
share/gtk-doc/html/goffice/ch04.html
share/gtk-doc/html/goffice/ch05.html
share/gtk-doc/html/goffice/ch06.html
share/gtk-doc/html/goffice/ch07.html
share/gtk-doc/html/goffice/ch08.html
share/gtk-doc/html/goffice/ch09.html
share/gtk-doc/html/goffice/ch10.html
share/gtk-doc/html/goffice/ch11.html
share/gtk-doc/html/goffice/ch12.html
share/gtk-doc/html/goffice/ch13.html
share/gtk-doc/html/goffice/ch14.html
share/gtk-doc/html/goffice/ch15.html
share/gtk-doc/html/goffice/ch16.html
share/gtk-doc/html/goffice/ch17.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOArrow.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOBezierSpline.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOCSpline.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOCairo.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOColor.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOComplex.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOComponentFactory.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOEditor.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOFft.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOFile.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOFont.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOFormat.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOGeometry.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOGlibExtras.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOGradient.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOLibxmlExtras.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOLine.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOMath.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOPalette.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOPath.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOPattern.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GORange.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOReg.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GORegression.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOUndo.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOUrl.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GOffice.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GogAxisMap.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GogChartMap.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GogGuru.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GogPlotEngine.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-GogTool.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-Other-utilities.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-Other.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-Simple-structures.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-Units.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-go-color-group.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-go-data-simple.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-go-distribution.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-go-image.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-go-plugin.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}-go-string.html
share/gtk-doc/html/goffice/goffice-${API_VERSION}.devhelp
share/gtk-doc/html/goffice/goffice-${API_VERSION}.devhelp2
share/gtk-doc/html/goffice/home.png
share/gtk-doc/html/goffice/index.html
share/gtk-doc/html/goffice/index.sgml
share/gtk-doc/html/goffice/left.png
share/gtk-doc/html/goffice/pt01.html
share/gtk-doc/html/goffice/pt02.html
share/gtk-doc/html/goffice/pt03.html
share/gtk-doc/html/goffice/pt04.html
share/gtk-doc/html/goffice/right.png
share/gtk-doc/html/goffice/style.css
share/gtk-doc/html/goffice/up.png
share/locale/am/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/ar/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/ast/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/az/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/bg/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/ca/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/ca@valencia/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/cs/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/da/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/de/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/el/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/en_CA/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/en_GB/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/es/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/et/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/eu/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/fi/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/fr/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/ga/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/gl/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/he/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/hr/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/hu/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/it/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/ja/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/ko/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/lt/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/lv/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/ml/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/mr/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/ms/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/nb/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/nl/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/nn/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/oc/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/pl/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/pt/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/pt_BR/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/ro/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/ru/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/sk/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/sl/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/sr/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/sr@latin/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/sv/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/tr/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/uk/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/vi/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/zh_CN/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/zh_HK/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/locale/zh_TW/LC_MESSAGES/goffice-${GNOME_VERSION}.mo
share/pixmaps/
share/pixmaps/goffice/
share/pixmaps/goffice/${GNOME_VERSION}/
share/pixmaps/goffice/${GNOME_VERSION}/area.xpm
share/pixmaps/goffice/${GNOME_VERSION}/bar-hboth.png
share/pixmaps/goffice/${GNOME_VERSION}/bar-hminus.png
share/pixmaps/goffice/${GNOME_VERSION}/bar-hplus.png
share/pixmaps/goffice/${GNOME_VERSION}/bar-none.png
share/pixmaps/goffice/${GNOME_VERSION}/bar-vboth.png
share/pixmaps/goffice/${GNOME_VERSION}/bar-vminus.png
share/pixmaps/goffice/${GNOME_VERSION}/bar-vplus.png
share/pixmaps/goffice/${GNOME_VERSION}/bar.xpm
share/pixmaps/goffice/${GNOME_VERSION}/bubble.xpm
share/pixmaps/goffice/${GNOME_VERSION}/chart_area_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_area_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_area_1_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_bar_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_bar_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_bar_1_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_bar_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_bar_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_bar_2_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_boxplot_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_boxplot_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_boxplot_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_boxplot_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_bubble_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_color_polar_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_colored_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_column_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_column_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_column_1_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_column_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_column_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_column_2_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_column_3_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cone_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cone_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cone_1_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cone_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cone_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cone_2_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cone_3_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_contour_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_contour_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cylinder_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cylinder_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cylinder_1_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cylinder_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cylinder_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cylinder_2_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_cylinder_3_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_dropbar_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_dropbar_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_dropbar_1_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_dropbar_1_4.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_histogram_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_histogram_1_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_histogram_1_4.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_histogram_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_line_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_line_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_line_1_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_line_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_line_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_line_2_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_line_3_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_minmax_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_minmax_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_minmax_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_minmax_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pie_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pie_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pie_1_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pie_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pie_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pie_2_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pie_3_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pie_3_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_polar_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_prob_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pyramid_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pyramid_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pyramid_1_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pyramid_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pyramid_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pyramid_2_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_pyramid_3_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_radar_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_radar_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_radar_1_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_ring_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_ring_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_scatter_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_scatter_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_scatter_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_scatter_3_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_scatter_3_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_scatter_3_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_scatter_4_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_scatter_4_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_scatter_4_3.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_scatter_4_4.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_stock_1_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_stock_1_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_stock_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_stock_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_surface_2_1.png
share/pixmaps/goffice/${GNOME_VERSION}/chart_surface_2_2.png
share/pixmaps/goffice/${GNOME_VERSION}/color.xpm
share/pixmaps/goffice/${GNOME_VERSION}/column.xpm
share/pixmaps/goffice/${GNOME_VERSION}/contour.xpm
share/pixmaps/goffice/${GNOME_VERSION}/dist.xpm
share/pixmaps/goffice/${GNOME_VERSION}/doughnut.xpm
share/pixmaps/goffice/${GNOME_VERSION}/dropbar.xpm
share/pixmaps/goffice/${GNOME_VERSION}/linegraph.xpm
share/pixmaps/goffice/${GNOME_VERSION}/minmax.xpm
share/pixmaps/goffice/${GNOME_VERSION}/pie.xpm
share/pixmaps/goffice/${GNOME_VERSION}/polar.png
share/pixmaps/goffice/${GNOME_VERSION}/radar.xpm
share/pixmaps/goffice/${GNOME_VERSION}/scatter.xpm
share/pixmaps/goffice/${GNOME_VERSION}/stock.xpm
share/pixmaps/goffice/${GNOME_VERSION}/surface.xpm