diff options
author | cpiazza <cpiazza@FreeBSD.org> | 2000-05-19 16:21:24 +0800 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 2000-05-19 16:21:24 +0800 |
commit | 9722da092bd48e540cbfe73b3fb8dcb89df9b387 (patch) | |
tree | 7b844756ed9fd4deed96ccd59b15dde2d0248589 /math/xlispstat/files | |
parent | f0ec171a9f440cc19267771512753af7119c24e2 (diff) | |
download | freebsd-ports-gnome-9722da092bd48e540cbfe73b3fb8dcb89df9b387.tar.gz freebsd-ports-gnome-9722da092bd48e540cbfe73b3fb8dcb89df9b387.tar.zst freebsd-ports-gnome-9722da092bd48e540cbfe73b3fb8dcb89df9b387.zip |
Update to 3.52.18
PR: 18439
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'math/xlispstat/files')
-rw-r--r-- | math/xlispstat/files/patch-ac | 46 | ||||
-rw-r--r-- | math/xlispstat/files/patch-aj | 75 | ||||
-rw-r--r-- | math/xlispstat/files/patch-ak | 17 |
3 files changed, 103 insertions, 35 deletions
diff --git a/math/xlispstat/files/patch-ac b/math/xlispstat/files/patch-ac index 88d62d3c3e1e..5d2b5e32e9c9 100644 --- a/math/xlispstat/files/patch-ac +++ b/math/xlispstat/files/patch-ac @@ -1,35 +1,11 @@ ---- configure.orig Wed Dec 17 06:12:43 1997 -+++ configure Thu Dec 23 16:38:07 1999 -@@ -521,6 +521,23 @@ - ac_n= ac_c='\c' ac_t= - fi - -+echo checking for FreeBSD -+cat > conftest.${ac_ext} <<EOF -+#include "confdefs.h" -+#ifdef __FreeBSD__ -+ yes -+#endif -+ -+EOF -+eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1" -+if egrep "yes" conftest.out >/dev/null 2>&1; then -+ rm -rf conftest* -+ bsd=1 -+ freebsd=1 -+ -+fi -+rm -f conftest* -+ - - - ac_aux_dir= -@@ -1304,7 +1321,7 @@ - if eval "test \"`echo '$ac_cv_func_'dlopen`\" = yes"; then - echo "$ac_t""yes" 1>&6 - -- FOREIGN_FILE="sysvr4-foreign.h" -+ FOREIGN_FILE="bsd-foreign.h" - foreign=1 - cat >> confdefs.h <<\EOF - #define HAVE_DLOPEN 1 +--- configure.orig Fri Mar 24 01:03:59 2000 ++++ configure Wed May 3 09:00:00 2000 +@@ -580,7 +580,7 @@ + # Set some default values + # + LIBS=-lm +-UCFLAGS=-O ++UCFLAGS=$CFLAGS + ULDFLAGS= + X11INCDIR_FLAG= + X11LIBDIR_FLAG= diff --git a/math/xlispstat/files/patch-aj b/math/xlispstat/files/patch-aj new file mode 100644 index 000000000000..125891637795 --- /dev/null +++ b/math/xlispstat/files/patch-aj @@ -0,0 +1,75 @@ +--- Makefile.in.orig Wed Feb 2 08:22:53 2000 ++++ Makefile.in Wed May 3 09:00:00 2000 +@@ -6,7 +6,8 @@ + ############################################################################## + ############################################################################## + # +-# XLSLIB -- directory for xlisp executable, startup, example, and help files ++# XLSLIB -- directory for xlisp example and help files ++# XLSLIBEXEC -- directory for xlisp executable and startup + # BINDIR -- directory for xlispstat shell script + # + # For the remaining parameters, if your machine has a subdirectory in the +@@ -34,7 +35,8 @@ + prefix = @prefix@ + exec_prefix = @exec_prefix@ + +-XLSLIB=${prefix}/lib/xlispstat ++XLSLIB=${prefix}/share/xlispstat ++XLSLIBEXEC=${prefix}/libexec/xlispstat + BINDIR=${exec_prefix}/bin + + GRAPHSYS = @GRAPHSYS@ +@@ -67,11 +69,11 @@ + .lsp.fsl: + echo "(compile-file \"$<\") (exit)" | ./xlisp + +-CFLAGS = -D${GRAPHSYS} ${UCFLAGS} ${X11INCDIR_FLAG} ++CFLAGS = -D${GRAPHSYS} ${UCFLAGS} ${X11INCDIR_FLAG} -Dunix + + LIBS = ${EXTRALIBS} -lm + +-LDFLAGS = ${ULDFLAGS} ++LDFLAGS+= ${ULDFLAGS} + + OSOBJS = xsdynload.o xssystem.o unixprim.o + +@@ -118,7 +120,7 @@ + compiler/assemble.fsl compiler/cmpfront.fsl + + xlispstat: setup.shell xlisp.wks +- ./setup.shell xlispstat ${XLSLIB} ++ ./setup.shell xlispstat ${XLSLIB} ${XLSLIBEXEC} + chmod a+x xlispstat + + xlisp.wks: xlisp ${CMPFSLFILES} ${FSLFILES} ${AUTOFSLFILES} +@@ -141,20 +143,21 @@ + install: installexecs installlsp + + installexecs: xlispstat xlisp installdirs +- -cp xlispstat ${BINDIR}/xlispstat +- -cp xlisp ${XLSLIB} ++ ${BSD_INSTALL_SCRIPT} xlispstat ${BINDIR}/xlispstat ++ ${BSD_INSTALL_PROGRAM} xlisp ${XLSLIBEXEC} + + installlsp: xlisp.wks xlisp.hlp ${AUTOFSLFILES} ${CMPFSLFILES} installdirs +- -cp xlisp.wks ${XLSLIB} +- -cp xlisp.hlp ${XLSLIB} +- -cp Autoload/_autoidx.lsp Autoload/*.fsl ${XLSLIB}/Autoload +- -cp Data/*.lsp ${XLSLIB}/Data +- -cp Examples/*.lsp ${XLSLIB}/Examples +-# -cp ${CMPFSLFILES} ${XLSLIB}/compiler ++ ${BSD_INSTALL_SCRIPT} xlisp.wks ${XLSLIBEXEC} ++ ${BSD_INSTALL_DATA} xlisp.hlp ${XLSLIB} ++ ${BSD_INSTALL_DATA} Autoload/_autoidx.lsp Autoload/*.fsl ${XLSLIB}/Autoload ++ ${BSD_INSTALL_DATA} Data/*.lsp ${XLSLIB}/Data ++ ${BSD_INSTALL_DATA} Examples/*.lsp ${XLSLIB}/Examples ++# ${BSD_INSTALL_DATA} ${CMPFSLFILES} ${XLSLIB}/compiler + + installdirs: + -mkdir -p ${BINDIR} + -mkdir -p ${XLSLIB} ++ -mkdir -p ${XLSLIBEXEC} + -mkdir ${XLSLIB}/Data + -mkdir ${XLSLIB}/Examples + -mkdir ${XLSLIB}/Autoload diff --git a/math/xlispstat/files/patch-ak b/math/xlispstat/files/patch-ak new file mode 100644 index 000000000000..f5e6ef63b721 --- /dev/null +++ b/math/xlispstat/files/patch-ak @@ -0,0 +1,17 @@ +--- setup.shell.orig Wed Sep 7 23:34:36 1994 ++++ setup.shell Wed May 3 09:00:00 2000 +@@ -2,11 +2,12 @@ + cat > $1 <<+++ + #!/bin/sh + XLISPLIB=$2 export XLISPLIB ++XLSLIBEXEC=$3 export XLSLIBEXEC + if test -f xlisp.wks; then WKS="xlisp.wks"; +-else WKS="\${XLISPLIB}/xlisp.wks"; ++else WKS="\${XLSLIBEXEC}/xlisp.wks"; + fi + if test -f xlisp; then XLISP=xlisp; +-else XLISP="\${XLISPLIB}/xlisp" ++else XLISP="\${XLSLIBEXEC}/xlisp" + fi + exec \${XLISP} -w\${WKS} \$* + +++ |