aboutsummaryrefslogtreecommitdiff
path: root/math/xldlas/files
diff options
context:
space:
mode:
authorMatthew Hunt <mph@FreeBSD.org>1998-04-27 05:25:02 +0000
committerMatthew Hunt <mph@FreeBSD.org>1998-04-27 05:25:02 +0000
commit3b7e6d1084f7779487fae03266ea36bc464a9586 (patch)
treee011c2088ea81175cbbb3f5363d588f5fb16e07b /math/xldlas/files
parent33c3bcb350d0e90a1ff26cb763fa2cae6f1eea02 (diff)
Import of xldlas, a statistics package.
PR: 5331 Submitted by: Pedro Giffuni S. <giffunip@asme.org>
Notes
Notes: svn path=/head/; revision=10705
Diffstat (limited to 'math/xldlas/files')
-rw-r--r--math/xldlas/files/patch-aa65
-rw-r--r--math/xldlas/files/patch-ab19
2 files changed, 84 insertions, 0 deletions
diff --git a/math/xldlas/files/patch-aa b/math/xldlas/files/patch-aa
new file mode 100644
index 000000000000..e3b14f5fd3a4
--- /dev/null
+++ b/math/xldlas/files/patch-aa
@@ -0,0 +1,65 @@
+*** Makefile.orig Tue Apr 1 12:13:32 1997
+--- Makefile Mon Apr 27 01:10:50 1998
+***************
+*** 16,26 ****
+ # want to remove the -DXFORMS86 declaration in the CCFLAG
+ # assignment.
+ #
+! CCFLAG = -O2 -Wall -DXFORMS86
+! CC = gcc
+! COMMONLIBS = -L/usr/X11R6/lib/ -lX11 -lm
+! SHAREDLIBS = -lforms
+! STATICLIBS = -lXpm /usr/X11R6/lib/libforms.a
+ ECHO = echo
+ RM = rm
+ RMOPTS = -f
+--- 16,26 ----
+ # want to remove the -DXFORMS86 declaration in the CCFLAG
+ # assignment.
+ #
+! CCFLAG = $(CFLAGS) -DXFORMS86 -DPREFIX=\"$(PREFIX)\" -I$(X11BASE)/include
+! #CC = gcc
+! COMMONLIBS = -L$(X11BASE)/lib/ -lX11 -lm
+! SHAREDLIBS = -lxforms
+! STATICLIBS = -lXpm $(X11BASE)/lib/libxforms.a
+ ECHO = echo
+ RM = rm
+ RMOPTS = -f
+***************
+*** 29,37 ****
+ INSTALL = install
+ INSTALLOPTS = -d
+
+! BINDIR = /usr/local/bin
+! MANDIR = /usr/man/man1
+! HELPDIR = /usr/local/xldlas/help
+ SRCDIR := $$PWD
+ USER := $$LOGNAME
+
+--- 29,37 ----
+ INSTALL = install
+ INSTALLOPTS = -d
+
+! BINDIR = $(PREFIX)/bin
+! MANDIR = $(PREFIX)/man/man1
+! HELPDIR = $(PREFIX)/share/xldlas/help
+ SRCDIR := $$PWD
+ USER := $$LOGNAME
+
+***************
+*** 115,121 ****
+ so the following commands will probably fail"; fi
+ @$(ECHO)
+ @$(CP) $(CPOPTS) xldlas $(BINDIR)
+! @if test '/usr/local/xldlas' = $(SRCDIR); then \
+ $(ECHO) Help Files Already in Place; else \
+ $(INSTALL) $(INSTALLOPTS) ./help $(HELPDIR); fi
+ install.man:
+--- 115,121 ----
+ so the following commands will probably fail"; fi
+ @$(ECHO)
+ @$(CP) $(CPOPTS) xldlas $(BINDIR)
+! @if test '/usr/local/share/xldlas' = $(SRCDIR); then \
+ $(ECHO) Help Files Already in Place; else \
+ $(INSTALL) $(INSTALLOPTS) ./help $(HELPDIR); fi
+ install.man:
diff --git a/math/xldlas/files/patch-ab b/math/xldlas/files/patch-ab
new file mode 100644
index 000000000000..a710ec8938be
--- /dev/null
+++ b/math/xldlas/files/patch-ab
@@ -0,0 +1,19 @@
+*** setstate.c.orig Mon May 12 10:42:06 1997
+--- setstate.c Mon Apr 27 01:10:29 1998
+***************
+*** 509,515 ****
+ }
+
+ if(found_label == FALSE)
+! strcpy(help_location,"/usr/local/xldlas/help/");
+ strcpy(searcher,"test -r ");
+ strcat(searcher, help_location);
+ strcat(searcher,"general.help");
+--- 509,515 ----
+ }
+
+ if(found_label == FALSE)
+! strcpy(help_location, PREFIX "/share/xldlas/help/");
+ strcpy(searcher,"test -r ");
+ strcat(searcher, help_location);
+ strcat(searcher,"general.help");