diff options
author | Rene Ladan <rene@FreeBSD.org> | 2014-04-11 13:20:44 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2014-04-11 13:20:44 +0000 |
commit | 7e5f1066a3f0e92bb3cfede4149d0ab19082f166 (patch) | |
tree | 2ada87dee73b3f9d975e2a80387974ade3423260 /math/xlispstat/files | |
parent | cd0bf1872918b712e1b62f797862a2f95b5d2e1d (diff) | |
download | ports-7e5f1066a3f0e92bb3cfede4149d0ab19082f166.tar.gz ports-7e5f1066a3f0e92bb3cfede4149d0ab19082f166.zip |
Notes
Diffstat (limited to 'math/xlispstat/files')
-rw-r--r-- | math/xlispstat/files/patch-aj | 62 | ||||
-rw-r--r-- | math/xlispstat/files/patch-ak | 17 |
2 files changed, 0 insertions, 79 deletions
diff --git a/math/xlispstat/files/patch-aj b/math/xlispstat/files/patch-aj deleted file mode 100644 index 37050a6d69e6..000000000000 --- a/math/xlispstat/files/patch-aj +++ /dev/null @@ -1,62 +0,0 @@ ---- Makefile.in.orig Wed Feb 2 08:22:53 2000 -+++ Makefile.in Wed May 3 09:00:00 2000 -@@ -7,13 +7,15 @@ - ############################################################################## - # - # XLSLIB -- directory for xlisp executable, startup, example, and help files -+# XLSLIBEXEC -- directory for xlisp executable and startup - # BINDIR -- directory for xlispstat shell script - # - - prefix = @prefix@ - exec_prefix = @exec_prefix@ - --XLSLIB=${prefix}/lib/xlispstat -+XLSLIB=${prefix}/share/xlispstat -+XLSLIBEXEC=${prefix}/libexec/xlispstat - BINDIR=${exec_prefix}/bin - - SHELL = /bin/sh -@@ -33,7 +35,7 @@ - LIBS = ${EXTRALIBS} -lm - - xlispstat: setup.shell xlisp.wks -- ./setup.shell xlispstat ${XLSLIB} -+ ./setup.shell xlispstat ${XLSLIB} ${XLSLIBEXEC} - chmod a+x xlispstat - - xlisp.wks: xlisp ${LSPDIR}/xlisp.wks -@@ -46,24 +48,25 @@ - rm -f xlisp - cp ${CDIR}/xlisp ./xlisp - ${CDIR}/xlisp: -- (cd ${CDIR}; make xlisp) -+ (cd ${CDIR}; ${MAKE} xlisp) - - 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 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 -+ ${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 - - 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 deleted file mode 100644 index f5e6ef63b721..000000000000 --- a/math/xlispstat/files/patch-ak +++ /dev/null @@ -1,17 +0,0 @@ ---- 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} \$* - +++ |