Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 May 2015 17:48:09 +0000 (UTC)
From:      Stephen Montgomery-Smith <stephen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r385421 - in head/math/reduce: . files
Message-ID:  <201505041748.t44Hm9Z2042668@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: stephen
Date: Mon May  4 17:48:08 2015
New Revision: 385421
URL: https://svnweb.freebsd.org/changeset/ports/385421

Log:
  - Add PDF documentation.
  - Add option to build PSL version (amd64 only).
  
  PR:		199910
  Submitted by:	Pedro F. Giffuni <pfg@FreeBSD.org>

Added:
  head/math/reduce/files/redpsl.1   (contents, props changed)
  head/math/reduce/files/runpsl.sh   (contents, props changed)
Modified:
  head/math/reduce/Makefile
  head/math/reduce/pkg-plist

Modified: head/math/reduce/Makefile
==============================================================================
--- head/math/reduce/Makefile	Mon May  4 17:42:29 2015	(r385420)
+++ head/math/reduce/Makefile	Mon May  4 17:48:08 2015	(r385421)
@@ -8,50 +8,87 @@ MASTER_SITES=	SF/${PORTNAME}-algebra/Sna
 DISTNAME=	${PORTNAME}-src-2014-11-30
 
 MAINTAINER=	pfg@FreeBSD.org
-COMMENT=	Portable general-purpose computer algebra system (CSL version)
+COMMENT=	Portable general-purpose computer algebra system
 
 LICENSE=	BSD2CLAUSE
 
 RUN_DEPENDS=	gnuplot:${PORTSDIR}/math/gnuplot
-LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg \
-		libpng.so:${PORTSDIR}/graphics/png \
-		libtiff.so:${PORTSDIR}/graphics/tiff
 
 USES=		autoreconf:build gmake tar:bzip2
-USE_XORG=	xext x11 xft
 
 WRKSRC=		${WRKDIR}/${DISTNAME}
 
-# Avoid GNU_CONFIGURE because it breaks staging
+# Avoid GNU_CONFIGURE as it breaks staging
 HAS_CONFIGURE=	yes
-CONFIGURE_ARGS+=	--with-csl
 ALL_TARGET=
 
 MAKE_JOBS_UNSAFE=	yes
 
+OPTIONS_SINGLE=		SGLSP
+OPTIONS_SINGLE_SGLSP=	CSL PSL
+CSL_DESC=	Codemist Standard Lisp - redcsl (portable, X11)
+PSL_DESC=	Portable Standard Lisp - redpsl (fast, amd64 only)
+OPTIONS_DEFAULT=	CSL
+
+CSL_CONFIGURE_WITH=	csl
+PSL_CONFIGURE_WITH=	psl
+CSL_USE=	xorg=x11,xext,xft
+OPTIONS_SUB=	yes
+
 .include <bsd.port.options.mk>
 
+.if ${PORT_OPTIONS:MCSL}
+LIB_DEPENDS+=	libjpeg.so:${PORTSDIR}/graphics/jpeg \
+		libpng.so:${PORTSDIR}/graphics/png \
+		libtiff.so:${PORTSDIR}/graphics/tiff
+CPPFLAGS+=	`freetype-config --cflags`
+LDFLAGS+=	`freetype-config --libs`
+.else
+ONLY_FOR_ARCHS= amd64
+.endif
+
 .if ${ARCH} == "amd64"
 TARGET_SDIR=	x86_64-unknown-${OPSYS:tl}${OSREL}
 .else
 TARGET_SDIR=	${ARCH}-unknown-${OPSYS:tl}${OSREL}
 .endif
-REDUCECSL=	${WRKSRC}/cslbuild/${TARGET_SDIR}/csl
 
-CPPFLAGS+=	`freetype-config --cflags`
-LDFLAGS+=	`freetype-config --libs`
+.if ${PORT_OPTIONS:MCSL}
+REDUCE_BINS=	${WRKSRC}/cslbuild/${TARGET_SDIR}
+.else
+REDUCE_BINS=	${WRKSRC}/pslbuild/${TARGET_SDIR}
+.endif
 
 do-install:
 	${MKDIR} ${STAGEDIR}${DATADIR}
-	${INSTALL_PROGRAM} ${REDUCECSL}/reduce ${STAGEDIR}${DATADIR}
-	${INSTALL_DATA} ${REDUCECSL}/reduce.img ${STAGEDIR}${DATADIR}
+.if ${PORT_OPTIONS:MCSL}
+	${INSTALL_DATA} ${REDUCE_BINS}/csl/reduce.img ${STAGEDIR}${DATADIR}
+	${INSTALL_PROGRAM} ${REDUCE_BINS}/csl/reduce ${STAGEDIR}${DATADIR}
 	${INSTALL_SCRIPT} ${FILESDIR}/runcsl.sh ${STAGEDIR}${PREFIX}/bin/redcsl
 	${INSTALL_MAN} ${FILESDIR}/redcsl.1 ${STAGEDIR}${MANPREFIX}/man/man1/
 	${MKDIR} ${STAGEDIR}${DATADIR}/reduce.doc
