diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-07-28 01:18:09 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-07-28 01:18:09 +0800 |
commit | 875d0855ab9420c5298599b5396348b3f1037ab6 (patch) | |
tree | b2c82a2badec2e45a958989d146273808337db94 /math | |
parent | b8cefccbf48878d3527391bc2538cb2d8b43b0b4 (diff) | |
download | marcuscom-ports-875d0855ab9420c5298599b5396348b3f1037ab6.tar.gz marcuscom-ports-875d0855ab9420c5298599b5396348b3f1037ab6.tar.zst marcuscom-ports-875d0855ab9420c5298599b5396348b3f1037ab6.zip |
-USE_X_PREFIX -> USE_XLIB.
-X11BASE -> LOCALBASE, libglade lives in LOCALBASE.
-Bump the PORTREVISION.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6858 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'math')
-rw-r--r-- | math/guppi/Makefile | 39 | ||||
-rw-r--r-- | math/guppi/distinfo | 3 | ||||
-rw-r--r-- | math/guppi/files/GNOME_Gnumeric_Graph.idl | 123 | ||||
-rw-r--r-- | math/guppi/files/patch-Makefile.in | 27 | ||||
-rw-r--r-- | math/guppi/files/patch-configure | 37 | ||||
-rw-r--r-- | math/guppi/files/patch-libguppitank_guppi-object-barchart.c | 18 | ||||
-rw-r--r-- | math/guppi/files/patch-ltmain.sh | 28 | ||||
-rw-r--r-- | math/guppi/files/patch-po::Makefile.in.in | 14 | ||||
-rw-r--r-- | math/guppi/files/patch-src_demo.c | 10 | ||||
-rw-r--r-- | math/guppi/files/patch-src_libguppiplot_guppi-layout-constraint.c | 10 | ||||
-rw-r--r-- | math/guppi/files/patch-src_libguppiplot_guppi-root-group-item.c | 18 | ||||
-rw-r--r-- | math/guppi/files/patch-src_libguppiplot_guppi-text-block.c | 10 | ||||
-rw-r--r-- | math/guppi/files/patch-src_libguppiplot_guppi-view-interval.c | 10 | ||||
-rw-r--r-- | math/guppi/files/patch-src_libguppispecfns_const.c | 12 | ||||
-rw-r--r-- | math/guppi/pkg-descr | 4 | ||||
-rw-r--r-- | math/guppi/pkg-plist | 311 |
16 files changed, 674 insertions, 0 deletions
diff --git a/math/guppi/Makefile b/math/guppi/Makefile new file mode 100644 index 000000000..f9057fd42 --- /dev/null +++ b/math/guppi/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: guppi +# Date created: 22 December 2000 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= guppi +PORTVERSION= 0.40.3 +PORTREVISION= 6 +CATEGORIES= math gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/Guppi/0.40 +DISTNAME= Guppi-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= A plotting program for GNOME + +LIB_DEPENDS= guile.15:${PORTSDIR}/lang/guile + +USE_GETTEXT= yes +USE_BZIP2= yes +USE_XLIB= yes +USE_GMAKE= yes +USE_GNOME= gnomeprefix gnomehack gnomelibs bonobo libglade gal gnometarget +USE_PYTHON= yes +INSTALLS_SHLIB= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-gnumeric --enable-explicit-python-linking +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libglade-1.0" \ + LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ + GNUMERIC_IDLDIR="${WRKDIR}/gnumeric" +PLIST_SUB= VERSION="${PORTVERSION}" + +post-extract: + @${MKDIR} ${WRKDIR}/gnumeric + @${CP} ${FILESDIR}/GNOME_Gnumeric_Graph.idl ${WRKDIR}/gnumeric + +.include <bsd.port.mk> diff --git a/math/guppi/distinfo b/math/guppi/distinfo new file mode 100644 index 000000000..24e56ce49 --- /dev/null +++ b/math/guppi/distinfo @@ -0,0 +1,3 @@ +MD5 (Guppi-0.40.3.tar.bz2) = 26ec6eb5b6fe7fb4e32ecff64d4f1b16 +SHA256 (Guppi-0.40.3.tar.bz2) = 732821df222b9fb1739e90d6d2d0698656237a1cceeef0569e56dfe6414d7a47 +SIZE (Guppi-0.40.3.tar.bz2) = 1016831 diff --git a/math/guppi/files/GNOME_Gnumeric_Graph.idl b/math/guppi/files/GNOME_Gnumeric_Graph.idl new file mode 100644 index 000000000..5a1049737 --- /dev/null +++ b/math/guppi/files/GNOME_Gnumeric_Graph.idl @@ -0,0 +1,123 @@ +/** + * The interfaces Gnumeric uses to communicate with graphing components + * + * Author: + * Jody Goldberg <jody@gnome.org> + */ +#include <Bonobo.idl> + +module GNOME { + module Gnumeric { + struct Pair { + short start; + short end; + }; + typedef long PlotID; + typedef long SeriesID; + typedef long VectorID; + typedef sequence<Pair> SeqPair; + typedef sequence<VectorID> VectorIDs; + typedef sequence<octet> Buffer; + + exception Error { string mesg; }; + + enum VectorType { + VECTOR_TYPE_SCALAR, + VECTOR_TYPE_DATE, + VECTOR_TYPE_STRING + }; + + /* This is a place holder */ + interface VectorSelection { + oneway void selected (in SeqPair ranges); + }; + module Scalar { + typedef sequence<double> Seq; + interface Vector : VectorSelection { + oneway void changed (in short start, in Seq new_values); + void value (out Seq values); + }; + }; + module String { + typedef sequence<string> Seq; + interface Vector : VectorSelection { + oneway void changed (in short start, in Seq new_values); + void value (out Seq values); + }; + }; + + module Graph_v2 { + interface ConfigGuru : Bonobo::Control { + oneway void applyChanges (); + }; + + interface DataGuru : ConfigGuru { + readonly attribute Buffer spec; + + /** + * seriesSetDimension : + * + * Add/Remove/Edit the vector associated with a specific dimension + * of an series. + * + * a vectorID of -1 will remove the dimension. + */ + void seriesSetDimension (in SeriesID seriesID, + in string dim, + in VectorID vectorID) + raises (Error); + + PlotID plotAdd () raises (Error); + void plotDelete (in PlotID plot) raises (Error); + SeriesID seriesAdd (in PlotID plot) raises (Error); + void seriesDelete (in SeriesID series) raises (Error); + }; + + interface Manager : Bonobo::Embeddable { + ConfigGuru configure (in string type); + + /** + * Read : + * A full specified document including enough markup + * information to assist in data assignment and for + * persistence. + * + * Write : + * Take a possibly incomplete description of a graph using + * a subset of the dtd used for persistence and initialize + * the graphs state. The document refers to vectors by + * IDs that were assigned previously. + */ + attribute Buffer spec; + + /** + * addVector : + * + * Register new vectors and get their callbacks. + */ + VectorSelection addVector (in VectorSelection v, + in VectorType type, in VectorID id, + in string default_fmt); + + /** + * clearVectors : + * + * Remove all references to the existing set of vectors. + */ + oneway void clearVectors (); + + /** + * arrangeVectors : + * + * Take the set of vectors and their optional + * headers in the order specified by the + * supplied @data ids, and arrange them into a + * graph using the 'current' graph type. + */ + oneway void arrangeVectors (in VectorIDs data, + in VectorIDs optional_headers); + + }; + }; + }; +}; diff --git a/math/guppi/files/patch-Makefile.in b/math/guppi/files/patch-Makefile.in new file mode 100644 index 000000000..755f3510c --- /dev/null +++ b/math/guppi/files/patch-Makefile.in @@ -0,0 +1,27 @@ + +$FreeBSD: ports/math/guppi/files/patch-Makefile.in,v 1.4 2002/07/11 17:16:00 sobomax Exp $ + +--- Makefile.in.orig Thu Jul 11 04:03:22 2002 ++++ Makefile.in Thu Jul 11 04:04:37 2002 +@@ -197,7 +197,7 @@ + #appdir = $(datadir)/apps/Applications + #app_DATA = guppi.desktop + +-confexecdir = $(libdir) ++confexecdir = $(sysconfdir) + confexec_DATA = libguppiConf.sh + CLEANFILES = libguppiConf.sh xml-i18n-extract xml-i18n-merge xml-i18n-update + +@@ -537,10 +537,10 @@ + + + libguppiConf.sh: libguppiConf.sh.in Makefile +- sed -e 's?\@LIBGUPPI_LIBDIR\@?$(LIBGUPPI_LIBDIR)?g' \ ++ sed -e 's?\@LIBGUPPI_LIBDIR\@?$(LIBGUPPI_LIBDIR) $(PY_LIB_LOC)?g' \ + -e 's?\@LIBGUPPI_INCLUDEDIR\@?$(LIBGUPPI_INCLUDEDIR)?g' \ + -e 's?\@VERSION\@?$(VERSION)?g' \ +- -e 's?\@LIBGUPPI_LIBS\@?$(LIBGUPPI_LIBS)?g' \ ++ -e 's?\@LIBGUPPI_LIBS\@?$(LIBGUPPI_LIBS) $(PY_LIBS) $(PTHREAD_LIB)?g' \ + < $(srcdir)/libguppiConf.sh.in > libguppiConf.tmp \ + && mv libguppiConf.tmp libguppiConf.sh + diff --git a/math/guppi/files/patch-configure b/math/guppi/files/patch-configure new file mode 100644 index 000000000..502653ff7 --- /dev/null +++ b/math/guppi/files/patch-configure @@ -0,0 +1,37 @@ + +$FreeBSD: ports/math/guppi/files/patch-configure,v 1.4 2002/03/14 14:24:24 sobomax Exp $ + +--- configure.orig Thu Mar 14 15:27:59 2002 ++++ configure Thu Mar 14 15:30:18 2002 +@@ -1259,10 +1259,10 @@ + + # The aliases save the names the user supplied, while $host etc. + # will get canonicalized. +-test -n "$target_alias" && +- test "$program_prefix$program_suffix$program_transform_name" = \ +- NONENONEs,x,x, && +- program_prefix=${target_alias}- ++#test -n "$target_alias" && ++# test "$program_prefix$program_suffix$program_transform_name" = \ ++# NONENONEs,x,x, && ++# program_prefix=${target_alias}- + + ac_config_headers="$ac_config_headers config.h" + +@@ -11158,15 +11158,13 @@ + + gnumeric_msg="not enabled" + gnumeric_enabled=no +-GNUMERIC_IDLDIR="" + GUPPI_GNUMERIC_LIBS="" + GUPPI_GNUMERIC_CFLAGS="" + GUPPI_GNUMERIC_GRAPH_VERSION=Graph_v2 + if test x"$enable_gnumeric" = xyes; then + echo "$as_me:11166: checking Gnumeric is installed" >&5 + echo $ECHO_N "checking Gnumeric is installed... $ECHO_C" >&6 +- if gnome-config --moddatadir gnumeric > /dev/null 2>&1; then +- GNUMERIC_IDLDIR=`gnome-config --moddatadir gnumeric`/idl ++ if /usr/bin/true; then + + echo "$as_me:11171: result: yes" >&5 + echo "${ECHO_T}yes" >&6 diff --git a/math/guppi/files/patch-libguppitank_guppi-object-barchart.c b/math/guppi/files/patch-libguppitank_guppi-object-barchart.c new file mode 100644 index 000000000..a1921e07a --- /dev/null +++ b/math/guppi/files/patch-libguppitank_guppi-object-barchart.c @@ -0,0 +1,18 @@ +--- libguppitank/guppi-object-barchart.c.orig Mon Sep 6 15:04:13 2004 ++++ libguppitank/guppi-object-barchart.c Mon Sep 6 15:04:24 2004 +@@ -701,6 +701,7 @@ + break; + + default: ++ ; + } + } + +@@ -733,6 +734,7 @@ + break; + + default: ++ ; + } + } + diff --git a/math/guppi/files/patch-ltmain.sh b/math/guppi/files/patch-ltmain.sh new file mode 100644 index 000000000..9f946f76f --- /dev/null +++ b/math/guppi/files/patch-ltmain.sh @@ -0,0 +1,28 @@ + +$FreeBSD: ports/math/guppi/files/patch-ltmain.sh,v 1.4 2001/12/20 06:19:00 sobomax Exp $ + +--- ltmain.sh 2001/08/27 09:51:26 1.1 ++++ ltmain.sh 2001/08/27 09:51:42 +@@ -2408,6 +2408,9 @@ + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; ++ *-*-freebsd*) ++ # FreeBSD doesn't need this... ++ ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then +@@ -4175,10 +4178,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/math/guppi/files/patch-po::Makefile.in.in b/math/guppi/files/patch-po::Makefile.in.in new file mode 100644 index 000000000..df19992ee --- /dev/null +++ b/math/guppi/files/patch-po::Makefile.in.in @@ -0,0 +1,14 @@ + +$FreeBSD: ports/math/guppi/files/patch-po::Makefile.in.in,v 1.1 2001/10/23 13:36:38 sobomax Exp $ + +--- po/Makefile.in.in 2001/10/23 11:34:52 1.1 ++++ po/Makefile.in.in 2001/10/23 11:35:09 +@@ -106,7 +106,7 @@ + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ +- lang=`echo $$cat | sed 's/\.gmo$$//'`; \ ++ lang=`echo $$cat | sed 's/\.mo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + if test -r $$cat; then \ diff --git a/math/guppi/files/patch-src_demo.c b/math/guppi/files/patch-src_demo.c new file mode 100644 index 000000000..c570364eb --- /dev/null +++ b/math/guppi/files/patch-src_demo.c @@ -0,0 +1,10 @@ +--- src/demo.c.orig Mon Sep 6 15:02:21 2004 ++++ src/demo.c Mon Sep 6 15:02:35 2004 +@@ -451,6 +451,7 @@ + compass_pos = GUPPI_NORTH; + break; + default: ++ ; + } + + guppi_element_state_set (state, diff --git a/math/guppi/files/patch-src_libguppiplot_guppi-layout-constraint.c b/math/guppi/files/patch-src_libguppiplot_guppi-layout-constraint.c new file mode 100644 index 000000000..074f628c3 --- /dev/null +++ b/math/guppi/files/patch-src_libguppiplot_guppi-layout-constraint.c @@ -0,0 +1,10 @@ +--- src/libguppiplot/guppi-layout-constraint.c.orig Mon Sep 6 15:00:27 2004 ++++ src/libguppiplot/guppi-layout-constraint.c Mon Sep 6 15:00:36 2004 +@@ -165,6 +165,7 @@ + + default: + /* Fall through, do nothing. */ ++ ; + } + + ti = term_info_new (type, factor, geom); diff --git a/math/guppi/files/patch-src_libguppiplot_guppi-root-group-item.c b/math/guppi/files/patch-src_libguppiplot_guppi-root-group-item.c new file mode 100644 index 000000000..8d53b397c --- /dev/null +++ b/math/guppi/files/patch-src_libguppiplot_guppi-root-group-item.c @@ -0,0 +1,18 @@ +--- src/libguppiplot/guppi-root-group-item.c.orig Mon Sep 6 15:01:23 2004 ++++ src/libguppiplot/guppi-root-group-item.c Mon Sep 6 15:01:35 2004 +@@ -548,6 +548,7 @@ + return motion_notify_event (root, &(ev->motion)); + + default: ++ ; + } + + return FALSE; +@@ -777,6 +778,7 @@ + case ROOT_GROUP_RESIZE_NONE: + default: + /* insure we do nothing */ ++ ; + } + + if (please_resize_canvas) diff --git a/math/guppi/files/patch-src_libguppiplot_guppi-text-block.c b/math/guppi/files/patch-src_libguppiplot_guppi-text-block.c new file mode 100644 index 000000000..af5475cc7 --- /dev/null +++ b/math/guppi/files/patch-src_libguppiplot_guppi-text-block.c @@ -0,0 +1,10 @@ +--- src/libguppiplot/guppi-text-block.c.orig Mon Sep 6 14:59:32 2004 ++++ src/libguppiplot/guppi-text-block.c Mon Sep 6 14:59:39 2004 +@@ -900,6 +900,7 @@ + + default: + /* Do nothing. */ ++ ; + } + + render_stack_evolve (stack, tt); diff --git a/math/guppi/files/patch-src_libguppiplot_guppi-view-interval.c b/math/guppi/files/patch-src_libguppiplot_guppi-view-interval.c new file mode 100644 index 000000000..94cb3e89f --- /dev/null +++ b/math/guppi/files/patch-src_libguppiplot_guppi-view-interval.c @@ -0,0 +1,10 @@ +--- src/libguppiplot/guppi-view-interval.c.orig Sun Aug 22 18:02:50 2004 ++++ src/libguppiplot/guppi-view-interval.c Sun Aug 22 18:03:02 2004 +@@ -227,6 +227,7 @@ + #endif + + default: ++ ; + } + + return TRUE; diff --git a/math/guppi/files/patch-src_libguppispecfns_const.c b/math/guppi/files/patch-src_libguppispecfns_const.c new file mode 100644 index 000000000..6ad9d5ad1 --- /dev/null +++ b/math/guppi/files/patch-src_libguppispecfns_const.c @@ -0,0 +1,12 @@ +--- src/libguppispecfns/const.c.orig Tue Apr 1 21:01:25 2003 ++++ src/libguppispecfns/const.c Tue Apr 1 21:01:35 2003 +@@ -96,7 +96,9 @@ + #ifdef INFINITIES + double INFINITY = 1.0 / 0.0; /* 99e999; */ + #else ++#ifndef INFINITY + double INFINITY = 1.79769313486231570815E308; /* 2**1024*(1-MACHEP) */ ++#endif + #endif + + #ifdef MINUSZERO diff --git a/math/guppi/pkg-descr b/math/guppi/pkg-descr new file mode 100644 index 000000000..0cb2bc344 --- /dev/null +++ b/math/guppi/pkg-descr @@ -0,0 +1,4 @@ +Guppi is a GPLed Gnome-based Guile and Python scriptable plot program with +integrated statistics capabilities. + +WWW: http://www.gnome.org/projects/guppi/ diff --git a/math/guppi/pkg-plist b/math/guppi/pkg-plist new file mode 100644 index 000000000..a69ce37d6 --- /dev/null +++ b/math/guppi/pkg-plist @@ -0,0 +1,311 @@ +bin/guppi-gnumeric +etc/libguppiConf.sh +include/gnome-1.0/libguppi/gnan.h +include/gnome-1.0/libguppi/guppi-2d.h +include/gnome-1.0/libguppi/guppi-alpha-template.h +include/gnome-1.0/libguppi/guppi-attribute-bag.h +include/gnome-1.0/libguppi/guppi-attribute-flavor.h +include/gnome-1.0/libguppi/guppi-attribute-widget.h +include/gnome-1.0/libguppi/guppi-axis-markers.h +include/gnome-1.0/libguppi/guppi-basic-tools.h +include/gnome-1.0/libguppi/guppi-canvas-group.h +include/gnome-1.0/libguppi/guppi-canvas-item.h +include/gnome-1.0/libguppi/guppi-category-core.h +include/gnome-1.0/libguppi/guppi-category.h +include/gnome-1.0/libguppi/guppi-color-palette.h +include/gnome-1.0/libguppi/guppi-config-dialog.h +include/gnome-1.0/libguppi/guppi-config-model.h +include/gnome-1.0/libguppi/guppi-convenient.h +include/gnome-1.0/libguppi/guppi-curve-calc.h +include/gnome-1.0/libguppi/guppi-curve-func.h +include/gnome-1.0/libguppi/guppi-curve-interpolate.h +include/gnome-1.0/libguppi/guppi-curve-poly.h +include/gnome-1.0/libguppi/guppi-curve.h +include/gnome-1.0/libguppi/guppi-data-flavor.h +include/gnome-1.0/libguppi/guppi-data-importer-plug-in.h +include/gnome-1.0/libguppi/guppi-data-importer.h +include/gnome-1.0/libguppi/guppi-data-init.h +include/gnome-1.0/libguppi/guppi-data-plug-in.h +include/gnome-1.0/libguppi/guppi-data-popup.h +include/gnome-1.0/libguppi/guppi-data-select.h +include/gnome-1.0/libguppi/guppi-data-socket.h +include/gnome-1.0/libguppi/guppi-data-table-core.h +include/gnome-1.0/libguppi/guppi-data-table.h +include/gnome-1.0/libguppi/guppi-data-tree-view.h +include/gnome-1.0/libguppi/guppi-data-tree.h +include/gnome-1.0/libguppi/guppi-data-ui-init.h +include/gnome-1.0/libguppi/guppi-data.h +include/gnome-1.0/libguppi/guppi-dataimpl-init.h +include/gnome-1.0/libguppi/guppi-date-indexed.h +include/gnome-1.0/libguppi/guppi-date-series-calc.h +include/gnome-1.0/libguppi/guppi-date-series-core.h +include/gnome-1.0/libguppi/guppi-date-series.h +include/gnome-1.0/libguppi/guppi-debug.h +include/gnome-1.0/libguppi/guppi-defaults.h +include/gnome-1.0/libguppi/guppi-defs.h +include/gnome-1.0/libguppi/guppi-dharma.h +include/gnome-1.0/libguppi/guppi-dialogs.h +include/gnome-1.0/libguppi/guppi-element-print.h +include/gnome-1.0/libguppi/guppi-element-state.h +include/gnome-1.0/libguppi/guppi-element-view.h +include/gnome-1.0/libguppi/guppi-enums.h +include/gnome-1.0/libguppi/guppi-file.h +include/gnome-1.0/libguppi/guppi-fn-wrapper.h +include/gnome-1.0/libguppi/guppi-garray.h +include/gnome-1.0/libguppi/guppi-geometry.h +include/gnome-1.0/libguppi/guppi-gpl.h +include/gnome-1.0/libguppi/guppi-group-state.h +include/gnome-1.0/libguppi/guppi-group-view-layout.h +include/gnome-1.0/libguppi/guppi-group-view.h +include/gnome-1.0/libguppi/guppi-gsml.h +include/gnome-1.0/libguppi/guppi-hash.h +include/gnome-1.0/libguppi/guppi-i18n.h +include/gnome-1.0/libguppi/guppi-layout-constraint.h +include/gnome-1.0/libguppi/guppi-layout-engine.h +include/gnome-1.0/libguppi/guppi-layout-rule-predef.h +include/gnome-1.0/libguppi/guppi-layout-rule.h +include/gnome-1.0/libguppi/guppi-marker.h +include/gnome-1.0/libguppi/guppi-matrix.h +include/gnome-1.0/libguppi/guppi-memory.h +include/gnome-1.0/libguppi/guppi-metric-entry.h +include/gnome-1.0/libguppi/guppi-metrics.h +include/gnome-1.0/libguppi/guppi-multiview.h +include/gnome-1.0/libguppi/guppi-paths.h +include/gnome-1.0/libguppi/guppi-pixbuf-stock.h +include/gnome-1.0/libguppi/guppi-pixbuf.h +include/gnome-1.0/libguppi/guppi-plot-init.h +include/gnome-1.0/libguppi/guppi-plot-plug-in.h +include/gnome-1.0/libguppi/guppi-plot-tool.h +include/gnome-1.0/libguppi/guppi-plot-toolhelp.h +include/gnome-1.0/libguppi/guppi-plot-toolkit.h +include/gnome-1.0/libguppi/guppi-plug-in-spec.h +include/gnome-1.0/libguppi/guppi-plug-in.h +include/gnome-1.0/libguppi/guppi-polynomial.h +include/gnome-1.0/libguppi/guppi-price-series-core.h +include/gnome-1.0/libguppi/guppi-price-series.h +include/gnome-1.0/libguppi/guppi-raster-text.h +include/gnome-1.0/libguppi/guppi-regression-linear.h +include/gnome-1.0/libguppi/guppi-regression-polynomial.h +include/gnome-1.0/libguppi/guppi-regression2d.h +include/gnome-1.0/libguppi/guppi-rgb.h +include/gnome-1.0/libguppi/guppi-root-group-item.h +include/gnome-1.0/libguppi/guppi-root-group-state.h +include/gnome-1.0/libguppi/guppi-root-group-tools.h +include/gnome-1.0/libguppi/guppi-root-group-view.h +include/gnome-1.0/libguppi/guppi-seq-boolean-core.h +include/gnome-1.0/libguppi/guppi-seq-boolean.h +include/gnome-1.0/libguppi/guppi-seq-categorical.h +include/gnome-1.0/libguppi/guppi-seq-date-core.h +include/gnome-1.0/libguppi/guppi-seq-date.h +include/gnome-1.0/libguppi/guppi-seq-integer-core.h +include/gnome-1.0/libguppi/guppi-seq-integer.h +include/gnome-1.0/libguppi/guppi-seq-object.h +include/gnome-1.0/libguppi/guppi-seq-scalar-calc.h +include/gnome-1.0/libguppi/guppi-seq-scalar-core.h +include/gnome-1.0/libguppi/guppi-seq-scalar-func.h +include/gnome-1.0/libguppi/guppi-seq-scalar.h +include/gnome-1.0/libguppi/guppi-seq-string-core.h +include/gnome-1.0/libguppi/guppi-seq-string.h +include/gnome-1.0/libguppi/guppi-seq.h +include/gnome-1.0/libguppi/guppi-simple-linreg.h +include/gnome-1.0/libguppi/guppi-specfns.h +include/gnome-1.0/libguppi/guppi-stat-init.h +include/gnome-1.0/libguppi/guppi-stream-preview.h +include/gnome-1.0/libguppi/guppi-stream.h +include/gnome-1.0/libguppi/guppi-string.h +include/gnome-1.0/libguppi/guppi-struct-core.h +include/gnome-1.0/libguppi/guppi-struct.h +include/gnome-1.0/libguppi/guppi-text-block.h +include/gnome-1.0/libguppi/guppi-text-tokens.h +include/gnome-1.0/libguppi/guppi-unique-id.h +include/gnome-1.0/libguppi/guppi-useful-init.h +include/gnome-1.0/libguppi/guppi-useful.h +include/gnome-1.0/libguppi/guppi-vector.h +include/gnome-1.0/libguppi/guppi-version.h +include/gnome-1.0/libguppi/guppi-view-interval.h +include/gnome-1.0/libguppi/guppi-xml.h +include/gnome-1.0/libguppi/mconf.h +include/gnome-1.0/libguppi/specfns_protos.h +include/gnome-1.0/libguppitank/guppi-object.h +include/gnome-1.0/libguppitank/guppi-tank-init.h +include/gnome-1.0/libguppitank/guppi-tank.h +lib/guppi/plug-ins/%%VERSION%%/plot/axis/axis.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/axis/guppi_axis.so +lib/guppi/plug-ins/%%VERSION%%/plot/background/background.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/background/guppi_background.so +lib/guppi/plug-ins/%%VERSION%%/plot/barchart/barchart-stackswap.png +lib/guppi/plug-ins/%%VERSION%%/plot/barchart/barchart.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/barchart/guppi_barchart.so +lib/guppi/plug-ins/%%VERSION%%/plot/boxplot/boxplot.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/boxplot/guppi_boxplot.so +lib/guppi/plug-ins/%%VERSION%%/plot/compass-box/compass-box.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/compass-box/guppi_compass_box.so +lib/guppi/plug-ins/%%VERSION%%/plot/frame/frame.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/frame/guppi_frame.so +lib/guppi/plug-ins/%%VERSION%%/plot/image/guppi_image.so +lib/guppi/plug-ins/%%VERSION%%/plot/image/image.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/legend/guppi_legend.so +lib/guppi/plug-ins/%%VERSION%%/plot/legend/legend.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/linechart/guppi_linechart.so +lib/guppi/plug-ins/%%VERSION%%/plot/linechart/linechart.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/linegraph/guppi_linegraph.so +lib/guppi/plug-ins/%%VERSION%%/plot/linegraph/linegraph.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/pie/guppi-pie-data.glade +lib/guppi/plug-ins/%%VERSION%%/plot/pie/guppi-pie-looks.glade +lib/guppi/plug-ins/%%VERSION%%/plot/pie/guppi-pie-state-config.glade +lib/guppi/plug-ins/%%VERSION%%/plot/pie/guppi_pie.so +lib/guppi/plug-ins/%%VERSION%%/plot/pie/pie-explode.png +lib/guppi/plug-ins/%%VERSION%%/plot/pie/pie-spin.png +lib/guppi/plug-ins/%%VERSION%%/plot/pie/pie.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/pricebars/guppi_pricebars.so +lib/guppi/plug-ins/%%VERSION%%/plot/pricebars/pricebars.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/scatter/guppi-scatter-state.glade +lib/guppi/plug-ins/%%VERSION%%/plot/scatter/guppi_scatter.so +lib/guppi/plug-ins/%%VERSION%%/plot/scatter/scatter-brush.png +lib/guppi/plug-ins/%%VERSION%%/plot/scatter/scatter-drag.png +lib/guppi/plug-ins/%%VERSION%%/plot/scatter/scatter.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/text/guppi-text-state.glade +lib/guppi/plug-ins/%%VERSION%%/plot/text/guppi_text.so +lib/guppi/plug-ins/%%VERSION%%/plot/text/text.plugin +lib/guppi/plug-ins/%%VERSION%%/plot/xybox/guppi_xybox.so +lib/guppi/plug-ins/%%VERSION%%/plot/xybox/xybox.plugin +lib/libguppi.so +lib/libguppi.so.16 +lib/libguppitank.so +lib/libguppitank.so.16 +share/aclocal/libguppi.m4 +share/gnome/guppi/glade/guppi-gnumeric-format-guru.glade +share/gnome/guppi/glade/view-properties.glade +share/gnome/guppi/scripts/guppi-gnumeric-plots.xml +share/gnome/help/guppi/C/c20.html +share/gnome/help/guppi/C/docbook.css +share/gnome/help/guppi/C/guppi.html +share/gnome/help/guppi/C/ln14.html +share/gnome/help/guppi/C/topic.dat +share/gnome/oaf/GNOME_Guppi_Gnumeric.oaf +share/gnome/pixmaps/gnome-guppi.png +share/gnome/pixmaps/guppi/area.xpm +share/gnome/pixmaps/guppi/bar.xpm +share/gnome/pixmaps/guppi/basic-home.png +share/gnome/pixmaps/guppi/basic-move.png +share/gnome/pixmaps/guppi/basic-reframe.png +share/gnome/pixmaps/guppi/basic-zoom.png +share/gnome/pixmaps/guppi/bubble.xpm +share/gnome/pixmaps/guppi/chart_bar_1_1.png +share/gnome/pixmaps/guppi/chart_bar_1_2.png +share/gnome/pixmaps/guppi/chart_bar_1_3.png +share/gnome/pixmaps/guppi/chart_bar_2_1.png +share/gnome/pixmaps/guppi/chart_bar_2_2.png +share/gnome/pixmaps/guppi/chart_bar_2_3.png +share/gnome/pixmaps/guppi/chart_bubble_1_1.png +share/gnome/pixmaps/guppi/chart_column_1_1.png +share/gnome/pixmaps/guppi/chart_column_1_2.png +share/gnome/pixmaps/guppi/chart_column_1_3.png +share/gnome/pixmaps/guppi/chart_column_2_1.png +share/gnome/pixmaps/guppi/chart_column_2_2.png +share/gnome/pixmaps/guppi/chart_column_2_3.png +share/gnome/pixmaps/guppi/chart_column_3_1.png +share/gnome/pixmaps/guppi/chart_cone_1_1.png +share/gnome/pixmaps/guppi/chart_cone_1_2.png +share/gnome/pixmaps/guppi/chart_cone_1_3.png +share/gnome/pixmaps/guppi/chart_cone_2_1.png +share/gnome/pixmaps/guppi/chart_cone_2_2.png +share/gnome/pixmaps/guppi/chart_cone_2_3.png +share/gnome/pixmaps/guppi/chart_cone_3_1.png +share/gnome/pixmaps/guppi/chart_cylinder_1_1.png +share/gnome/pixmaps/guppi/chart_cylinder_1_2.png +share/gnome/pixmaps/guppi/chart_cylinder_1_3.png +share/gnome/pixmaps/guppi/chart_cylinder_2_1.png +share/gnome/pixmaps/guppi/chart_cylinder_2_2.png +share/gnome/pixmaps/guppi/chart_cylinder_2_3.png +share/gnome/pixmaps/guppi/chart_cylinder_3_1.png +share/gnome/pixmaps/guppi/chart_line_1_1.png +share/gnome/pixmaps/guppi/chart_line_1_2.png +share/gnome/pixmaps/guppi/chart_line_1_3.png +share/gnome/pixmaps/guppi/chart_line_2_1.png +share/gnome/pixmaps/guppi/chart_line_2_2.png +share/gnome/pixmaps/guppi/chart_line_2_3.png +share/gnome/pixmaps/guppi/chart_line_3_1.png +share/gnome/pixmaps/guppi/chart_pie_1_1.png +share/gnome/pixmaps/guppi/chart_pie_1_2.png +share/gnome/pixmaps/guppi/chart_pie_1_3.png +share/gnome/pixmaps/guppi/chart_pie_2_1.png +share/gnome/pixmaps/guppi/chart_pie_2_2.png +share/gnome/pixmaps/guppi/chart_pie_2_3.png +share/gnome/pixmaps/guppi/chart_pyramid_1_1.png +share/gnome/pixmaps/guppi/chart_pyramid_1_2.png +share/gnome/pixmaps/guppi/chart_pyramid_1_3.png +share/gnome/pixmaps/guppi/chart_pyramid_2_1.png +share/gnome/pixmaps/guppi/chart_pyramid_2_2.png +share/gnome/pixmaps/guppi/chart_pyramid_2_3.png +share/gnome/pixmaps/guppi/chart_pyramid_3_1.png +share/gnome/pixmaps/guppi/chart_scatter_1_1.png +share/gnome/pixmaps/guppi/chart_scatter_2_1.png +share/gnome/pixmaps/guppi/chart_scatter_2_2.png +share/gnome/pixmaps/guppi/chart_scatter_3_1.png +share/gnome/pixmaps/guppi/chart_scatter_3_2.png +share/gnome/pixmaps/guppi/chart_stock_1_1.png +share/gnome/pixmaps/guppi/chart_stock_1_2.png +share/gnome/pixmaps/guppi/chart_stock_2_1.png +share/gnome/pixmaps/guppi/chart_stock_2_2.png +share/gnome/pixmaps/guppi/column.xpm +share/gnome/pixmaps/guppi/doughnut.xpm +share/gnome/pixmaps/guppi/fill-best.png +share/gnome/pixmaps/guppi/fill-horiz.png +share/gnome/pixmaps/guppi/fill-vert.png +share/gnome/pixmaps/guppi/guppi-splash.png +share/gnome/pixmaps/guppi/linegraph.xpm +share/gnome/pixmaps/guppi/lock.png +share/gnome/pixmaps/guppi/pie.xpm +share/gnome/pixmaps/guppi/radar.xpm +share/gnome/pixmaps/guppi/resize-to-win.png +share/gnome/pixmaps/guppi/scatter.xpm +share/gnome/pixmaps/guppi/stock.xpm +share/gnome/pixmaps/guppi/surface.xpm +share/locale/az/LC_MESSAGES/Guppi.mo +share/locale/da/LC_MESSAGES/Guppi.mo +share/locale/de/LC_MESSAGES/Guppi.mo +share/locale/el/LC_MESSAGES/Guppi.mo +share/locale/es/LC_MESSAGES/Guppi.mo +share/locale/fr/LC_MESSAGES/Guppi.mo +share/locale/is/LC_MESSAGES/Guppi.mo +share/locale/it/LC_MESSAGES/Guppi.mo +share/locale/nl/LC_MESSAGES/Guppi.mo +share/locale/no/LC_MESSAGES/Guppi.mo +share/locale/pl/LC_MESSAGES/Guppi.mo +share/locale/pt/LC_MESSAGES/Guppi.mo +share/locale/pt_BR/LC_MESSAGES/Guppi.mo +share/locale/ru/LC_MESSAGES/Guppi.mo +share/locale/sk/LC_MESSAGES/Guppi.mo +share/locale/sv/LC_MESSAGES/Guppi.mo +share/locale/tr/LC_MESSAGES/Guppi.mo +share/locale/uk/LC_MESSAGES/Guppi.mo +share/locale/zh_CN/LC_MESSAGES/Guppi.mo +@dirrm share/gnome/pixmaps/guppi +@dirrm share/gnome/help/guppi/C/images +@dirrm share/gnome/help/guppi/C +@dirrm share/gnome/help/guppi +@dirrm share/gnome/guppi/scripts +@dirrm share/gnome/guppi/glade +@dirrm share/gnome/guppi +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/xybox +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/text +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/scatter +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/pricebars +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/pie +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/linegraph +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/linechart +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/legend +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/image +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/frame +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/compass-box +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/boxplot +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/barchart +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/background +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot/axis +@dirrm lib/guppi/plug-ins/%%VERSION%%/plot +@dirrm lib/guppi/plug-ins/%%VERSION%% +@dirrm lib/guppi/plug-ins +@dirrm lib/guppi +@dirrm include/gnome-1.0/libguppitank +@dirrm include/gnome-1.0/libguppi |