diff options
author | jtb <jtb@pkgsrc.org> | 2003-04-29 22:41:43 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2003-04-29 22:41:43 +0000 |
commit | 8418abca7bc3dcd861cceffaa9a92d9818ee736e (patch) | |
tree | b231b3d6d07a21eef524f9c1ab740fa524693990 /math/yorick/patches | |
parent | c058f0dddcba398656bfcd9f9de7a34a81587f5d (diff) | |
download | pkgsrc-8418abca7bc3dcd861cceffaa9a92d9818ee736e.tar.gz |
Update to version 1.5.12.
Changes:
* The directory structure and configuration scripts have completely changed
* RGB colors supported for color= keyword, pli, plf, plfp
see help,color or help,pli for more information
* lsdir, mkdir, rmdir functions added so yorick can read and
manipulate directories by itself
* i86_primitives and other modern binary formats added
see help,createb and help,__i86 for more information
* cheby.i, convol.i, dawson.i, kepler.i added to interpreted
library
* added "hex" 3D transport solver (similar to drat 2D solver)
* improved the emacs/yorick.el package again, mostly by removing
unwanted "improvements" to emacs; see emacs/README
Diffstat (limited to 'math/yorick/patches')
-rw-r--r-- | math/yorick/patches/patch-aa | 22 | ||||
-rw-r--r-- | math/yorick/patches/patch-ab | 24 | ||||
-rw-r--r-- | math/yorick/patches/patch-ac | 12 |
3 files changed, 10 insertions, 48 deletions
diff --git a/math/yorick/patches/patch-aa b/math/yorick/patches/patch-aa index 4e6332b14c2..f28b6df0faa 100644 --- a/math/yorick/patches/patch-aa +++ b/math/yorick/patches/patch-aa @@ -1,13 +1,11 @@ -$NetBSD: patch-aa,v 1.1.1.1 2000/08/03 17:49:25 rh Exp $ +$NetBSD: patch-aa,v 1.2 2003/04/29 22:41:44 jtb Exp $ ---- Browser/Makefile.in.orig Fri Jan 3 19:24:16 1997 -+++ Browser/Makefile.in Thu Aug 3 19:34:42 2000 -@@ -67,7 +67,7 @@ - DESTDIR = - - install: all installdirs -- $(CP) gist $(DESTDIR)$(Y_BINDIR) -+ ${BSD_INSTALL_PROGRAM} gist $(DESTDIR)$(Y_BINDIR) - - uninstall: - $(RM) -r $(DESTDIR)$(Y_BINDIR)/gist +--- ysite.sh.orig ++++ ysite.sh +@@ -1,5 +1,5 @@ + #!/bin/sh +-prefix=. ++prefix=@PREFIX@ + Y_PLATFORM=. + Y_SITE=. + Y_HOME=. diff --git a/math/yorick/patches/patch-ab b/math/yorick/patches/patch-ab deleted file mode 100644 index c01385a6d52..00000000000 --- a/math/yorick/patches/patch-ab +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-ab,v 1.2 2002/01/18 17:32:23 drochner Exp $ - ---- Yorick/sysdep.c.orig Wed Dec 18 18:28:30 1996 -+++ Yorick/sysdep.c Fri Jan 18 18:26:28 2002 -@@ -127,7 +127,7 @@ - fp_trap(FP_TRAP_FASTMODE); - fp_enable(TRP_INVALID | TRP_DIV_BY_ZERO | TRP_OVERFLOW); - #endif --#ifdef __alpha -+#if defined(__alpha) && !defined(__NetBSD__) - /* References: exception_intro, ieee man pages */ - #include <machine/fpu.h> - ieee_set_fp_control(IEEE_TRAP_ENABLE_INV | IEEE_TRAP_ENABLE_DZE | -@@ -176,8 +176,10 @@ - definition had second parameter of type int; size_t (long) as here - makes more sense and has apparently superceded the original. - On machines with sizeof(int)<sizeof(long) this could be serious... */ -+#if 0 - extern char *getcwd(char *, unsigned long); - extern int chdir(const char *); -+#endif - #ifndef HAS_GETCWD - /* if neither getcwd nor getwd is present, we're out of luck */ - extern char *getwd(char *); diff --git a/math/yorick/patches/patch-ac b/math/yorick/patches/patch-ac deleted file mode 100644 index 752349b8e07..00000000000 --- a/math/yorick/patches/patch-ac +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2002/01/18 17:32:23 drochner Exp $ - ---- Yorick/yio.h.orig Thu Dec 5 01:49:39 1996 -+++ Yorick/yio.h Fri Jan 18 18:25:01 2002 -@@ -18,6 +18,7 @@ - #ifndef NO_STDIO_H - #include <stdio.h> - #endif -+#include <unistd.h> - - /* Here are the ANSI standard prototypes for all of the stdio.h functions - used by Yorick. The defintion of FILE is, of course, bogus, |