-	(cd ${REDUCECSL}/reduce.doc && ${COPYTREE_SHARE} . \
+	(cd ${REDUCE_BINS}/csl/reduce.doc && ${COPYTREE_SHARE} . \
 	    ${STAGEDIR}${DATADIR}/reduce.doc)
 	${MKDIR} ${STAGEDIR}${PREFIX}/${FONTDIR}
-	(cd ${REDUCECSL}/reduce.fonts && ${COPYTREE_SHARE} . \
+	(cd ${REDUCE_BINS}/csl/reduce.fonts && ${COPYTREE_SHARE} . \
 	    ${STAGEDIR}${DATADIR}/reduce.fonts)
+.else
+	${INSTALL_SCRIPT} ${FILESDIR}/runpsl.sh ${STAGEDIR}${PREFIX}/bin/redpsl
+	${INSTALL_MAN} ${FILESDIR}/redpsl.1 ${STAGEDIR}${MANPREFIX}/man/man1/
+	${MKDIR} ${STAGEDIR}${DATADIR}/psl
+	${INSTALL_PROGRAM} ${REDUCE_BINS}/psl/bpsl ${STAGEDIR}${DATADIR}/psl/
+	(cd ${REDUCE_BINS}/psl && ${COPYTREE_SHARE} . \
+	    ${STAGEDIR}${DATADIR}/psl "! -name bpsl")
+	${MKDIR} ${STAGEDIR}${PREFIX}/red
+	(cd ${REDUCE_BINS}/red && ${COPYTREE_SHARE} . \
+	    ${STAGEDIR}${DATADIR}/red)
+.endif
+.if ${PORT_OPTIONS:MDOCS}
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/doc/manual/manual.pdf\
+	    ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/doc/primers/*.pdf \
+	    ${STAGEDIR}${DOCSDIR}
+.endif
 
 .include <bsd.port.mk>

Added: head/math/reduce/files/redpsl.1
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/reduce/files/redpsl.1	Mon May  4 17:48:08 2015	(r385421)
@@ -0,0 +1,18 @@
+.TH REDPSL 1 "2010 October 10" "redpsl"
+.
+.
+.SH NAME
+redpsl \- Run REDUCE under PSL
+.
+.
+.SH Synopsis
+.B redpsl
+.
+.
+.SH DESCRIPTION
+.I redpsl
+runs REDUCE based on the 
+.BR PSL
+Lisp system.
+.
+.

Added: head/math/reduce/files/runpsl.sh
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/reduce/files/runpsl.sh	Mon May  4 17:48:08 2015	(r385421)
@@ -0,0 +1,13 @@
+#! /bin/sh
+
+case `uname -m` in
+amd64)
+      STORE=2000
+      ;;
+esac
+
+bin="/usr/local/share/reduce/psl/bpsl"
+img="/usr/local/share/reduce/red/reduce.img"
+
+exec $bin -td $STORE -f $img $*
+

Modified: head/math/reduce/pkg-plist
==============================================================================
--- head/math/reduce/pkg-plist	Mon May  4 17:42:29 2015	(r385420)
+++ head/math/reduce/pkg-plist	Mon May  4 17:48:08 2015	(r385421)
@@ -1,106 +1,1205 @@
-bin/redcsl
-man/man1/redcsl.1.gz
-%%DATADIR%%/reduce
-%%DATADIR%%/reduce.doc/BINARY-LICENSE.txt
-%%DATADIR%%/reduce.doc/BSD-LICENSE.txt
-%%DATADIR%%/reduce.doc/LGPL-2.1.txt
-%%DATADIR%%/reduce.doc/abstract.tex
-%%DATADIR%%/reduce.doc/acknowl.tex
-%%DATADIR%%/reduce.doc/appenda.tex
-%%DATADIR%%/reduce.doc/aprop.tex
-%%DATADIR%%/reduce.doc/cfrac.tex
-%%DATADIR%%/reduce.doc/command.tex
-%%DATADIR%%/reduce.doc/convert.tex
-%%DATADIR%%/reduce.doc/exprn.tex
-%%DATADIR%%/reduce.doc/header.tex
-%%DATADIR%%/reduce.doc/hephys.tex
-%%DATADIR%%/reduce.doc/heugcd.tex
-%%DATADIR%%/reduce.doc/index.html
-%%DATADIR%%/reduce.doc/inter.tex
-%%DATADIR%%/reduce.doc/intro.tex
-%%DATADIR%%/reduce.doc/io.tex
-%%DATADIR%%/reduce.doc/list.tex
-%%DATADIR%%/reduce.doc/macros.tex
-%%DATADIR%%/reduce.doc/maintain.tex
-%%DATADIR%%/reduce.doc/manual.tex
-%%DATADIR%%/reduce.doc/map.tex
-%%DATADIR%%/reduce.doc/matrix.tex
-%%DATADIR%%/reduce.doc/oper.tex
-%%DATADIR%%/reduce.doc/oper2.tex
-%%DATADIR%%/reduce.doc/polyrat.tex
-%%DATADIR%%/reduce.doc/proc.tex
-%%DATADIR%%/reduce.doc/progstr.tex
-%%DATADIR%%/reduce.doc/r38_0001.html
-%%DATADIR%%/reduce.doc/r38_0050.html
-%%DATADIR%%/reduce.doc/r38_0100.html
-%%DATADIR%%/reduce.doc/r38_0150.html
-%%DATADIR%%/reduce.doc/r38_0200.html
-%%DATADIR%%/reduce.doc/r38_0250.html
-%%DATADIR%%/reduce.doc/r38_0300.html
-%%DATADIR%%/reduce.doc/r38_0350.html
-%%DATADIR%%/reduce.doc/r38_0400.html
-%%DATADIR%%/reduce.doc/r38_0450.html
-%%DATADIR%%/reduce.doc/r38_0500.html
-%%DATADIR%%/reduce.doc/r38_0550.html
-%%DATADIR%%/reduce.doc/r38_0600.html
-%%DATADIR%%/reduce.doc/r38_0650.html
-%%DATADIR%%/reduce.doc/r38_idx.html
-%%DATADIR%%/reduce.doc/redlogo.gif
-%%DATADIR%%/reduce.doc/rememb.tex
-%%DATADIR%%/reduce.doc/rest.tex
-%%DATADIR%%/reduce.doc/rlisp88.tex
-%%DATADIR%%/reduce.doc/rlispref.tex
-%%DATADIR%%/reduce.doc/solve.tex
-%%DATADIR%%/reduce.doc/statemnt.tex
-%%DATADIR%%/reduce.doc/structr.tex
-%%DATADIR%%/reduce.doc/subst.tex
-%%DATADIR%%/reduce.doc/symbolic.tex
-%%DATADIR%%/reduce.doc/title.tex
-%%DATADIR%%/reduce.doc/util.tex
-%%DATADIR%%/reduce.fonts/README
-%%DATADIR%%/reduce.fonts/README.BaKoMa
-%%DATADIR%%/reduce.fonts/README.cmps-fonts
-%%DATADIR%%/reduce.fonts/cmex10.pfa
-%%DATADIR%%/reduce.fonts/cmex10.pfb
-%%DATADIR%%/reduce.fonts/cmex10.ttf
-%%DATADIR%%/reduce.fonts/cmex7.ttf
-%%DATADIR%%/reduce.fonts/cmex8.ttf
-%%DATADIR%%/reduce.fonts/cmex9.ttf
-%%DATADIR%%/reduce.fonts/cmmi10.pfa
-%%DATADIR%%/reduce.fonts/cmmi10.pfb
-%%DATADIR%%/reduce.fonts/cmmi10.ttf
-%%DATADIR%%/reduce.fonts/cmmi12.ttf
-%%DATADIR%%/reduce.fonts/cmmi5.ttf
-%%DATADIR%%/reduce.fonts/cmmi6.ttf
-%%DATADIR%%/reduce.fonts/cmmi7.ttf
-%%DATADIR%%/reduce.fonts/cmmi8.ttf
-%%DATADIR%%/reduce.fonts/cmmi9.ttf
-%%DATADIR%%/reduce.fonts/cmr10.pfa
-%%DATADIR%%/reduce.fonts/cmr10.pfb
-%%DATADIR%%/reduce.fonts/cmr10.ttf
-%%DATADIR%%/reduce.fonts/cmr12.ttf
-%%DATADIR%%/reduce.fonts/cmr17.ttf
-%%DATADIR%%/reduce.fonts/cmr5.ttf
-%%DATADIR%%/reduce.fonts/cmr6.ttf
-%%DATADIR%%/reduce.fonts/cmr7.ttf
-%%DATADIR%%/reduce.fonts/cmr8.ttf
-%%DATADIR%%/reduce.fonts/cmr9.ttf
-%%DATADIR%%/reduce.fonts/cmsy10.pfa
-%%DATADIR%%/reduce.fonts/cmsy10.pfb
-%%DATADIR%%/reduce.fonts/cmsy10.ttf
-%%DATADIR%%/reduce.fonts/cmsy5.ttf
-%%DATADIR%%/reduce.fonts/cmsy6.ttf
-%%DATADIR%%/reduce.fonts/cmsy7.ttf
-%%DATADIR%%/reduce.fonts/cmsy8.ttf
-%%DATADIR%%/reduce.fonts/cmsy9.ttf
-%%DATADIR%%/reduce.fonts/fonts.dir
-%%DATADIR%%/reduce.fonts/fonts.scale
-%%DATADIR%%/reduce.fonts/pfmfiles/cmex10.pfm
-%%DATADIR%%/reduce.fonts/pfmfiles/cmmi10.pfm
-%%DATADIR%%/reduce.fonts/pfmfiles/cmr10.pfm
-%%DATADIR%%/reduce.fonts/pfmfiles/cmsy10.pfm
-%%DATADIR%%/reduce.fonts/src/cmex10.asm.gz
-%%DATADIR%%/reduce.fonts/src/cmmi10.asm.gz
-%%DATADIR%%/reduce.fonts/src/cmr10.asm.gz
-%%DATADIR%%/reduce.fonts/src/cmsy10.asm.gz
-%%DATADIR%%/reduce.img
+%%CSL%%bin/redcsl
+%%CSL%%man/man1/redcsl.1.gz
+%%CSL%%%%DATADIR%%/reduce
+%%CSL%%%%DATADIR%%/reduce.doc/BINARY-LICENSE.txt
+%%CSL%%%%DATADIR%%/reduce.doc/BSD-LICENSE.txt
+%%CSL%%%%DATADIR%%/reduce.doc/LGPL-2.1.txt
+%%CSL%%%%DATADIR%%/reduce.doc/abstract.tex
+%%CSL%%%%DATADIR%%/reduce.doc/acknowl.tex
+%%CSL%%%%DATADIR%%/reduce.doc/appenda.tex
+%%CSL%%%%DATADIR%%/reduce.doc/aprop.tex
+%%CSL%%%%DATADIR%%/reduce.doc/cfrac.tex
+%%CSL%%%%DATADIR%%/reduce.doc/command.tex
+%%CSL%%%%DATADIR%%/reduce.doc/convert.tex
+%%CSL%%%%DATADIR%%/reduce.doc/exprn.tex
+%%CSL%%%%DATADIR%%/reduce.doc/header.tex
+%%CSL%%%%DATADIR%%/reduce.doc/hephys.tex
+%%CSL%%%%DATADIR%%/reduce.doc/heugcd.tex
+%%CSL%%%%DATADIR%%/reduce.doc/index.html
+%%CSL%%%%DATADIR%%/reduce.doc/inter.tex
+%%CSL%%%%DATADIR%%/reduce.doc/intro.tex
+%%CSL%%%%DATADIR%%/reduce.doc/io.tex
+%%CSL%%%%DATADIR%%/reduce.doc/list.tex
+%%CSL%%%%DATADIR%%/reduce.doc/macros.tex
+%%CSL%%%%DATADIR%%/reduce.doc/maintain.tex
+%%CSL%%%%DATADIR%%/reduce.doc/manual.tex
+%%CSL%%%%DATADIR%%/reduce.doc/map.tex
+%%CSL%%%%DATADIR%%/reduce.doc/matrix.tex
+%%CSL%%%%DATADIR%%/reduce.doc/oper.tex
+%%CSL%%%%DATADIR%%/reduce.doc/oper2.tex
+%%CSL%%%%DATADIR%%/reduce.doc/polyrat.tex
+%%CSL%%%%DATADIR%%/reduce.doc/proc.tex
+%%CSL%%%%DATADIR%%/reduce.doc/progstr.tex
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0001.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0050.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0100.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0150.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0200.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0250.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0300.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0350.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0400.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0450.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0500.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0550.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0600.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_0650.html
+%%CSL%%%%DATADIR%%/reduce.doc/r38_idx.html
+%%CSL%%%%DATADIR%%/reduce.doc/redlogo.gif
+%%CSL%%%%DATADIR%%/reduce.doc/rememb.tex
+%%CSL%%%%DATADIR%%/reduce.doc/rest.tex
+%%CSL%%%%DATADIR%%/reduce.doc/rlisp88.tex
+%%CSL%%%%DATADIR%%/reduce.doc/rlispref.tex
+%%CSL%%%%DATADIR%%/reduce.doc/solve.tex
+%%CSL%%%%DATADIR%%/reduce.doc/statemnt.tex
+%%CSL%%%%DATADIR%%/reduce.doc/structr.tex
+%%CSL%%%%DATADIR%%/reduce.doc/subst.tex
+%%CSL%%%%DATADIR%%/reduce.doc/symbolic.tex
+%%CSL%%%%DATADIR%%/reduce.doc/title.tex
+%%CSL%%%%DATADIR%%/reduce.doc/util.tex
+%%CSL%%%%DATADIR%%/reduce.fonts/README
+%%CSL%%%%DATADIR%%/reduce.fonts/README.BaKoMa
+%%CSL%%%%DATADIR%%/reduce.fonts/README.cmps-fonts
+%%CSL%%%%DATADIR%%/reduce.fonts/cmex10.pfa
+%%CSL%%%%DATADIR%%/reduce.fonts/cmex10.pfb
+%%CSL%%%%DATADIR%%/reduce.fonts/cmex10.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmex7.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmex8.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmex9.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmmi10.pfa
+%%CSL%%%%DATADIR%%/reduce.fonts/cmmi10.pfb
+%%CSL%%%%DATADIR%%/reduce.fonts/cmmi10.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmmi12.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmmi5.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmmi6.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmmi7.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmmi8.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmmi9.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmr10.pfa
+%%CSL%%%%DATADIR%%/reduce.fonts/cmr10.pfb
+%%CSL%%%%DATADIR%%/reduce.fonts/cmr10.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmr12.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmr17.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmr5.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmr6.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmr7.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmr8.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmr9.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmsy10.pfa
+%%CSL%%%%DATADIR%%/reduce.fonts/cmsy10.pfb
+%%CSL%%%%DATADIR%%/reduce.fonts/cmsy10.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmsy5.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmsy6.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmsy7.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmsy8.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/cmsy9.ttf
+%%CSL%%%%DATADIR%%/reduce.fonts/fonts.dir
+%%CSL%%%%DATADIR%%/reduce.fonts/fonts.scale
+%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmex10.pfm
+%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmmi10.pfm
+%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmr10.pfm
+%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmsy10.pfm
+%%CSL%%%%DATADIR%%/reduce.fonts/src/cmex10.asm.gz
+%%CSL%%%%DATADIR%%/reduce.fonts/src/cmmi10.asm.gz
+%%CSL%%%%DATADIR%%/reduce.fonts/src/cmr10.asm.gz
+%%CSL%%%%DATADIR%%/reduce.fonts/src/cmsy10.asm.gz
+%%CSL%%%%DATADIR%%/reduce.img
+%%PSL%%bin/redpsl
+%%PSL%%man/man1/redpsl.1.gz
+%%PSL%%%%DATADIR%%/psl/386-ext.b
+%%PSL%%%%DATADIR%%/psl/64
+%%PSL%%%%DATADIR%%/psl/AMD64-cmac.b
+%%PSL%%%%DATADIR%%/psl/AMD64-comp.b
+%%PSL%%%%DATADIR%%/psl/AMD64-lap.b
+%%PSL%%%%DATADIR%%/psl/AMD64-spec.b
+%%PSL%%%%DATADIR%%/psl/addr2id.b
+%%PSL%%%%DATADIR%%/psl/allocators.b
+%%PSL%%%%DATADIR%%/psl/apply-lap.b
+%%PSL%%%%DATADIR%%/psl/arithmetic.b
+%%PSL%%%%DATADIR%%/psl/association.b
+%%PSL%%%%DATADIR%%/psl/autoload-tr.b
+%%PSL%%%%DATADIR%%/psl/autoload.b
+%%PSL%%%%DATADIR%%/psl/backquote.b
+%%PSL%%%%DATADIR%%/psl/backtrace.b
+%%PSL%%%%DATADIR%%/psl/base-io.b
+%%PSL%%%%DATADIR%%/psl/big-faslend.b
+%%PSL%%%%DATADIR%%/psl/big.b
+%%PSL%%%%DATADIR%%/psl/bind-macros.b
+%%PSL%%%%DATADIR%%/psl/binding.b
+%%PSL%%%%DATADIR%%/psl/bpsl
+%%PSL%%%%DATADIR%%/psl/break.b
+%%PSL%%%%DATADIR%%/psl/build.b
+%%PSL%%%%DATADIR%%/psl/c-template.b
+%%PSL%%%%DATADIR%%/psl/carcdr.b
+%%PSL%%%%DATADIR%%/psl/carcdrnil.b
+%%PSL%%%%DATADIR%%/psl/catch-throw.b
+%%PSL%%%%DATADIR%%/psl/char-io.b
+%%PSL%%%%DATADIR%%/psl/char-macro.b
+%%PSL%%%%DATADIR%%/psl/chars.b
+%%PSL%%%%DATADIR%%/psl/clcomp.b
+%%PSL%%%%DATADIR%%/psl/clcomp1.b
+%%PSL%%%%DATADIR%%/psl/comasm.b
+%%PSL%%%%DATADIR%%/psl/common.b
+%%PSL%%%%DATADIR%%/psl/comp-decls.b
+%%PSL%%%%DATADIR%%/psl/compat.b
+%%PSL%%%%DATADIR%%/psl/compiler.b
+%%PSL%%%%DATADIR%%/psl/compsupport.b
+%%PSL%%%%DATADIR%%/psl/cond-macros.b
+%%PSL%%%%DATADIR%%/psl/cons-mkvect.b
+%%PSL%%%%DATADIR%%/psl/constants.b
+%%PSL%%%%DATADIR%%/psl/cont-error.b
+%%PSL%%%%DATADIR%%/psl/copiers.b
+%%PSL%%%%DATADIR%%/psl/copying-gc.b
+%%PSL%%%%DATADIR%%/psl/datamachine.b
+%%PSL%%%%DATADIR%%/psl/debug.b
+%%PSL%%%%DATADIR%%/psl/def-smacro.b
+%%PSL%%%%DATADIR%%/psl/defconst.b
+%%PSL%%%%DATADIR%%/psl/defmacro.b
+%%PSL%%%%DATADIR%%/psl/defmacro1.b
+%%PSL%%%%DATADIR%%/psl/defmacro2.b
+%%PSL%%%%DATADIR%%/psl/defobject.b
+%%PSL%%%%DATADIR%%/psl/disassemble.b
+%%PSL%%%%DATADIR%%/psl/double.b
+%%PSL%%%%DATADIR%%/psl/double32.b
+%%PSL%%%%DATADIR%%/psl/dskin.b
+%%PSL%%%%DATADIR%%/psl/dumplisp.b
+%%PSL%%%%DATADIR%%/psl/easy-non-sl.b
+%%PSL%%%%DATADIR%%/psl/easy-sl.b
+%%PSL%%%%DATADIR%%/psl/environment.b
+%%PSL%%%%DATADIR%%/psl/equal.b
+%%PSL%%%%DATADIR%%/psl/error-eset.b
+%%PSL%%%%DATADIR%%/psl/error-hand.b
+%%PSL%%%%DATADIR%%/psl/eval-apply.b
+%%PSL%%%%DATADIR%%/psl/eval-when.b
+%%PSL%%%%DATADIR%%/psl/evalhook.b
+%%PSL%%%%DATADIR%%/psl/explode-com.b
+%%PSL%%%%DATADIR%%/psl/f-evectors.b
+%%PSL%%%%DATADIR%%/psl/f-strings.b
+%%PSL%%%%DATADIR%%/psl/f-vectors.b
+%%PSL%%%%DATADIR%%/psl/fasl-decls.b
+%%PSL%%%%DATADIR%%/psl/faslout.b
+%%PSL%%%%DATADIR%%/psl/fast-chars.b
+%%PSL%%%%DATADIR%%/psl/fast-int.b
+%%PSL%%%%DATADIR%%/psl/fast-math.b
+%%PSL%%%%DATADIR%%/psl/fast-vector.b
+%%PSL%%%%DATADIR%%/psl/fc-indirect.b
+%%PSL%%%%DATADIR%%/psl/fcomp.b
+%%PSL%%%%DATADIR%%/psl/find.b
+%%PSL%%%%DATADIR%%/psl/fixup.b
+%%PSL%%%%DATADIR%%/psl/fluid-globl.b
+%%PSL%%%%DATADIR%%/psl/for-macro.b
+%%PSL%%%%DATADIR%%/psl/funct-prims.b
+%%PSL%%%%DATADIR%%/psl/get-options.b
+%%PSL%%%%DATADIR%%/psl/gsort.b
+%%PSL%%%%DATADIR%%/psl/hash-decls.b
+%%PSL%%%%DATADIR%%/psl/hcons.b
+%%PSL%%%%DATADIR%%/psl/helferlein.b
+%%PSL%%%%DATADIR%%/psl/if-system.b
+%%PSL%%%%DATADIR%%/psl/if.b
+%%PSL%%%%DATADIR%%/psl/init-file.b
+%%PSL%%%%DATADIR%%/psl/inum.b
+%%PSL%%%%DATADIR%%/psl/io-data.b
+%%PSL%%%%DATADIR%%/psl/io-decls.b
+%%PSL%%%%DATADIR%%/psl/io-errors.b
+%%PSL%%%%DATADIR%%/psl/io-extens.b
+%%PSL%%%%DATADIR%%/psl/iter-macros.b
+%%PSL%%%%DATADIR%%/psl/knowntocomp.b
+%%PSL%%%%DATADIR%%/psl/l2cdatacon.b
+%%PSL%%%%DATADIR%%/psl/lap-to-asm.b
+%%PSL%%%%DATADIR%%/psl/lap.b
+%%PSL%%%%DATADIR%%/psl/lisp-macros.b
+%%PSL%%%%DATADIR%%/psl/load-psl.b
+%%PSL%%%%DATADIR%%/psl/load.b
+%%PSL%%%%DATADIR%%/psl/loop-macros.b
+%%PSL%%%%DATADIR%%/psl/macroexpand.b
+%%PSL%%%%DATADIR%%/psl/mathlib.b
+%%PSL%%%%DATADIR%%/psl/mbarith.b
+%%PSL%%%%DATADIR%%/psl/merge-sort.b
+%%PSL%%%%DATADIR%%/psl/misc-macros.b
+%%PSL%%%%DATADIR%%/psl/mstruct.b
+%%PSL%%%%DATADIR%%/psl/muls.b
+%%PSL%%%%DATADIR%%/psl/muls32.b
+%%PSL%%%%DATADIR%%/psl/nbarith.b
+%%PSL%%%%DATADIR%%/psl/nbig.b
+%%PSL%%%%DATADIR%%/psl/nbig0.b
+%%PSL%%%%DATADIR%%/psl/nbig30.b
+%%PSL%%%%DATADIR%%/psl/nbig30a.b
+%%PSL%%%%DATADIR%%/psl/nbig32.b
+%%PSL%%%%DATADIR%%/psl/nbig32a.b
+%%PSL%%%%DATADIR%%/psl/nbittab.b
+%%PSL%%%%DATADIR%%/psl/nstruct.b
+%%PSL%%%%DATADIR%%/psl/numeric-ops.b
+%%PSL%%%%DATADIR%%/psl/obj-const.b
+%%PSL%%%%DATADIR%%/psl/obj-dflavor.b
+%%PSL%%%%DATADIR%%/psl/obj-dmethod.b
+%%PSL%%%%DATADIR%%/psl/obj-hash.b
+%%PSL%%%%DATADIR%%/psl/obj-lib.b
+%%PSL%%%%DATADIR%%/psl/obj-send.b
+%%PSL%%%%DATADIR%%/psl/objects.b
+%%PSL%%%%DATADIR%%/psl/objinstance.b
+%%PSL%%%%DATADIR%%/psl/oblist.b
+%%PSL%%%%DATADIR%%/psl/onoff.b
+%%PSL%%%%DATADIR%%/psl/open-close.b
+%%PSL%%%%DATADIR%%/psl/other-io.b
+%%PSL%%%%DATADIR%%/psl/others-sl.b
+%%PSL%%%%DATADIR%%/psl/p1-decls.b
+%%PSL%%%%DATADIR%%/psl/pass-1-lap.b
+%%PSL%%%%DATADIR%%/psl/pass-1.b
+%%PSL%%%%DATADIR%%/psl/pass-2-3.b
+%%PSL%%%%DATADIR%%/psl/pipes.b
+%%PSL%%%%DATADIR%%/psl/pp-file.b
+%%PSL%%%%DATADIR%%/psl/pp-lisp.b
+%%PSL%%%%DATADIR%%/psl/pp.b
+%%PSL%%%%DATADIR%%/psl/printers.b
+%%PSL%%%%DATADIR%%/psl/printf.b
+%%PSL%%%%DATADIR%%/psl/prog-friend.b
+%%PSL%%%%DATADIR%%/psl/prop-list.b
+%%PSL%%%%DATADIR%%/psl/pslcomp.b
+%%PSL%%%%DATADIR%%/psl/pslcompat.b
+%%PSL%%%%DATADIR%%/psl/putd-getd.b
+%%PSL%%%%DATADIR%%/psl/putprint.b
+%%PSL%%%%DATADIR%%/psl/pvm.b
+%%PSL%%%%DATADIR%%/psl/qualified-timing.b
+%%PSL%%%%DATADIR%%/psl/rds-wrs.b
+%%PSL%%%%DATADIR%%/psl/read-macros.b
+%%PSL%%%%DATADIR%%/psl/read-utils.b
+%%PSL%%%%DATADIR%%/psl/read.b
+%%PSL%%%%DATADIR%%/psl/read1macros.b
+%%PSL%%%%DATADIR%%/psl/read2macros.b
+%%PSL%%%%DATADIR%%/psl/rprint.b
+%%PSL%%%%DATADIR%%/psl/s-strings.b
+%%PSL%%%%DATADIR%%/psl/s-vectors.b
+%%PSL%%%%DATADIR%%/psl/scan-table.b
+%%PSL%%%%DATADIR%%/psl/sequence.b
+%%PSL%%%%DATADIR%%/psl/set-macros.b
+%%PSL%%%%DATADIR%%/psl/set1-macros.b
+%%PSL%%%%DATADIR%%/psl/set2-macros.b
+%%PSL%%%%DATADIR%%/psl/sets.b
+%%PSL%%%%DATADIR%%/psl/shmem.b
+%%PSL%%%%DATADIR%%/psl/spy.b
+%%PSL%%%%DATADIR%%/psl/static-gc.b
+%%PSL%%%%DATADIR%%/psl/step.b
+%%PSL%%%%DATADIR%%/psl/str-input.b
+%%PSL%%%%DATADIR%%/psl/str-search.b
+%%PSL%%%%DATADIR%%/psl/string-gen.b
+%%PSL%%%%DATADIR%%/psl/strings.b
+%%PSL%%%%DATADIR%%/psl/symbol-vals.b
+%%PSL%%%%DATADIR%%/psl/symget.b
+%%PSL%%%%DATADIR%%/psl/sys-consts.b
+%%PSL%%%%DATADIR%%/psl/sys-date.b
+%%PSL%%%%DATADIR%%/psl/sys-dm.b
+%%PSL%%%%DATADIR%%/psl/sys-extras.b
+%%PSL%%%%DATADIR%%/psl/sys-faslin.b
+%%PSL%%%%DATADIR%%/psl/sys-gc.b
+%%PSL%%%%DATADIR%%/psl/sys-io.b
+%%PSL%%%%DATADIR%%/psl/sys-macros.b
+%%PSL%%%%DATADIR%%/psl/syslisp-syn.b
+%%PSL%%%%DATADIR%%/psl/syslisp.b
+%%PSL%%%%DATADIR%%/psl/tags.b
+%%PSL%%%%DATADIR%%/psl/timc.b
+%%PSL%%%%DATADIR%%/psl/token-decls.b
+%%PSL%%%%DATADIR%%/psl/token-scan.b
+%%PSL%%%%DATADIR%%/psl/top-loop.b
+%%PSL%%%%DATADIR%%/psl/trap.b
+%%PSL%%%%DATADIR%%/psl/type-conver.b
+%%PSL%%%%DATADIR%%/psl/type-error.b
+%%PSL%%%%DATADIR%%/psl/unixAMD64-asm.b
+%%PSL%%%%DATADIR%%/psl/useful.b
+%%PSL%%%%DATADIR%%/psl/vector-fix.b
+%%PSL%%%%DATADIR%%/psl/vectors.b
+%%PSL%%%%DATADIR%%/psl/vfvect.b
+%%PSL%%%%DATADIR%%/psl/wdeclare.b
+%%PSL%%%%DATADIR%%/psl/wfloat.b
+%%PSL%%%%DATADIR%%/psl/write-float.b
+%%PSL%%%%DATADIR%%/psl/zbig.b
+%%PSL%%%%DATADIR%%/red/_definta.lap
+%%PSL%%%%DATADIR%%/red/_defintb.lap
+%%PSL%%%%DATADIR%%/red/_definte.lap
+%%PSL%%%%DATADIR%%/red/_defintf.lap
+%%PSL%%%%DATADIR%%/red/_definti.lap
+%%PSL%%%%DATADIR%%/red/_defintk.lap
+%%PSL%%%%DATADIR%%/red/_susy2.lap
+%%PSL%%%%DATADIR%%/red/a2dip.b
+%%PSL%%%%DATADIR%%/red/acfsf.b
+%%PSL%%%%DATADIR%%/red/acfsfbnf.b
+%%PSL%%%%DATADIR%%/red/acfsfgs.b
+%%PSL%%%%DATADIR%%/red/acfsfmisc.b
+%%PSL%%%%DATADIR%%/red/acfsfqe.b
+%%PSL%%%%DATADIR%%/red/acfsfsiat.b
+%%PSL%%%%DATADIR%%/red/acfsfsism.b
+%%PSL%%%%DATADIR%%/red/afactor.b
+%%PSL%%%%DATADIR%%/red/alg-form.b
+%%PSL%%%%DATADIR%%/red/alg.b
+%%PSL%%%%DATADIR%%/red/algbool.b
+%%PSL%%%%DATADIR%%/red/algdcl.b
+%%PSL%%%%DATADIR%%/red/algfn.b
+%%PSL%%%%DATADIR%%/red/algint.b
+%%PSL%%%%DATADIR%%/red/allroot.b
+%%PSL%%%%DATADIR%%/red/alphas.b
+%%PSL%%%%DATADIR%%/red/antisubs.b
+%%PSL%%%%DATADIR%%/red/applysym.b
+%%PSL%%%%DATADIR%%/red/approx.b
+%%PSL%%%%DATADIR%%/red/arinv.b
+%%PSL%%%%DATADIR%%/red/arith.b
+%%PSL%%%%DATADIR%%/red/arnum.b
+%%PSL%%%%DATADIR%%/red/array.b
+%%PSL%%%%DATADIR%%/red/assert.b
+%%PSL%%%%DATADIR%%/red/assertcheckfn.b
+%%PSL%%%%DATADIR%%/red/assertproc.b
+%%PSL%%%%DATADIR%%/red/assist.b
+%%PSL%%%%DATADIR%%/red/atensor.b
+%%PSL%%%%DATADIR%%/red/auxitens.b
+%%PSL%%%%DATADIR%%/red/avector.b
+%%PSL%%%%DATADIR%%/red/backtrck.b
+%%PSL%%%%DATADIR%%/red/baglist.b
+%%PSL%%%%DATADIR%%/red/bareiss.b
+%%PSL%%%%DATADIR%%/red/bas.b
+%%PSL%%%%DATADIR%%/red/basis.b
+%%PSL%%%%DATADIR%%/red/bcoeff.b
+%%PSL%%%%DATADIR%%/red/bcsf.b
+%%PSL%%%%DATADIR%%/red/bfauxil.b
+%%PSL%%%%DATADIR%%/red/bfdoer.b
+%%PSL%%%%DATADIR%%/red/bfdoer2.b
+%%PSL%%%%DATADIR%%/red/bfelem.b
+%%PSL%%%%DATADIR%%/red/bibasis.b
+%%PSL%%%%DATADIR%%/red/bibasis_interface.b
+%%PSL%%%%DATADIR%%/red/bibasis_involutive.b
+%%PSL%%%%DATADIR%%/red/bibasis_janet_tree.b
+%%PSL%%%%DATADIR%%/red/bibasis_monom.b
+%%PSL%%%%DATADIR%%/red/bibasis_polynom.b
+%%PSL%%%%DATADIR%%/red/bibasis_qset.b
+%%PSL%%%%DATADIR%%/red/bibasis_triple.b
+%%PSL%%%%DATADIR%%/red/bibasis_tset.b
+%%PSL%%%%DATADIR%%/red/bigmodp.b
+%%PSL%%%%DATADIR%%/red/block.b
+%%PSL%%%%DATADIR%%/red/block4.b
+%%PSL%%%%DATADIR%%/red/boolean.b
+%%PSL%%%%DATADIR%%/red/bootstrap.img
+%%PSL%%%%DATADIR%%/red/bounds.b
+%%PSL%%%%DATADIR%%/red/bquote.b
+%%PSL%%%%DATADIR%%/red/breduce.b
+%%PSL%%%%DATADIR%%/red/buchbg.b
+%%PSL%%%%DATADIR%%/red/cali.b
+%%PSL%%%%DATADIR%%/red/calimat.b
+%%PSL%%%%DATADIR%%/red/camal.b
+%%PSL%%%%DATADIR%%/red/cantens.b
+%%PSL%%%%DATADIR%%/red/cdiff.b
+%%PSL%%%%DATADIR%%/red/cdiffx.b
+%%PSL%%%%DATADIR%%/red/cedit.b
+%%PSL%%%%DATADIR%%/red/cface.b
+%%PSL%%%%DATADIR%%/red/cgb.b
+%%PSL%%%%DATADIR%%/red/changevr.b
+%%PSL%%%%DATADIR%%/red/charname.b
+%%PSL%%%%DATADIR%%/red/charpol.b
+%%PSL%%%%DATADIR%%/red/chebysh.b
+%%PSL%%%%DATADIR%%/red/checkind.b
+%%PSL%%%%DATADIR%%/red/cholesky.b
+%%PSL%%%%DATADIR%%/red/cl.b
+%%PSL%%%%DATADIR%%/red/clbnf.b
+%%PSL%%%%DATADIR%%/red/clmisc.b
+%%PSL%%%%DATADIR%%/red/clnf.b
+%%PSL%%%%DATADIR%%/red/clprl.b
+%%PSL%%%%DATADIR%%/red/clqe.b
+%%PSL%%%%DATADIR%%/red/clresolv.b
+%%PSL%%%%DATADIR%%/red/clsimpl.b
+%%PSL%%%%DATADIR%%/red/clsl.b
+%%PSL%%%%DATADIR%%/red/cltab.b
+%%PSL%%%%DATADIR%%/red/coates.b
+%%PSL%%%%DATADIR%%/red/coatesid.b
+%%PSL%%%%DATADIR%%/red/codad1.b
+%%PSL%%%%DATADIR%%/red/codad2.b
+%%PSL%%%%DATADIR%%/red/codctl.b
+%%PSL%%%%DATADIR%%/red/coddec.b
+%%PSL%%%%DATADIR%%/red/coddom.b
+%%PSL%%%%DATADIR%%/red/codgen.b
+%%PSL%%%%DATADIR%%/red/codhrn.b
+%%PSL%%%%DATADIR%%/red/codmat.b
+%%PSL%%%%DATADIR%%/red/codopt.b
+%%PSL%%%%DATADIR%%/red/codpri.b
+%%PSL%%%%DATADIR%%/red/codstr.b
+%%PSL%%%%DATADIR%%/red/coeff.b
+%%PSL%%%%DATADIR%%/red/coeffts.b
+%%PSL%%%%DATADIR%%/red/cofactor.b
+%%PSL%%%%DATADIR%%/red/comfac.b
+%%PSL%%%%DATADIR%%/red/comment.b
+%%PSL%%%%DATADIR%%/red/compact.b
+%%PSL%%%%DATADIR%%/red/compactf.b
+%%PSL%%%%DATADIR%%/red/compat.b
+%%PSL%%%%DATADIR%%/red/complx.b
+%%PSL%%%%DATADIR%%/red/complxp.b
+%%PSL%%%%DATADIR%%/red/compopr.b
+%%PSL%%%%DATADIR%%/red/comprd.b
+%%PSL%%%%DATADIR%%/red/condense.b
+%%PSL%%%%DATADIR%%/red/conj.b
+%%PSL%%%%DATADIR%%/red/conlaw.b
+%%PSL%%%%DATADIR%%/red/conlaw0.b
+%%PSL%%%%DATADIR%%/red/conlaw1.b
+%%PSL%%%%DATADIR%%/red/conlaw2.b
+%%PSL%%%%DATADIR%%/red/conlaw3.b
+%%PSL%%%%DATADIR%%/red/conlaw4.b
+%%PSL%%%%DATADIR%%/red/constre.b
+%%PSL%%%%DATADIR%%/red/contact.b
+%%PSL%%%%DATADIR%%/red/contents.b
+%%PSL%%%%DATADIR%%/red/contfr.b
+%%PSL%%%%DATADIR%%/red/contfrac.b
+%%PSL%%%%DATADIR%%/red/control.b
+%%PSL%%%%DATADIR%%/red/contrtns.b
+%%PSL%%%%DATADIR%%/red/convert.b
+%%PSL%%%%DATADIR%%/red/cpxrn.b
+%%PSL%%%%DATADIR%%/red/crack.b
+%%PSL%%%%DATADIR%%/red/crdec.b
+%%PSL%%%%DATADIR%%/red/crdiffelim.b
+%%PSL%%%%DATADIR%%/red/crelem.b
+%%PSL%%%%DATADIR%%/red/crequsol.b
+%%PSL%%%%DATADIR%%/red/crgb.b
+%%PSL%%%%DATADIR%%/red/crgensep.b
+%%PSL%%%%DATADIR%%/red/crhomalg.b
+%%PSL%%%%DATADIR%%/red/crident.b
+%%PSL%%%%DATADIR%%/red/crineq.b
+%%PSL%%%%DATADIR%%/red/crinit.b
+%%PSL%%%%DATADIR%%/red/crint.b
+%%PSL%%%%DATADIR%%/red/crlinalg.b
+%%PSL%%%%DATADIR%%/red/crmain.b
+%%PSL%%%%DATADIR%%/red/crpvm.b
+%%PSL%%%%DATADIR%%/red/crsep.b
+%%PSL%%%%DATADIR%%/red/crshort.b
+%%PSL%%%%DATADIR%%/red/crsimp.b
+%%PSL%%%%DATADIR%%/red/crsimpso.b
+%%PSL%%%%DATADIR%%/red/crstruc.b
+%%PSL%%%%DATADIR%%/red/crsubsys.b
+%%PSL%%%%DATADIR%%/red/crtrafo.b
+%%PSL%%%%DATADIR%%/red/crunder.b
+%%PSL%%%%DATADIR%%/red/crutil.b
+%%PSL%%%%DATADIR%%/red/csolve.b
+%%PSL%%%%DATADIR%%/red/ctintro.b
+%%PSL%%%%DATADIR%%/red/cvit.b
+%%PSL%%%%DATADIR%%/red/cvitmap.b
+%%PSL%%%%DATADIR%%/red/dcfsf.b
+%%PSL%%%%DATADIR%%/red/dcfsfkacem.b
+%%PSL%%%%DATADIR%%/red/dcfsfmisc.b
+%%PSL%%%%DATADIR%%/red/dcfsfqe.b
+%%PSL%%%%DATADIR%%/red/dcfsfsism.b
+%%PSL%%%%DATADIR%%/red/decompos.b
+%%PSL%%%%DATADIR%%/red/decrep.b
+%%PSL%%%%DATADIR%%/red/defint.b
+%%PSL%%%%DATADIR%%/red/defint0.b
+%%PSL%%%%DATADIR%%/red/definta.b
+%%PSL%%%%DATADIR%%/red/defintb.b
+%%PSL%%%%DATADIR%%/red/defintc.b
+%%PSL%%%%DATADIR%%/red/defintd.b
+%%PSL%%%%DATADIR%%/red/definte.b
+%%PSL%%%%DATADIR%%/red/defintf.b
+%%PSL%%%%DATADIR%%/red/defintg.b
+%%PSL%%%%DATADIR%%/red/definth.b
+%%PSL%%%%DATADIR%%/red/definti.b
+%%PSL%%%%DATADIR%%/red/defintj.b
+%%PSL%%%%DATADIR%%/red/defintk.b
+%%PSL%%%%DATADIR%%/red/defintx.b
+%%PSL%%%%DATADIR%%/red/degform.b
+%%PSL%%%%DATADIR%%/red/degsets.b
+%%PSL%%%%DATADIR%%/red/depend.b
+%%PSL%%%%DATADIR%%/red/desir.b
+%%PSL%%%%DATADIR%%/red/det.b
+%%PSL%%%%DATADIR%%/red/df2q.b
+%%PSL%%%%DATADIR%%/red/dfpart.b
+%%PSL%%%%DATADIR%%/red/dfprin.b
+%%PSL%%%%DATADIR%%/red/diff.b
+%%PSL%%%%DATADIR%%/red/dilog.b
+%%PSL%%%%DATADIR%%/red/dint.b
+%%PSL%%%%DATADIR%%/red/dip2a.b
+%%PSL%%%%DATADIR%%/red/dipoly.b
+%%PSL%%%%DATADIR%%/red/dipoly1.b
+%%PSL%%%%DATADIR%%/red/dipprint.b
+%%PSL%%%%DATADIR%%/red/dipvars.b
+%%PSL%%%%DATADIR%%/red/discret.b
+%%PSL%%%%DATADIR%%/red/disjoin.b
+%%PSL%%%%DATADIR%%/red/distrib.b
+%%PSL%%%%DATADIR%%/red/divide.b
+%%PSL%%%%DATADIR%%/red/dmode.b
+%%PSL%%%%DATADIR%%/red/dmodeop.b
+%%PSL%%%%DATADIR%%/red/dp.b
+%%PSL%%%%DATADIR%%/red/dpmat.b
+%%PSL%%%%DATADIR%%/red/dpoly.b
+%%PSL%%%%DATADIR%%/red/driver.b
+%%PSL%%%%DATADIR%%/red/dummy.b
+%%PSL%%%%DATADIR%%/red/dummy1.b
+%%PSL%%%%DATADIR%%/red/dummy2.b
+%%PSL%%%%DATADIR%%/red/dummycnt.b
+%%PSL%%%%DATADIR%%/red/dvfsf.b
+%%PSL%%%%DATADIR%%/red/dvfsfmisc.b
+%%PSL%%%%DATADIR%%/red/dvfsfqe.b
+%%PSL%%%%DATADIR%%/red/dvfsfsiat.b
+%%PSL%%%%DATADIR%%/red/dvfsfsism.b
+%%PSL%%%%DATADIR%%/red/eds.b
+%%PSL%%%%DATADIR%%/red/edsaux.b
+%%PSL%%%%DATADIR%%/red/edscfrm.b
+%%PSL%%%%DATADIR%%/red/edsequiv.b
+%%PSL%%%%DATADIR%%/red/edseval.b
+%%PSL%%%%DATADIR%%/red/edsexptl.b
+%%PSL%%%%DATADIR%%/red/edsnorml.b
+%%PSL%%%%DATADIR%%/red/edspatch.b
+%%PSL%%%%DATADIR%%/red/edspde.b
+%%PSL%%%%DATADIR%%/red/edssolve.b
+%%PSL%%%%DATADIR%%/red/edsuser.b
+%%PSL%%%%DATADIR%%/red/elem.b
+%%PSL%%%%DATADIR%%/red/element.b
+%%PSL%%%%DATADIR%%/red/entry.b
+%%PSL%%%%DATADIR%%/red/eqn.b
+%%PSL%%%%DATADIR%%/red/evalmaps.b
+%%PSL%%%%DATADIR%%/red/exaux.b
+%%PSL%%%%DATADIR%%/red/excalc.b
+%%PSL%%%%DATADIR%%/red/exdf.b
+%%PSL%%%%DATADIR%%/red/exintro.b
+%%PSL%%%%DATADIR%%/red/exlists.b
+%%PSL%%%%DATADIR%%/red/expon.b
+%%PSL%%%%DATADIR%%/red/expres.b
+%%PSL%%%%DATADIR%%/red/exptchk.b
+%%PSL%%%%DATADIR%%/red/exptf.b
+%%PSL%%%%DATADIR%%/red/expvec.b
+%%PSL%%%%DATADIR%%/red/extops.b
+%%PSL%%%%DATADIR%%/red/extout.b
+%%PSL%%%%DATADIR%%/red/ezgcd.b
+%%PSL%%%%DATADIR%%/red/ezgcdf.b
+%%PSL%%%%DATADIR%%/red/facform.b
+%%PSL%%%%DATADIR%%/red/facmisc.b
+%%PSL%%%%DATADIR%%/red/facmod.b
+%%PSL%%%%DATADIR%%/red/facprim.b
+%%PSL%%%%DATADIR%%/red/facstr.b
+%%PSL%%%%DATADIR%%/red/factor.b
+%%PSL%%%%DATADIR%%/red/facuni.b
+%%PSL%%%%DATADIR%%/red/farith.b
+%%PSL%%%%DATADIR%%/red/fastmath.b
+%%PSL%%%%DATADIR%%/red/fastmod.b
+%%PSL%%%%DATADIR%%/red/fide.b
+%%PSL%%%%DATADIR%%/red/fide1.b
+%%PSL%%%%DATADIR%%/red/findmagc.b
+%%PSL%%%%DATADIR%%/red/findres.b
+%%PSL%%%%DATADIR%%/red/finitise.b
+%%PSL%%%%DATADIR%%/red/fixes2.b
+%%PSL%%%%DATADIR%%/red/fixsubf.b
+%%PSL%%%%DATADIR%%/red/fmprint.b
+%%PSL%%%%DATADIR%%/red/for88.b
+%%PSL%%%%DATADIR%%/red/forall.b
+%%PSL%%%%DATADIR%%/red/forall4.b
+%%PSL%%%%DATADIR%%/red/forder.b
+%%PSL%%%%DATADIR%%/red/form.b
+%%PSL%%%%DATADIR%%/red/form4.b
+%%PSL%%%%DATADIR%%/red/forstat.b
+%%PSL%%%%DATADIR%%/red/forstat4.b
+%%PSL%%%%DATADIR%%/red/fortpri.b
+%%PSL%%%%DATADIR%%/red/fourdom.b
+%%PSL%%%%DATADIR%%/red/fourplus.b
+%%PSL%%%%DATADIR%%/red/fps.b
+%%PSL%%%%DATADIR%%/red/fracdi.b
+%%PSL%%%%DATADIR%%/red/frames.b
+%%PSL%%%%DATADIR%%/red/froben.b
+%%PSL%%%%DATADIR%%/red/fsimplex.b
+%%PSL%%%%DATADIR%%/red/gauss.b
+%%PSL%%%%DATADIR%%/red/gb.b
+%%PSL%%%%DATADIR%%/red/gbsc.b
+%%PSL%%%%DATADIR%%/red/gcd.b
+%%PSL%%%%DATADIR%%/red/gcref.b
+%%PSL%%%%DATADIR%%/red/general.b
+%%PSL%%%%DATADIR%%/red/genmod.b
+%%PSL%%%%DATADIR%%/red/genparser.b
+%%PSL%%%%DATADIR%%/red/genpurfn.b
+%%PSL%%%%DATADIR%%/red/gentens.b
+%%PSL%%%%DATADIR%%/red/gentran.b
+%%PSL%%%%DATADIR%%/red/genus.b
+%%PSL%%%%DATADIR%%/red/geometry.b
+%%PSL%%%%DATADIR%%/red/geoprover.b
+%%PSL%%%%DATADIR%%/red/ghyper.b
+%%PSL%%%%DATADIR%%/red/gint.b
+%%PSL%%%%DATADIR%%/red/glexconv.b
+%%PSL%%%%DATADIR%%/red/glmat.b
+%%PSL%%%%DATADIR%%/red/glsolve.b
+%%PSL%%%%DATADIR%%/red/gnuintfc.b
+%%PSL%%%%DATADIR%%/red/gnupldrv.b
+%%PSL%%%%DATADIR%%/red/gnuplot.b
+%%PSL%%%%DATADIR%%/red/goutput.b
+%%PSL%%%%DATADIR%%/red/gparser.b
+%%PSL%%%%DATADIR%%/red/gramschm.b
+%%PSL%%%%DATADIR%%/red/grassman.b
+%%PSL%%%%DATADIR%%/red/greduo.b
+%%PSL%%%%DATADIR%%/red/grinter2.b
+%%PSL%%%%DATADIR%%/red/grinterf.b
+%%PSL%%%%DATADIR%%/red/groeb.b
+%%PSL%%%%DATADIR%%/red/groebcri.b
+%%PSL%%%%DATADIR%%/red/groebf.b
+%%PSL%%%%DATADIR%%/red/groebfac.b
+%%PSL%%%%DATADIR%%/red/groebidq.b
+%%PSL%%%%DATADIR%%/red/groebman.b
+%%PSL%%%%DATADIR%%/red/groebmes.b
+%%PSL%%%%DATADIR%%/red/groebner.b
+%%PSL%%%%DATADIR%%/red/groebnr2.b
+%%PSL%%%%DATADIR%%/red/groebopt.b
+%%PSL%%%%DATADIR%%/red/groebrst.b
+%%PSL%%%%DATADIR%%/red/groebsea.b
+%%PSL%%%%DATADIR%%/red/groebsor.b
+%%PSL%%%%DATADIR%%/red/groebspa.b
+%%PSL%%%%DATADIR%%/red/groebtra.b
+%%PSL%%%%DATADIR%%/red/groesolv.b
+%%PSL%%%%DATADIR%%/red/groeweak.b
+%%PSL%%%%DATADIR%%/red/guardian.b
+%%PSL%%%%DATADIR%%/red/guardianprint.b
+%%PSL%%%%DATADIR%%/red/guardianschemes.b
+%%PSL%%%%DATADIR%%/red/hacksqrt.b
+%%PSL%%%%DATADIR%%/red/halfangl.b
+%%PSL%%%%DATADIR%%/red/harmonic.b
+%%PSL%%%%DATADIR%%/red/hcvctors.b
+%%PSL%%%%DATADIR%%/red/hdiff.b
+%%PSL%%%%DATADIR%%/red/helpasst.b
+%%PSL%%%%DATADIR%%/red/hephys.b
+%%PSL%%%%DATADIR%%/red/hf.b
+%%PSL%%%%DATADIR%%/red/hggroeb.b
+%%PSL%%%%DATADIR%%/red/hgrsolve.b
+%%PSL%%%%DATADIR%%/red/hilbertp.b
+%%PSL%%%%DATADIR%%/red/hilberts.b
+%%PSL%%%%DATADIR%%/red/hille.b
+%%PSL%%%%DATADIR%%/red/hodge.b
+%%PSL%%%%DATADIR%%/red/homog.b
+%%PSL%%%%DATADIR%%/red/horner.b
+%%PSL%%%%DATADIR%%/red/hsub.b
+%%PSL%%%%DATADIR%%/red/hugo
+%%PSL%%%%DATADIR%%/red/hurwp.b
+%%PSL%%%%DATADIR%%/red/ibalp.b
+%%PSL%%%%DATADIR%%/red/ibalpkapur.b
+%%PSL%%%%DATADIR%%/red/ibalpqsat.b
+%%PSL%%%%DATADIR%%/red/ibasics.b
+%%PSL%%%%DATADIR%%/red/ideals.b
+%%PSL%%%%DATADIR%%/red/idepend.b
+%%PSL%%%%DATADIR%%/red/idexf.b
+%%PSL%%%%DATADIR%%/red/iimet.b
+%%PSL%%%%DATADIR%%/red/imageset.b
+%%PSL%%%%DATADIR%%/red/indices.b
+%%PSL%%%%DATADIR%%/red/indsymm.b
+%%PSL%%%%DATADIR%%/red/indxprin.b
+%%PSL%%%%DATADIR%%/red/ineq.b
+%%PSL%%%%DATADIR%%/red/infix.b
+%%PSL%%%%DATADIR%%/red/inline-defs.dat
+%%PSL%%%%DATADIR%%/red/innerprd.b
+%%PSL%%%%DATADIR%%/red/inspect.b
+%%PSL%%%%DATADIR%%/red/int.b
+%%PSL%%%%DATADIR%%/red/intbasis.b
+%%PSL%%%%DATADIR%%/red/integrator.b
+%%PSL%%%%DATADIR%%/red/inter.b
+%%PSL%%%%DATADIR%%/red/interfac.b
+%%PSL%%%%DATADIR%%/red/interpol.b
+%%PSL%%%%DATADIR%%/red/intf.b
+%%PSL%%%%DATADIR%%/red/intfac.b
+%%PSL%%%%DATADIR%%/red/intfierz.b
+%%PSL%%%%DATADIR%%/red/intrfc.b
+%%PSL%%%%DATADIR%%/red/intro.b
+%%PSL%%%%DATADIR%%/red/inttaylr.b
+%%PSL%%%%DATADIR%%/red/invbase.b
+%%PSL%%%%DATADIR%%/red/invbcomp.b
+%%PSL%%%%DATADIR%%/red/invbint.b
+%%PSL%%%%DATADIR%%/red/invol.b
+%%PSL%%%%DATADIR%%/red/io.b
+%%PSL%%%%DATADIR%%/red/ioto.b
+%%PSL%%%%DATADIR%%/red/ir2om.b
+%%PSL%%%%DATADIR%%/red/isolve.b
+%%PSL%%%%DATADIR%%/red/jhddiff.b
+%%PSL%%%%DATADIR%%/red/jhdriver.b
+%%PSL%%%%DATADIR%%/red/jordan.b
+%%PSL%%%%DATADIR%%/red/jordsymb.b
+%%PSL%%%%DATADIR%%/red/jpatches.b
+%%PSL%%%%DATADIR%%/red/jsymbols.b
+%%PSL%%%%DATADIR%%/red/kernel.b
+%%PSL%%%%DATADIR%%/red/kredelw.b
+%%PSL%%%%DATADIR%%/red/kronf.b
+%%PSL%%%%DATADIR%%/red/kuechl.b
+%%PSL%%%%DATADIR%%/red/lalr.b
+%%PSL%%%%DATADIR%%/red/lamatrix.b
+%%PSL%%%%DATADIR%%/red/laplace.b
+%%PSL%%%%DATADIR%%/red/lf.b
+%%PSL%%%%DATADIR%%/red/libreduce.b
+%%PSL%%%%DATADIR%%/red/lie.b
+%%PSL%%%%DATADIR%%/red/lie1234.b
+%%PSL%%%%DATADIR%%/red/liedf.b
+%%PSL%%%%DATADIR%%/red/liendmc1.b
+%%PSL%%%%DATADIR%%/red/liepde.b
+%%PSL%%%%DATADIR%%/red/lievalfm.b
+%%PSL%%%%DATADIR%%/red/limits.b
+%%PSL%%%%DATADIR%%/red/linalg.b
+%%PSL%%%%DATADIR%%/red/linband.b
+%%PSL%%%%DATADIR%%/red/linineq.b
+%%PSL%%%%DATADIR%%/red/linmodp.b
+%%PSL%%%%DATADIR%%/red/linop.b
+%%PSL%%%%DATADIR%%/red/linrec.b
+%%PSL%%%%DATADIR%%/red/linrel.b
+%%PSL%%%%DATADIR%%/red/liqsimp1.b
+%%PSL%%%%DATADIR%%/red/liqsimp2.b
+%%PSL%%%%DATADIR%%/red/list.b
+%%PSL%%%%DATADIR%%/red/listvecops.b
+%%PSL%%%%DATADIR%%/red/log2atan.b
+%%PSL%%%%DATADIR%%/red/logsort.b
+%%PSL%%%%DATADIR%%/red/loops.b
+%%PSL%%%%DATADIR%%/red/loops88.b
+%%PSL%%%%DATADIR%%/red/lpdo.b
+%%PSL%%%%DATADIR%%/red/lpri.b
+%%PSL%%%%DATADIR%%/red/lspc.b
+%%PSL%%%%DATADIR%%/red/lspfor.b
+%%PSL%%%%DATADIR%%/red/lsppasc.b
+%%PSL%%%%DATADIR%%/red/lsprat.b
+%%PSL%%%%DATADIR%%/red/lto.b
+%%PSL%%%%DATADIR%%/red/ludecom.b
+%%PSL%%%%DATADIR%%/red/makefour.b
+%%PSL%%%%DATADIR%%/red/makevars.b
+%%PSL%%%%DATADIR%%/red/maninp.b
+%%PSL%%%%DATADIR%%/red/map.b

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505041748.t44Hm9Z2042668>