summaryrefslogtreecommitdiff
path: root/graphics/scigraphica/patches
diff options
context:
space:
mode:
authordrochner <drochner>2001-07-11 10:39:09 +0000
committerdrochner <drochner>2001-07-11 10:39:09 +0000
commit5fcc3757a44b5cbae019b55f06c67f9fd7fd9fd2 (patch)
tree61427e01836d93842284e29b70e8966f22eb04a5 /graphics/scigraphica/patches
parent16c63a1b86b1a0a107930a5e0052367b8892a5d2 (diff)
downloadpkgsrc-5fcc3757a44b5cbae019b55f06c67f9fd7fd9fd2.tar.gz
update to 0.7.0
Changes: dozens of bugfixes and enhancements. Among other things, embedding images is now possible, as well as setting background images for the plots. Clipboard for plots: copy a plot, and paste it on a different plot window. Improved PostScript and WYSIWYG. It includes pysga.py, a Python module for interacting with plots and worksheets from the terminal. New scheme for storing numerical data in worksheets. Examples are included.
Diffstat (limited to 'graphics/scigraphica/patches')
-rw-r--r--graphics/scigraphica/patches/patch-ab14
-rw-r--r--graphics/scigraphica/patches/patch-ac41
2 files changed, 48 insertions, 7 deletions
diff --git a/graphics/scigraphica/patches/patch-ab b/graphics/scigraphica/patches/patch-ab
index 84e09e74819..9b963b411c8 100644
--- a/graphics/scigraphica/patches/patch-ab
+++ b/graphics/scigraphica/patches/patch-ab
@@ -1,13 +1,13 @@
-$NetBSD: patch-ab,v 1.1.1.1 2001/01/15 12:37:57 drochner Exp $
+$NetBSD: patch-ab,v 1.2 2001/07/11 10:39:10 drochner Exp $
---- src/Makefile.in.orig Tue Dec 5 17:06:49 2000
-+++ src/Makefile.in Wed Dec 13 15:36:26 2000
-@@ -139,7 +139,7 @@
+--- src/Makefile.in.orig Mon Jul 2 23:02:06 2001
++++ src/Makefile.in Tue Jul 10 13:52:18 2001
+@@ -151,7 +151,7 @@
DEFS = @DEFS@ -I. -I$(srcdir) -I..
CPPFLAGS = @CPPFLAGS@
-LDFLAGS = @LDFLAGS@
+LDFLAGS = @LDFLAGS@ -export-dynamic
- sga_OBJECTS = sg.o sg_arrange_dialog.o sg_axis_dialog.o sg_clipboard.o \
- sg_column_dialog.o sg_dataset.o sg_dataset_dialog.o sg_dialogs.o \
- sg_edit_function_dialog.o sg_ellipse_dialog.o sg_entry.o sg_file.o \
+ sga_OBJECTS = gtkpixmapmenuitem.o sg.o sg_arrange_dialog.o \
+ sg_axis_dialog.o sg_clipboard.o sg_column_dialog.o sg_dataset.o \
+ sg_dataset_dialog.o sg_dialogs.o sg_edit_function_dialog.o \
diff --git a/graphics/scigraphica/patches/patch-ac b/graphics/scigraphica/patches/patch-ac
new file mode 100644
index 00000000000..eab7012e334
--- /dev/null
+++ b/graphics/scigraphica/patches/patch-ac
@@ -0,0 +1,41 @@
+$NetBSD: patch-ac,v 1.1 2001/07/11 10:39:10 drochner Exp $
+
+--- zvt/subshell.c.orig Tue Jul 10 16:53:42 2001
++++ zvt/subshell.c Tue Jul 10 16:54:32 2001
+@@ -242,6 +242,7 @@
+ }
+ #endif
+
++#if 0
+ static int
+ path_max (void)
+ {
+@@ -255,7 +256,7 @@
+ # endif
+ #endif
+ }
+-
++#endif
+
+ static struct termios*
+ init_term_with_defaults(struct termios* term)
+@@ -423,18 +424,15 @@
+ static void *
+ get_ptys (int *master, int *slave, int update_wutmp)
+ {
+- GnomePtyOps op;
+ int result, n;
+ void *tag;
+ struct termios term;
+- char *term_name;
+
+ // *master = receive_fd (helper_socket_fdpassing [0]);
+ // *slave = receive_fd (helper_socket_fdpassing [0]);
+
+- term_name = ((char *) alloca (path_max())) + 1;
+ init_term_with_defaults(&term);
+- openpty (master, slave, term_name, &term, NULL);
++ openpty (master, slave, 0, &term, NULL);
+ tag=master;
+ return tag;
+ }