aboutsummaryrefslogtreecommitdiffstats
path: root/math/maxima
diff options
context:
space:
mode:
authorleeym <leeym@FreeBSD.org>2005-02-07 15:04:45 +0800
committerleeym <leeym@FreeBSD.org>2005-02-07 15:04:45 +0800
commite17cd30ab2535c57b45c7379d5d44f3c3f4dcca3 (patch)
tree6a3e777d07012fe2f4dd77f9ba5d8108320bd870 /math/maxima
parentaadde44d797b3770e8639f5ef382c572038b8c5c (diff)
downloadfreebsd-ports-gnome-e17cd30ab2535c57b45c7379d5d44f3c3f4dcca3.tar.gz
freebsd-ports-gnome-e17cd30ab2535c57b45c7379d5d44f3c3f4dcca3.tar.zst
freebsd-ports-gnome-e17cd30ab2535c57b45c7379d5d44f3c3f4dcca3.zip
- Unbreak.
- Update version. - Add support for building with SBCL. - General cleanup. PR: 77083 Submitted by: Scott Flatman <sf at slappy.org>
Diffstat (limited to 'math/maxima')
-rw-r--r--math/maxima/Makefile67
-rw-r--r--math/maxima/distinfo4
-rw-r--r--math/maxima/pkg-descr2
-rw-r--r--math/maxima/pkg-plist1831
4 files changed, 1152 insertions, 752 deletions
diff --git a/math/maxima/Makefile b/math/maxima/Makefile
index a2f4000c8a77..4b6b7c43a5b9 100644
--- a/math/maxima/Makefile
+++ b/math/maxima/Makefile
@@ -6,10 +6,11 @@
#
PORTNAME= maxima
-PORTVERSION= 5.9.0
-PORTREVISION= 1
+PORTVERSION= 5.9.1
+PORTREVISION= 0
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR=${PORTNAME}
MAINTAINER= sf@slappy.org
COMMENT= Symbolic mathematics program
@@ -23,7 +24,7 @@ RUN_DEPENDS= ${LOCALBASE}/bin/${LISPPORT} \
USE_XLIB= yes
USE_GMAKE= yes
USE_AUTOMAKE_VER= 14
-USE_AUTOCONF_VER= 213
+USE_AUTOCONF_VER= 253
CONFIGURE_ARGS+= --prefix=${PREFIX} \
--with-posix-shell=${LOCALBASE}/bin/bash \
--with-wish=${LOCALBASE}/bin/wish8.4 \
@@ -34,34 +35,68 @@ CONFIGURE_ENV= INSTALL_PROGRAM="${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m
MAN1= maxima.1
INFO= maxima
-PLIST_SUB= LISPBIN=${LISPBINARY}
+PLIST_SUB= BINDIR=${BINDIRECTORY}
+PLIST_SUB+= LISPBIN=${LISPBINARY}
+PLIST_SUB+= MAXIMABIN=${MAXIMABINARY}
+PLIST_SUB+= PORTVERSION=${PORTVERSION}
-#Only define ONE of these!
-#USE_CMUCL= yes
-USE_GCL= yes
-#USE_CLISP= yes
+.include <bsd.port.pre.mk>
-.if defined(USE_CMUCL)
+# Lisp to build with. Define only ONE of these!
+WITH_CMUCL= yes
+#WITH_SBCL= yes
+#WITH_GCL= yes
+#WITH_CLISP= yes
+
+.if defined(WITH_CMUCL)
LISPSELECT= --enable-cmucl
LISPPORT= lisp:${PORTSDIR}/lang/cmucl
-LISPBINARY= binary-cmucl/maxima.core
+BINDIRECTORY= binary-cmucl
+LISPBINARY= lisp
+MAXIMABINARY= maxima.core
.endif
-.if defined(USE_GCL)
+.if defined(WITH_GCL)
LISPSELECT= --enable-gcl
LISPPORT= gcl:${PORTSDIR}/lang/gcl
-LISPBINARY= binary-gcl/maxima
+# check these when unbroken
+BINDIRECTORY= binary-gcl
+LISPBINARY= lisp
+MAXIMABINARY= maxima
+BROKEN= "Broken at LISP:USE-PACKAGE."
.endif
-.if defined(USE_CLISP)
+.if defined(WITH_CLISP)
LISPSELECT= --enable-clisp
LISPPORT= clisp:${PORTSDIR}/lang/clisp
-# The value for LISPBINARY is a guess. Fix when the core dump is sorted out.
-LISPBINARY= binary-clisp/maxima.core
+BINDIRECTORY= binary-clisp
+LISPBINARY= lisp.run
+MAXIMABINARY= maxima.mem
+.if ${OSVERSION} >= 600000
BROKEN= "Dumps core while compiling bessel.fas in CURRENT"
.endif
+.endif
+
+.if defined(WITH_SBCL)
+LISPSELECT= --enable-sbcl
+LISPPORT= sbcl:${PORTSDIR}/lang/sbcl
+# check these when unbroken
+BINDIRECTORY= binary-sbcl
+LISPBINARY= lisp
+MAXIMABINARY= maxima.core
+BROKEN= "Drops into debugger when loading xerprn.fasl"
+.endif
+
+pre-everything::
+ @${ECHO} ""
+ @${ECHO} "Maxima has the following tunable options:"
+ @${ECHO} " WITH_CMUCL Build with CMU Common Lisp (default)"
+ @${ECHO} " WITH_GCL Build with GNU Common Lisp"
+ @${ECHO} " WITH_CLISP Build with Clisp"
+ @${ECHO} " WITH_SBCL Build with Steel Bank Common Lisp"
+ @${ECHO} ""
post-extract:
@${RM} -f ${WRKSRC}/doc/info/*.info*
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/math/maxima/distinfo b/math/maxima/distinfo
index 54187a956fcd..93e786dc7df4 100644
--- a/math/maxima/distinfo
+++ b/math/maxima/distinfo
@@ -1,2 +1,2 @@
-MD5 (maxima-5.9.0.tar.gz) = a1d6d6ed6afb0eebf03df865c0a19f19
-SIZE (maxima-5.9.0.tar.gz) = 7116131
+MD5 (maxima-5.9.1.tar.gz) = 659acfad1f61444cf5b38f6c28279d40
+SIZE (maxima-5.9.1.tar.gz) = 8093534
diff --git a/math/maxima/pkg-descr b/math/maxima/pkg-descr
index ac94f5742edd..2bee3bc01ecc 100644
--- a/math/maxima/pkg-descr
+++ b/math/maxima/pkg-descr
@@ -3,6 +3,4 @@ computer based algebra.
WWW: http://maxima.sourceforge.net/
-Built to run with CMU Common Lisp.
-
- Scott Flatman <sf@slappy.org>
diff --git a/math/maxima/pkg-plist b/math/maxima/pkg-plist
index 5dce5158fbb8..0136bfe3c631 100644
--- a/math/maxima/pkg-plist
+++ b/math/maxima/pkg-plist
@@ -1,736 +1,1103 @@
bin/maxima
+bin/rmaxima
bin/xmaxima
-lib/maxima/5.9.0/%%LISPBIN%%
-info/maxima.info-1
-info/maxima.info-2
-info/maxima.info-3
-libexec/maxima/5.9.0/maxima-run-lisp
-libexec/maxima/5.9.0/mgnuplot
-libexec/maxima/5.9.0/omplotdata
-share/maxima/5.9.0/demo/array.dem
-share/maxima/5.9.0/demo/cf.dem
-share/maxima/5.9.0/demo/demo.dem
-share/maxima/5.9.0/demo/eaton1.dem
-share/maxima/5.9.0/demo/eaton2.dem
-share/maxima/5.9.0/demo/ezgcd.dem
-share/maxima/5.9.0/demo/hypgeo.dem
-share/maxima/5.9.0/demo/macex.dem
-share/maxima/5.9.0/demo/macro.dem
-share/maxima/5.9.0/demo/manual.demo
-share/maxima/5.9.0/demo/newfac.dem
-share/maxima/5.9.0/demo/plots.mac
-share/maxima/5.9.0/demo/rombrg.dem
-share/maxima/5.9.0/demo/subscr.dem
-share/maxima/5.9.0/demo/sumcon.dem
-share/maxima/5.9.0/demo/trgsmp.dem
-share/maxima/5.9.0/doc/EMaximaIntro.ps
-share/maxima/5.9.0/doc/html/intromax.html
-share/maxima/5.9.0/doc/html/maxima_1.html
-share/maxima/5.9.0/doc/html/maxima_10.html
-share/maxima/5.9.0/doc/html/maxima_11.html
-share/maxima/5.9.0/doc/html/maxima_12.html
-share/maxima/5.9.0/doc/html/maxima_13.html
-share/maxima/5.9.0/doc/html/maxima_14.html
-share/maxima/5.9.0/doc/html/maxima_15.html
-share/maxima/5.9.0/doc/html/maxima_16.html
-share/maxima/5.9.0/doc/html/maxima_17.html
-share/maxima/5.9.0/doc/html/maxima_18.html
-share/maxima/5.9.0/doc/html/maxima_19.html
-share/maxima/5.9.0/doc/html/maxima_2.html
-share/maxima/5.9.0/doc/html/maxima_20.html
-share/maxima/5.9.0/doc/html/maxima_21.html
-share/maxima/5.9.0/doc/html/maxima_22.html
-share/maxima/5.9.0/doc/html/maxima_23.html
-share/maxima/5.9.0/doc/html/maxima_24.html
-share/maxima/5.9.0/doc/html/maxima_25.html
-share/maxima/5.9.0/doc/html/maxima_26.html
-share/maxima/5.9.0/doc/html/maxima_27.html
-share/maxima/5.9.0/doc/html/maxima_28.html
-share/maxima/5.9.0/doc/html/maxima_29.html
-share/maxima/5.9.0/doc/html/maxima_3.html
-share/maxima/5.9.0/doc/html/maxima_30.html
-share/maxima/5.9.0/doc/html/maxima_31.html
-share/maxima/5.9.0/doc/html/maxima_32.html
-share/maxima/5.9.0/doc/html/maxima_33.html
-share/maxima/5.9.0/doc/html/maxima_34.html
-share/maxima/5.9.0/doc/html/maxima_35.html
-share/maxima/5.9.0/doc/html/maxima_36.html
-share/maxima/5.9.0/doc/html/maxima_37.html
-share/maxima/5.9.0/doc/html/maxima_38.html
-share/maxima/5.9.0/doc/html/maxima_39.html
-share/maxima/5.9.0/doc/html/maxima_4.html
-share/maxima/5.9.0/doc/html/maxima_40.html
-share/maxima/5.9.0/doc/html/maxima_41.html
-share/maxima/5.9.0/doc/html/maxima_42.html
-share/maxima/5.9.0/doc/html/maxima_5.html
-share/maxima/5.9.0/doc/html/maxima_6.html
-share/maxima/5.9.0/doc/html/maxima_7.html
-share/maxima/5.9.0/doc/html/maxima_8.html
-share/maxima/5.9.0/doc/html/maxima_9.html
-share/maxima/5.9.0/doc/html/maxima_toc.html
-share/maxima/5.9.0/doc/share/bessel.usg
-share/maxima/5.9.0/doc/share/brchre.txt
-share/maxima/5.9.0/doc/share/rombrg.usg
-share/maxima/5.9.0/doc/share/translation_hints.txt
-share/maxima/5.9.0/emacs/bookmode.el
-share/maxima/5.9.0/emacs/dbl.el
-share/maxima/5.9.0/emacs/emaxima.el
-share/maxima/5.9.0/emacs/emaxima.lisp
-share/maxima/5.9.0/emacs/emaxima.sty
-share/maxima/5.9.0/emacs/maxima-font-lock.el
-share/maxima/5.9.0/emacs/maxima.el
-share/maxima/5.9.0/emacs/smart-complete.el
-share/maxima/5.9.0/emacs/sshell.el
-share/maxima/5.9.0/share/algebra/charsets/README
-share/maxima/5.9.0/share/algebra/charsets/charsets.mac
-share/maxima/5.9.0/share/algebra/charsets/test1.mac
-share/maxima/5.9.0/share/algebra/differ.dem
-share/maxima/5.9.0/share/algebra/differ.mac
-share/maxima/5.9.0/share/algebra/gcdex.mac
-share/maxima/5.9.0/share/algebra/grob1.lisp
-share/maxima/5.9.0/share/algebra/nusum.mac
-share/maxima/5.9.0/share/algebra/nusum.usg
-share/maxima/5.9.0/share/algebra/recur.dem
-share/maxima/5.9.0/share/algebra/recur.lisp
-share/maxima/5.9.0/share/algebra/recur.mac
-share/maxima/5.9.0/share/algebra/recur.transcript
-share/maxima/5.9.0/share/algebra/solver/linsolve.mac
-share/maxima/5.9.0/share/algebra/solver/misc.mac
-share/maxima/5.9.0/share/algebra/solver/readme
-share/maxima/5.9.0/share/algebra/solver/slvrmsgs.mac
-share/maxima/5.9.0/share/algebra/solver/slvrtbox.mac
-share/maxima/5.9.0/share/algebra/solver/solver.mac
-share/maxima/5.9.0/share/algebra/solver/solver1-en.html
-share/maxima/5.9.0/share/algebra/solver/solver1.pdf
-share/maxima/5.9.0/share/algebra/solver/test.mac
-share/maxima/5.9.0/share/calculus/cartan.dem
-share/maxima/5.9.0/share/calculus/cartan.lisp
-share/maxima/5.9.0/share/calculus/fourie.dem
-share/maxima/5.9.0/share/calculus/fourie.mac
-share/maxima/5.9.0/share/calculus/fourie.usg
-share/maxima/5.9.0/share/calculus/gendif.mac
-share/maxima/5.9.0/share/calculus/gendif.usg
-share/maxima/5.9.0/share/calculus/optmiz.dem
-share/maxima/5.9.0/share/calculus/optmiz.mac
-share/maxima/5.9.0/share/calculus/optmiz.transcript
-share/maxima/5.9.0/share/calculus/optmiz.usg
-share/maxima/5.9.0/share/calculus/optmiz_1.dem
-share/maxima/5.9.0/share/calculus/optmiz_2.dem
-share/maxima/5.9.0/share/calculus/optmiz_3.dem
-share/maxima/5.9.0/share/calculus/optmiz_4.dem
-share/maxima/5.9.0/share/calculus/optvar.dem
-share/maxima/5.9.0/share/calculus/optvar.mac
-share/maxima/5.9.0/share/calculus/optvar.transcript
-share/maxima/5.9.0/share/calculus/optvar.usg
-share/maxima/5.9.0/share/calculus/optvar_1.dem
-share/maxima/5.9.0/share/calculus/optvar_2.dem
-share/maxima/5.9.0/share/calculus/pade2.mac
-share/maxima/5.9.0/share/calculus/qual.dem
-share/maxima/5.9.0/share/calculus/qual.mac
-share/maxima/5.9.0/share/calculus/qual.usg
-share/maxima/5.9.0/share/calculus/qualsp.lisp
-share/maxima/5.9.0/share/calculus/revert.mac
-share/maxima/5.9.0/share/calculus/revert.usg
-share/maxima/5.9.0/share/calculus/taylor1.mac
-share/maxima/5.9.0/share/combinatorics/comgen.lisp
-share/maxima/5.9.0/share/combinatorics/permut.lisp
-share/maxima/5.9.0/share/contrib/diag.dem
-share/maxima/5.9.0/share/contrib/diag.mac
-share/maxima/5.9.0/share/contrib/diag.usg
-share/maxima/5.9.0/share/contrib/impdiff.mac
-share/maxima/5.9.0/share/contrib/lindstedt.mac
-share/maxima/5.9.0/share/contrib/makeOrders.mac
-share/maxima/5.9.0/share/diffequations/abel.mac
-share/maxima/5.9.0/share/diffequations/desoln.mac
-share/maxima/5.9.0/share/diffequations/desoln.usg
-share/maxima/5.9.0/share/diffequations/exampl.mac
-share/maxima/5.9.0/share/diffequations/linde1.mc
-share/maxima/5.9.0/share/diffequations/ode2.mac
-share/maxima/5.9.0/share/diffequations/ode2.usg
-share/maxima/5.9.0/share/diffequations/odeaux.mac
-share/maxima/5.9.0/share/diffequations/pdvtr.mac
-share/maxima/5.9.0/share/diffequations/phypgm.mac
-share/maxima/5.9.0/share/diffequations/pivtr.mac
-share/maxima/5.9.0/share/diffequations/pmain.mac
-share/maxima/5.9.0/share/graphics/world.mac
-share/maxima/5.9.0/share/integequations/inteqn.mac
-share/maxima/5.9.0/share/integequations/inteqn.usg
-share/maxima/5.9.0/share/integequations/intexs.mac
-share/maxima/5.9.0/share/integration/antid.dem
-share/maxima/5.9.0/share/integration/antid.mac
-share/maxima/5.9.0/share/integration/antid.usg
-share/maxima/5.9.0/share/integration/bypart.mac
-share/maxima/5.9.0/share/integration/delta.dem
-share/maxima/5.9.0/share/integration/delta.mac
-share/maxima/5.9.0/share/integration/delta.usg
-share/maxima/5.9.0/share/integration/intsce.mac
-share/maxima/5.9.0/share/integration/intsce.usg
-share/maxima/5.9.0/share/macro/autolo.mac
-share/maxima/5.9.0/share/macro/basic.mac
-share/maxima/5.9.0/share/macro/caseq.mac
-share/maxima/5.9.0/share/macro/contrl.mac
-share/maxima/5.9.0/share/macro/defm.dem
-share/maxima/5.9.0/share/macro/defm.mac
-share/maxima/5.9.0/share/macro/defm.syn
-share/maxima/5.9.0/share/macro/defstm.mac
-share/maxima/5.9.0/share/macro/defstmrun.mac
-share/maxima/5.9.0/share/macro/fexpr.mac
-share/maxima/5.9.0/share/macro/keyarg.dem
-share/maxima/5.9.0/share/macro/keyarg.mac
-share/maxima/5.9.0/share/macro/packg.mac
-share/maxima/5.9.0/share/macro/sum1.mac
-share/maxima/5.9.0/share/matrix/determ.mac
-share/maxima/5.9.0/share/matrix/determ.usg
-share/maxima/5.9.0/share/matrix/eigen.dem
-share/maxima/5.9.0/share/matrix/eigen.mac
-share/maxima/5.9.0/share/matrix/eigen.usg
-share/maxima/5.9.0/share/matrix/eigen_1.dem
-share/maxima/5.9.0/share/matrix/eigeni.mac
-share/maxima/5.9.0/share/matrix/invert.mac
-share/maxima/5.9.0/share/matrix/invert.usg
-share/maxima/5.9.0/share/matrix/matfun.mac
-share/maxima/5.9.0/share/matrix/nchrpl.dem
-share/maxima/5.9.0/share/matrix/nchrpl.mac
-share/maxima/5.9.0/share/matrix/pfaff.dem
-share/maxima/5.9.0/share/matrix/pfaff.mac
-share/maxima/5.9.0/share/matrix/pfaff.usg
-share/maxima/5.9.0/share/matrix/rateig.mac
-share/maxima/5.9.0/share/maxima-init.lisp
-share/maxima/5.9.0/share/misc/arrfun.mac
-share/maxima/5.9.0/share/misc/declin.dem
-share/maxima/5.9.0/share/misc/declin.mac
-share/maxima/5.9.0/share/misc/declin.usg
-share/maxima/5.9.0/share/misc/diffop.lisp
-share/maxima/5.9.0/share/misc/disran.lisp
-share/maxima/5.9.0/share/misc/disran.usg
-share/maxima/5.9.0/share/misc/dump.lisp
-share/maxima/5.9.0/share/misc/dump.usg
-share/maxima/5.9.0/share/misc/foptim.lisp
-share/maxima/5.9.0/share/misc/seqopt.dem
-share/maxima/5.9.0/share/misc/seqopt.lisp
-share/maxima/5.9.0/share/misc/seqopt.usg
-share/maxima/5.9.0/share/misc/set.lisp
-share/maxima/5.9.0/share/misc/set.usg
-share/maxima/5.9.0/share/misc/smacro.mac
-share/maxima/5.9.0/share/numeric/bffac.lisp
-share/maxima/5.9.0/share/numeric/bffac.usg
-share/maxima/5.9.0/share/numeric/brmbrg.lisp
-share/maxima/5.9.0/share/numeric/brmbrg.usg
-share/maxima/5.9.0/share/numeric/cfortr.dem
-share/maxima/5.9.0/share/numeric/cfortr.lisp
-share/maxima/5.9.0/share/numeric/cfortr.tst
-share/maxima/5.9.0/share/numeric/cfortr.usg
-share/maxima/5.9.0/share/numeric/dblint.dem
-share/maxima/5.9.0/share/numeric/dblint.mac
-share/maxima/5.9.0/share/numeric/dblint.usg
-share/maxima/5.9.0/share/numeric/dblint_1.dem
-share/maxima/5.9.0/share/numeric/diffeq.dem
-share/maxima/5.9.0/share/numeric/diffeq.mac
-share/maxima/5.9.0/share/numeric/expense.lisp
-share/maxima/5.9.0/share/numeric/fft.dem
-share/maxima/5.9.0/share/numeric/fft.lisp
-share/maxima/5.9.0/share/numeric/fft.usg
-share/maxima/5.9.0/share/numeric/forma1.lisp
-share/maxima/5.9.0/share/numeric/forma1.usg
-share/maxima/5.9.0/share/numeric/format.lisp
-share/maxima/5.9.0/share/numeric/format.usg
-share/maxima/5.9.0/share/numeric/kach.dem
-share/maxima/5.9.0/share/numeric/kach.mac
-share/maxima/5.9.0/share/numeric/newton.mac
-share/maxima/5.9.0/share/numeric/newton1.mac
-share/maxima/5.9.0/share/numeric/qq.dem
-share/maxima/5.9.0/share/numeric/qq.lisp
-share/maxima/5.9.0/share/numeric/qq.usg
-share/maxima/5.9.0/share/numeric/riemsum.mac
-share/maxima/5.9.0/share/numeric/simpsn.dem
-share/maxima/5.9.0/share/numeric/simpsn.mac
-share/maxima/5.9.0/share/numeric/submac.dem
-share/maxima/5.9.0/share/numeric/submac.mac
-share/maxima/5.9.0/share/physics/battex.sty
-share/maxima/5.9.0/share/physics/dimen.dem
-share/maxima/5.9.0/share/physics/dimen.mac
-share/maxima/5.9.0/share/physics/dimen.usg
-share/maxima/5.9.0/share/physics/dimension.html
-share/maxima/5.9.0/share/physics/dimension.mac
-share/maxima/5.9.0/share/physics/dimension.pdf
-share/maxima/5.9.0/share/physics/dimension.tex
-share/maxima/5.9.0/share/physics/elec.lisp
-share/maxima/5.9.0/share/physics/gam5.lisp
-share/maxima/5.9.0/share/physics/gamalg.dem
-share/maxima/5.9.0/share/physics/gamalg.lisp
-share/maxima/5.9.0/share/physics/gamalg.usg
-share/maxima/5.9.0/share/physics/gamchi.lisp
-share/maxima/5.9.0/share/physics/gamcon.lisp
-share/maxima/5.9.0/share/physics/gamgfi.lisp
-share/maxima/5.9.0/share/physics/gamkah.lisp
-share/maxima/5.9.0/share/physics/gammtr.lisp
-share/maxima/5.9.0/share/physics/gamnoc.lisp
-share/maxima/5.9.0/share/physics/gamsq.lisp
-share/maxima/5.9.0/share/physics/physconst.mac
-share/maxima/5.9.0/share/physics/physconst.usg
-share/maxima/5.9.0/share/physics/units.mac
-share/maxima/5.9.0/share/physics/units.usg
-share/maxima/5.9.0/share/share.usg
-share/maxima/5.9.0/share/simplification/absimp.dem
-share/maxima/5.9.0/share/simplification/absimp.mac
-share/maxima/5.9.0/share/simplification/absimp.usg
-share/maxima/5.9.0/share/simplification/disol.dem
-share/maxima/5.9.0/share/simplification/disol.mac
-share/maxima/5.9.0/share/simplification/disol.usg
-share/maxima/5.9.0/share/simplification/elim.mac
-share/maxima/5.9.0/share/simplification/elim.usg
-share/maxima/5.9.0/share/simplification/facex1.mac
-share/maxima/5.9.0/share/simplification/facexp.dem
-share/maxima/5.9.0/share/simplification/facexp.mac
-share/maxima/5.9.0/share/simplification/facexp.usg
-share/maxima/5.9.0/share/simplification/functs.dem
-share/maxima/5.9.0/share/simplification/functs.mac
-share/maxima/5.9.0/share/simplification/functs.usg
-share/maxima/5.9.0/share/simplification/genut.mac
-share/maxima/5.9.0/share/simplification/ineq.dem
-share/maxima/5.9.0/share/simplification/ineq.mac
-share/maxima/5.9.0/share/simplification/ineq.usg
-share/maxima/5.9.0/share/simplification/lrats.dem
-share/maxima/5.9.0/share/simplification/lrats.mac
-share/maxima/5.9.0/share/simplification/lrats.usg
-share/maxima/5.9.0/share/simplification/rducon.dem
-share/maxima/5.9.0/share/simplification/rducon.lisp
-share/maxima/5.9.0/share/simplification/rducon.usg
-share/maxima/5.9.0/share/simplification/rncomb.dem
-share/maxima/5.9.0/share/simplification/rncomb.mac
-share/maxima/5.9.0/share/simplification/rncomb.usg
-share/maxima/5.9.0/share/simplification/scifac.dem
-share/maxima/5.9.0/share/simplification/scifac.lisp
-share/maxima/5.9.0/share/simplification/scifac.usg
-share/maxima/5.9.0/share/simplification/sqdnst.mac
-share/maxima/5.9.0/share/simplification/sqdnst.usg
-share/maxima/5.9.0/share/simplification/stopex.dem
-share/maxima/5.9.0/share/simplification/stopex.mac
-share/maxima/5.9.0/share/simplification/stopex.usg
-share/maxima/5.9.0/share/specfunctions/airy.lisp
-share/maxima/5.9.0/share/specfunctions/airy.usg
-share/maxima/5.9.0/share/specfunctions/ellipt.lisp
-share/maxima/5.9.0/share/specfunctions/ellipt.usg
-share/maxima/5.9.0/share/specfunctions/gamma.mac
-share/maxima/5.9.0/share/specfunctions/h-atom.dem
-share/maxima/5.9.0/share/specfunctions/kn.mac
-share/maxima/5.9.0/share/specfunctions/specfun.mac
-share/maxima/5.9.0/share/specfunctions/specfun.usg
-share/maxima/5.9.0/share/specfunctions/test_specfun.mac
-share/maxima/5.9.0/share/specfunctions/variational_method.dem
-share/maxima/5.9.0/share/sym/arite.lisp
-share/maxima/5.9.0/share/sym/chbase.lisp
-share/maxima/5.9.0/share/sym/compile.lisp
-share/maxima/5.9.0/share/sym/direct.lisp
-share/maxima/5.9.0/share/sym/doconline
-share/maxima/5.9.0/share/sym/docsym.tex
-share/maxima/5.9.0/share/sym/docsymidx.tex
-share/maxima/5.9.0/share/sym/ecrivain.lisp
-share/maxima/5.9.0/share/sym/elem.lisp
-share/maxima/5.9.0/share/sym/kak.lisp
-share/maxima/5.9.0/share/sym/lecteur.lisp
-share/maxima/5.9.0/share/sym/macros.lisp
-share/maxima/5.9.0/share/sym/makefile
-share/maxima/5.9.0/share/sym/multmon.lisp
-share/maxima/5.9.0/share/sym/operations.lisp
-share/maxima/5.9.0/share/sym/partpol.lisp
-share/maxima/5.9.0/share/sym/permut.lisp
-share/maxima/5.9.0/share/sym/pui.lisp
-share/maxima/5.9.0/share/sym/resolcayley.lisp
-share/maxima/5.9.0/share/sym/resolv1.lisp
-share/maxima/5.9.0/share/sym/resolvante.mac
-share/maxima/5.9.0/share/sym/schur.lisp
-share/maxima/5.9.0/share/sym/sym.mac
-share/maxima/5.9.0/share/sym/sym1.mac
-share/maxima/5.9.0/share/sym/treillis.lisp
-share/maxima/5.9.0/share/sym/tri.lisp
-share/maxima/5.9.0/share/sym/util.lisp
-share/maxima/5.9.0/share/tensor/aaricc.mac
-share/maxima/5.9.0/share/tensor/aaricc_bsc.mac
-share/maxima/5.9.0/share/tensor/aaricc_spl.mac
-share/maxima/5.9.0/share/tensor/aatest.mac
-share/maxima/5.9.0/share/tensor/ademo.dem
-share/maxima/5.9.0/share/tensor/ademo2.dem
-share/maxima/5.9.0/share/tensor/ajpff.mac
-share/maxima/5.9.0/share/tensor/anew.mac
-share/maxima/5.9.0/share/tensor/anew_add.mac
-share/maxima/5.9.0/share/tensor/birkhoff.txt
-share/maxima/5.9.0/share/tensor/brans_bmb.mac
-share/maxima/5.9.0/share/tensor/brans_vacuum.mac
-share/maxima/5.9.0/share/tensor/brbirk.mac
-share/maxima/5.9.0/share/tensor/canten.lisp
-share/maxima/5.9.0/share/tensor/ctenso_1.dem
-share/maxima/5.9.0/share/tensor/ctenso_2.dem
-share/maxima/5.9.0/share/tensor/ctenso_3.dem
-share/maxima/5.9.0/share/tensor/ctenso_4.dem
-share/maxima/5.9.0/share/tensor/ctensr.mac
-share/maxima/5.9.0/share/tensor/gener.lisp
-share/maxima/5.9.0/share/tensor/info-tensor-2.txt
-share/maxima/5.9.0/share/tensor/info-tensor.txt
-share/maxima/5.9.0/share/tensor/itensor.dem
-share/maxima/5.9.0/share/tensor/itensor.lisp
-share/maxima/5.9.0/share/tensor/itensor.usg
-share/maxima/5.9.0/share/tensor/jpff.mac
-share/maxima/5.9.0/share/tensor/manual.txt
-share/maxima/5.9.0/share/tensor/metrics.mac
-share/maxima/5.9.0/share/tensor/mmans.mac
-share/maxima/5.9.0/share/tensor/mmans_run.mac
-share/maxima/5.9.0/share/tensor/motion.mac
-share/maxima/5.9.0/share/tensor/petrov.mac
-share/maxima/5.9.0/share/tensor/ricci2.mac
-share/maxima/5.9.0/share/tensor/rsn.mac
-share/maxima/5.9.0/share/tensor/swartz.dem
-share/maxima/5.9.0/share/tensor/symtry.lisp
-share/maxima/5.9.0/share/tensor/tensor-doc.txt
-share/maxima/5.9.0/share/tensor/test1.mac
-share/maxima/5.9.0/share/trigonometry/atrig1.mac
-share/maxima/5.9.0/share/trigonometry/atrig1.usg
-share/maxima/5.9.0/share/trigonometry/ntrig.mac
-share/maxima/5.9.0/share/trigonometry/ntrig.usg
-share/maxima/5.9.0/share/trigonometry/spangl.mac
-share/maxima/5.9.0/share/trigonometry/spangl.usg
-share/maxima/5.9.0/share/trigonometry/trigrat.lisp
-share/maxima/5.9.0/share/utils/batch.dem
-share/maxima/5.9.0/share/utils/batch.mac
-share/maxima/5.9.0/share/utils/batch.transcript
-share/maxima/5.9.0/share/utils/batch.usg
-share/maxima/5.9.0/share/utils/dskuse.lisp
-share/maxima/5.9.0/share/utils/dskuse.usg
-share/maxima/5.9.0/share/utils/fileop.lisp
-share/maxima/5.9.0/share/utils/fileop.usg
-share/maxima/5.9.0/share/utils/mactex-utilities.lisp
-share/maxima/5.9.0/share/vector/vect.dem
-share/maxima/5.9.0/share/vector/vect.mac
-share/maxima/5.9.0/share/vector/vect.usg
-share/maxima/5.9.0/share/vector/vect_transform.mac
-share/maxima/5.9.0/share/vector/vector.dem
-share/maxima/5.9.0/share/vector/vector.mac
-share/maxima/5.9.0/share/vector/vector.usg
-share/maxima/5.9.0/src/SYS-DECLAIM.lisp
-share/maxima/5.9.0/src/SYS-PROCLAIM.lisp
-share/maxima/5.9.0/src/acall.lisp
-share/maxima/5.9.0/src/algfac.lisp
-share/maxima/5.9.0/src/algsys.lisp
-share/maxima/5.9.0/src/ar.lisp
-share/maxima/5.9.0/src/askp.lisp
-share/maxima/5.9.0/src/asum.lisp
-share/maxima/5.9.0/src/autoconf-variables.lisp
-share/maxima/5.9.0/src/autol.lisp
-share/maxima/5.9.0/src/bessel.lisp
-share/maxima/5.9.0/src/buildq.lisp
-share/maxima/5.9.0/src/cl-info.lisp
-share/maxima/5.9.0/src/clmacs.lisp
-share/maxima/5.9.0/src/combin.lisp
-share/maxima/5.9.0/src/comm.lisp
-share/maxima/5.9.0/src/comm2.lisp
-share/maxima/5.9.0/src/commac.lisp
-share/maxima/5.9.0/src/compar.lisp
-share/maxima/5.9.0/src/compat.lisp
-share/maxima/5.9.0/src/cpoly.lisp
-share/maxima/5.9.0/src/csimp.lisp
-share/maxima/5.9.0/src/csimp2.lisp
-share/maxima/5.9.0/src/db.lisp
-share/maxima/5.9.0/src/defcal.lisp
-share/maxima/5.9.0/src/defint.lisp
-share/maxima/5.9.0/src/defopt.lisp
-share/maxima/5.9.0/src/desoln.lisp
-share/maxima/5.9.0/src/displa.lisp
-share/maxima/5.9.0/src/displm.lisp
-share/maxima/5.9.0/src/dskfn.lisp
-share/maxima/5.9.0/src/elim.lisp
-share/maxima/5.9.0/src/ellipt.lisp
-share/maxima/5.9.0/src/evalw.lisp
-share/maxima/5.9.0/src/ezgcd.lisp
-share/maxima/5.9.0/src/factor.lisp
-share/maxima/5.9.0/src/fcall.lisp
-share/maxima/5.9.0/src/flatten.lisp
-share/maxima/5.9.0/src/float.lisp
-share/maxima/5.9.0/src/fortra.lisp
-share/maxima/5.9.0/src/generr.lisp
-share/maxima/5.9.0/src/grind.lisp
-share/maxima/5.9.0/src/hayat.lisp
-share/maxima/5.9.0/src/homog.lisp
-share/maxima/5.9.0/src/hyp.lisp
-share/maxima/5.9.0/src/hypgeo.lisp
-share/maxima/5.9.0/src/init-cl.lisp
-share/maxima/5.9.0/src/inmis.lisp
-share/maxima/5.9.0/src/intpol.lisp
-share/maxima/5.9.0/src/invert.lisp
-share/maxima/5.9.0/src/irinte.lisp
-share/maxima/5.9.0/src/kclmac.lisp
-share/maxima/5.9.0/src/laplac.lisp
-share/maxima/5.9.0/src/ldisp.lisp
-share/maxima/5.9.0/src/lesfac.lisp
-share/maxima/5.9.0/src/letmac.lisp
-share/maxima/5.9.0/src/limit.lisp
-share/maxima/5.9.0/src/linnew.lisp
-share/maxima/5.9.0/src/lmdcls.lisp
-share/maxima/5.9.0/src/logarc.lisp
-share/maxima/5.9.0/src/macdes.lisp
-share/maxima/5.9.0/src/macsys.lisp
-share/maxima/5.9.0/src/mactex.lisp
-share/maxima/5.9.0/src/marray.lisp
-share/maxima/5.9.0/src/mat.lisp
-share/maxima/5.9.0/src/matcom.lisp
-share/maxima/5.9.0/src/matrix.lisp
-share/maxima/5.9.0/src/matrun.lisp
-share/maxima/5.9.0/src/max_ext.lisp
-share/maxima/5.9.0/src/maxima-package.lisp
-share/maxima/5.9.0/src/maxmac.lisp
-share/maxima/5.9.0/src/mdebug.lisp
-share/maxima/5.9.0/src/mdefun.lisp
-share/maxima/5.9.0/src/mdot.lisp
-share/maxima/5.9.0/src/merror.lisp
-share/maxima/5.9.0/src/mforma.lisp
-share/maxima/5.9.0/src/mformt.lisp
-share/maxima/5.9.0/src/mhayat.lisp
-share/maxima/5.9.0/src/misc.lisp
-share/maxima/5.9.0/src/mlisp.lisp
-share/maxima/5.9.0/src/mload.lisp
-share/maxima/5.9.0/src/mmacro.lisp
-share/maxima/5.9.0/src/mopers.lisp
-share/maxima/5.9.0/src/mormac.lisp
-share/maxima/5.9.0/src/mrgmac.lisp
-share/maxima/5.9.0/src/mstuff.lisp
-share/maxima/5.9.0/src/mtrace.lisp
-share/maxima/5.9.0/src/mutils.lisp
-share/maxima/5.9.0/src/nalgfa.lisp
-share/maxima/5.9.0/src/newdet.lisp
-share/maxima/5.9.0/src/newinv.lisp
-share/maxima/5.9.0/src/nforma.lisp
-share/maxima/5.9.0/src/nisimp.lisp
-share/maxima/5.9.0/src/nparse.lisp
-share/maxima/5.9.0/src/nrat4.lisp
-share/maxima/5.9.0/src/nregex.lisp
-share/maxima/5.9.0/src/numer.lisp
-share/maxima/5.9.0/src/numerical/f2cl-lib.lisp
-share/maxima/5.9.0/src/numerical/f2cl-package.lisp
-share/maxima/5.9.0/src/numerical/slatec.lisp
-share/maxima/5.9.0/src/numerical/slatec/d9aimp.lisp
-share/maxima/5.9.0/src/numerical/slatec/d9b0mp.lisp
-share/maxima/5.9.0/src/numerical/slatec/d9b1mp.lisp
-share/maxima/5.9.0/src/numerical/slatec/d9lgmc.lisp
-share/maxima/5.9.0/src/numerical/slatec/dai.lisp
-share/maxima/5.9.0/src/numerical/slatec/daie.lisp
-share/maxima/5.9.0/src/numerical/slatec/dasyik.lisp
-share/maxima/5.9.0/src/numerical/slatec/dasyjy.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesi.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesi0.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesi1.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesj.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesj0.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesj1.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesk.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesk0.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesk1.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesy.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesy0.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbesy1.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbsi0e.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbsi1e.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbsk0e.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbsk1e.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbsknu.lisp
-share/maxima/5.9.0/src/numerical/slatec/dbsynu.lisp
-share/maxima/5.9.0/src/numerical/slatec/dcsevl.lisp
-share/maxima/5.9.0/src/numerical/slatec/de1.lisp
-share/maxima/5.9.0/src/numerical/slatec/dei.lisp
-share/maxima/5.9.0/src/numerical/slatec/derf.lisp
-share/maxima/5.9.0/src/numerical/slatec/derfc.lisp
-share/maxima/5.9.0/src/numerical/slatec/dgamlm.lisp
-share/maxima/5.9.0/src/numerical/slatec/dgamln.lisp
-share/maxima/5.9.0/src/numerical/slatec/dgamma.lisp
-share/maxima/5.9.0/src/numerical/slatec/djairy.lisp
-share/maxima/5.9.0/src/numerical/slatec/dlngam.lisp
-share/maxima/5.9.0/src/numerical/slatec/dyairy.lisp
-share/maxima/5.9.0/src/numerical/slatec/fdump.lisp
-share/maxima/5.9.0/src/numerical/slatec/initds.lisp
-share/maxima/5.9.0/src/numerical/slatec/j4save.lisp
-share/maxima/5.9.0/src/numerical/slatec/xercnt.lisp
-share/maxima/5.9.0/src/numerical/slatec/xerhlt.lisp
-share/maxima/5.9.0/src/numerical/slatec/xermsg.lisp
-share/maxima/5.9.0/src/numerical/slatec/xerprn.lisp
-share/maxima/5.9.0/src/numerical/slatec/xersve.lisp
-share/maxima/5.9.0/src/numerical/slatec/xgetua.lisp
-share/maxima/5.9.0/src/numerical/slatec/zabs.lisp
-share/maxima/5.9.0/src/numerical/slatec/zacai.lisp
-share/maxima/5.9.0/src/numerical/slatec/zacon.lisp
-share/maxima/5.9.0/src/numerical/slatec/zairy.lisp
-share/maxima/5.9.0/src/numerical/slatec/zasyi.lisp
-share/maxima/5.9.0/src/numerical/slatec/zbesh.lisp
-share/maxima/5.9.0/src/numerical/slatec/zbesi.lisp
-share/maxima/5.9.0/src/numerical/slatec/zbesj.lisp
-share/maxima/5.9.0/src/numerical/slatec/zbesk.lisp
-share/maxima/5.9.0/src/numerical/slatec/zbesy.lisp
-share/maxima/5.9.0/src/numerical/slatec/zbinu.lisp
-share/maxima/5.9.0/src/numerical/slatec/zbknu.lisp
-share/maxima/5.9.0/src/numerical/slatec/zbuni.lisp
-share/maxima/5.9.0/src/numerical/slatec/zbunk.lisp
-share/maxima/5.9.0/src/numerical/slatec/zdiv.lisp
-share/maxima/5.9.0/src/numerical/slatec/zexp.lisp
-share/maxima/5.9.0/src/numerical/slatec/zkscl.lisp
-share/maxima/5.9.0/src/numerical/slatec/zlog.lisp
-share/maxima/5.9.0/src/numerical/slatec/zmlri.lisp
-share/maxima/5.9.0/src/numerical/slatec/zmlt.lisp
-share/maxima/5.9.0/src/numerical/slatec/zrati.lisp
-share/maxima/5.9.0/src/numerical/slatec/zs1s2.lisp
-share/maxima/5.9.0/src/numerical/slatec/zseri.lisp
-share/maxima/5.9.0/src/numerical/slatec/zshch.lisp
-share/maxima/5.9.0/src/numerical/slatec/zsqrt.lisp
-share/maxima/5.9.0/src/numerical/slatec/zuchk.lisp
-share/maxima/5.9.0/src/numerical/slatec/zunhj.lisp
-share/maxima/5.9.0/src/numerical/slatec/zuni1.lisp
-share/maxima/5.9.0/src/numerical/slatec/zuni2.lisp
-share/maxima/5.9.0/src/numerical/slatec/zunik.lisp
-share/maxima/5.9.0/src/numerical/slatec/zunk1.lisp
-share/maxima/5.9.0/src/numerical/slatec/zunk2.lisp
-share/maxima/5.9.0/src/numerical/slatec/zuoik.lisp
-share/maxima/5.9.0/src/numerical/slatec/zwrsk.lisp
-share/maxima/5.9.0/src/numerm.lisp
-share/maxima/5.9.0/src/numth.lisp
-share/maxima/5.9.0/src/nusum.lisp
-share/maxima/5.9.0/src/ode2.lisp
-share/maxima/5.9.0/src/opers.lisp
-share/maxima/5.9.0/src/optim.lisp
-share/maxima/5.9.0/src/optimize.lisp
-share/maxima/5.9.0/src/option.lisp
-share/maxima/5.9.0/src/outmis.lisp
-share/maxima/5.9.0/src/pade.lisp
-share/maxima/5.9.0/src/parse-body.lisp
-share/maxima/5.9.0/src/plot.lisp
-share/maxima/5.9.0/src/pois2.lisp
-share/maxima/5.9.0/src/pois3.lisp
-share/maxima/5.9.0/src/polyrz.lisp
-share/maxima/5.9.0/src/powers.lisp
-share/maxima/5.9.0/src/procs.lisp
-share/maxima/5.9.0/src/psolve.lisp
-share/maxima/5.9.0/src/rat3a.lisp
-share/maxima/5.9.0/src/rat3b.lisp
-share/maxima/5.9.0/src/rat3c.lisp
-share/maxima/5.9.0/src/rat3d.lisp
-share/maxima/5.9.0/src/rat3e.lisp
-share/maxima/5.9.0/src/ratmac.lisp
-share/maxima/5.9.0/src/ratout.lisp
-share/maxima/5.9.0/src/ratpoi.lisp
-share/maxima/5.9.0/src/residu.lisp
-share/maxima/5.9.0/src/result.lisp
-share/maxima/5.9.0/src/risch.lisp
-share/maxima/5.9.0/src/rombrg.lisp
-share/maxima/5.9.0/src/rpart.lisp
-share/maxima/5.9.0/src/runtim.lisp
-share/maxima/5.9.0/src/rzmac.lisp
-share/maxima/5.9.0/src/schatc.lisp
-share/maxima/5.9.0/src/scs.lisp
-share/maxima/5.9.0/src/series.lisp
-share/maxima/5.9.0/src/set.lisp
-share/maxima/5.9.0/src/simp.lisp
-share/maxima/5.9.0/src/sin.lisp
-share/maxima/5.9.0/src/sinint.lisp
-share/maxima/5.9.0/src/sloop.lisp
-share/maxima/5.9.0/src/solve.lisp
-share/maxima/5.9.0/src/specfn.lisp
-share/maxima/5.9.0/src/spgcd.lisp
-share/maxima/5.9.0/src/sprdet.lisp
-share/maxima/5.9.0/src/strmac.lisp
-share/maxima/5.9.0/src/sublis.lisp
-share/maxima/5.9.0/src/sumcon.lisp
-share/maxima/5.9.0/src/suprv1.lisp
-share/maxima/5.9.0/src/tlimit.lisp
-share/maxima/5.9.0/src/todd-coxeter.lisp
-share/maxima/5.9.0/src/trans1.lisp
-share/maxima/5.9.0/src/trans2.lisp
-share/maxima/5.9.0/src/trans3.lisp
-share/maxima/5.9.0/src/trans4.lisp
-share/maxima/5.9.0/src/trans5.lisp
-share/maxima/5.9.0/src/transf.lisp
-share/maxima/5.9.0/src/transl.lisp
-share/maxima/5.9.0/src/transm.lisp
-share/maxima/5.9.0/src/transq.lisp
-share/maxima/5.9.0/src/transs.lisp
-share/maxima/5.9.0/src/trdata.lisp
-share/maxima/5.9.0/src/trgred.lisp
-share/maxima/5.9.0/src/trgsmp.lisp
-share/maxima/5.9.0/src/trigi.lisp
-share/maxima/5.9.0/src/trigo.lisp
-share/maxima/5.9.0/src/trmode.lisp
-share/maxima/5.9.0/src/troper.lisp
-share/maxima/5.9.0/src/trpred.lisp
-share/maxima/5.9.0/src/trprop.lisp
-share/maxima/5.9.0/src/trutil.lisp
-share/maxima/5.9.0/src/ufact.lisp
-share/maxima/5.9.0/src/utils.lisp
-share/maxima/5.9.0/src/zero.lisp
-share/maxima/5.9.0/tests/rexamples.mac
-share/maxima/5.9.0/tests/rtest1.mac
-share/maxima/5.9.0/tests/rtest10.mac
-share/maxima/5.9.0/tests/rtest11.mac
-share/maxima/5.9.0/tests/rtest12.mac
-share/maxima/5.9.0/tests/rtest13.mac
-share/maxima/5.9.0/tests/rtest13s.mac
-share/maxima/5.9.0/tests/rtest14.mac
-share/maxima/5.9.0/tests/rtest15.mac
-share/maxima/5.9.0/tests/rtest1a.mac
-share/maxima/5.9.0/tests/rtest2.mac
-share/maxima/5.9.0/tests/rtest3.mac
-share/maxima/5.9.0/tests/rtest4.mac
-share/maxima/5.9.0/tests/rtest5.mac
-share/maxima/5.9.0/tests/rtest6.mac
-share/maxima/5.9.0/tests/rtest6a.mac
-share/maxima/5.9.0/tests/rtest6b.mac
-share/maxima/5.9.0/tests/rtest7.mac
-share/maxima/5.9.0/tests/rtest8.mac
-share/maxima/5.9.0/tests/rtest9.mac
-share/maxima/5.9.0/tests/rtest9a.mac
-share/maxima/5.9.0/tests/rtestflatten.mac
-share/maxima/5.9.0/tests/rtestode.mac
-share/maxima/5.9.0/tests/summarize-log
-share/maxima/5.9.0/tests/tests.lisp
-share/maxima/5.9.0/xmaxima/demos.html
-share/maxima/5.9.0/xmaxima/examples.html
-share/maxima/5.9.0/xmaxima/intro.html
-share/maxima/5.9.0/xmaxima/maxima-icon.ico
-share/maxima/5.9.0/xmaxima/maxima-icon.png
-share/maxima/5.9.0/xmaxima/maxima-new.gif
-share/maxima/5.9.0/xmaxima/maxima-new.png
-share/maxima/5.9.0/xmaxima/plotmaxima.html
-share/maxima/5.9.0/xmaxima/server.lisp
-@dirrm share/maxima/5.9.0/xmaxima
-@dirrm share/maxima/5.9.0/tests
-@dirrm share/maxima/5.9.0/src/numerical/slatec
-@dirrm share/maxima/5.9.0/src/numerical
-@dirrm share/maxima/5.9.0/src
-@dirrm share/maxima/5.9.0/share/vector
-@dirrm share/maxima/5.9.0/share/utils
-@dirrm share/maxima/5.9.0/share/trigonometry
-@dirrm share/maxima/5.9.0/share/tensor
-@dirrm share/maxima/5.9.0/share/sym
-@dirrm share/maxima/5.9.0/share/specfunctions
-@dirrm share/maxima/5.9.0/share/simplification
-@dirrm share/maxima/5.9.0/share/physics
-@dirrm share/maxima/5.9.0/share/numeric
-@dirrm share/maxima/5.9.0/share/misc
-@dirrm share/maxima/5.9.0/share/matrix
-@dirrm share/maxima/5.9.0/share/macro
-@dirrm share/maxima/5.9.0/share/integration
-@dirrm share/maxima/5.9.0/share/integequations
-@dirrm share/maxima/5.9.0/share/graphics
-@dirrm share/maxima/5.9.0/share/diffequations
-@dirrm share/maxima/5.9.0/share/contrib
-@dirrm share/maxima/5.9.0/share/combinatorics
-@dirrm share/maxima/5.9.0/share/calculus
-@dirrm share/maxima/5.9.0/share/algebra/solver
-@dirrm share/maxima/5.9.0/share/algebra/charsets
-@dirrm share/maxima/5.9.0/share/algebra
-@dirrm share/maxima/5.9.0/share
-@dirrm share/maxima/5.9.0/emacs
-@dirrm share/maxima/5.9.0/doc/share
-@dirrm share/maxima/5.9.0/doc/html
-@dirrm share/maxima/5.9.0/doc
-@dirrm share/maxima/5.9.0/demo
-@dirrm share/maxima/5.9.0
-@dirrm share/maxima
-@dirrm libexec/maxima/5.9.0
+lib/maxima/%%PORTVERSION%%/%%BINDIR%%/%%LISPBIN%%
+lib/maxima/%%PORTVERSION%%/%%BINDIR%%/%%MAXIMABIN%%
+libexec/maxima/%%PORTVERSION%%/mgnuplot
+libexec/maxima/%%PORTVERSION%%/omplotdata
+%%DATADIR%%/%%PORTVERSION%%/demo/array.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/cf.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/demo.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/eaton1.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/eaton2.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/ezgcd.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/hypgeo.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/macex.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/macro.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/manual.demo
+%%DATADIR%%/%%PORTVERSION%%/demo/newfac.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/plots.mac
+%%DATADIR%%/%%PORTVERSION%%/demo/rombrg.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/subscr.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/sumcon.dem
+%%DATADIR%%/%%PORTVERSION%%/demo/trgsmp.dem
+%%DATADIR%%/%%PORTVERSION%%/doc/EMaximaIntro.ps
+%%DATADIR%%/%%PORTVERSION%%/doc/contributors
+%%DATADIR%%/%%PORTVERSION%%/doc/html/intromax.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_1.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_10.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_11.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_12.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_13.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_14.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_15.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_16.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_17.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_18.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_19.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_2.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_20.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_21.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_22.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_23.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_24.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_25.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_26.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_27.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_28.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_29.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_3.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_30.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_31.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_32.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_33.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_34.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_35.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_36.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_37.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_38.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_39.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_4.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_40.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_41.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_42.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_43.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_5.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_6.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_7.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_8.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_9.html
+%%DATADIR%%/%%PORTVERSION%%/doc/html/maxima_toc.html
+%%DATADIR%%/%%PORTVERSION%%/doc/implementation/dir_vars.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/implementation/external-interface.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/Makefile
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/README
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/TODO
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/algcal/algcal.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/basics/basics.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/examples/examples.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/2dplotwindow.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/2dplotwindow.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/3dplotwindow.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/3dplotwindow.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/emacsmaximamodeshot.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/emacsmaximamodeshot.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/emacsshot.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/emacsshot.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/emaximashot.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/emaximashot.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/imaxima.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/imaxima.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/maxima_geomview.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/maxima_geomview.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/maxima_gnuplot.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/maxima_gnuplot.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/maxima_openmath.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/maxima_openmath.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/maximawindowsinstall1.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/maximawindowsinstall1.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/symaxx.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/symaxx.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/symaxxoutput.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/symaxxoutput.ps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/terminalshot.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/terminalshot.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/texmacs.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/texmacs.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/xmaxima.eps
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images/xmaxima.png
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/install/install.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/interfaces/interfaces.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/introduction/introduction.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/maxima.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/maxima.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/maxims/maxims.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/odes/advmath.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/odes/odes.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/output/izicinfo.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/output/output.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/preface/pref.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/programming/prog.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/share/calculus/pdiff.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/share/physics/dimension.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/axiom.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/higherordersymbcomput.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/jsymcomp.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/lispsymbcomput.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/macsyma.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/maple-extract.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/maple-tech.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/mathematica.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/red-a-f.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/red-g-l.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/red-m-z.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/redbooks.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/redextra.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/reduce.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive/sigsam.bib
+%%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/primer/primer.tex
+%%DATADIR%%/%%PORTVERSION%%/doc/misc/completescanoffunctionssortedbybytecodelength.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/misc/grepforvariables.sh
+%%DATADIR%%/%%PORTVERSION%%/doc/misc/maximafunctions.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/misc/maximafunctionsundocumented.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/misc/maximaitemspresentinbothfunctionandvariablescans.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/misc/maximavariables.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/misc/maximavariablesundocumented.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/misc/processlisfiles.sh
+%%DATADIR%%/%%PORTVERSION%%/doc/misc/weirdvariables.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/misc/workingvariables.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/misc/x.awk
+%%DATADIR%%/%%PORTVERSION%%/doc/share/bessel.usg
+%%DATADIR%%/%%PORTVERSION%%/doc/share/brchre.txt
+%%DATADIR%%/%%PORTVERSION%%/doc/share/rombrg.usg
+%%DATADIR%%/%%PORTVERSION%%/doc/share/specfun.texi
+%%DATADIR%%/%%PORTVERSION%%/doc/share/translation_hints.txt
+%%DATADIR%%/%%PORTVERSION%%/emacs/bookmode.el
+%%DATADIR%%/%%PORTVERSION%%/emacs/dbl.el
+%%DATADIR%%/%%PORTVERSION%%/emacs/emaxima.el
+%%DATADIR%%/%%PORTVERSION%%/emacs/emaxima.lisp
+%%DATADIR%%/%%PORTVERSION%%/emacs/emaxima.sty
+%%DATADIR%%/%%PORTVERSION%%/emacs/maxima-font-lock.el
+%%DATADIR%%/%%PORTVERSION%%/emacs/maxima.el
+%%DATADIR%%/%%PORTVERSION%%/emacs/smart-complete.el
+%%DATADIR%%/%%PORTVERSION%%/emacs/sshell.el
+%%DATADIR%%/%%PORTVERSION%%/share/affine/README
+%%DATADIR%%/%%PORTVERSION%%/share/affine/affine.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/affine.system
+%%DATADIR%%/%%PORTVERSION%%/share/affine/amacros.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/aquotient.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/compat.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/dim-3.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/dim4-help.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/dummy-gc.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/macbasic.mac
+%%DATADIR%%/%%PORTVERSION%%/share/affine/make.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/makefile
+%%DATADIR%%/%%PORTVERSION%%/share/affine/modsimp.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/ndotsimp.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/new-rat.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/polya.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/polyb.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/polybas.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/polyc.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/polyd.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/polysmp.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/sheafa.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/sheafb.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/sheafc.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/sparsemat.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/sub-proj.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/sys-declaim.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/sys-proclaim.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/sysdef.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/affine/todd-coxeter.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/charsets/README
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/charsets/charsets.mac
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/charsets/test1.mac
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/differ.dem
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/differ.mac
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/gcdex.mac
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/grob1.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/nusum.mac
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/nusum.usg
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/recur.dem
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/recur.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/recur.mac
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/recur.transcript
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/solver/linsolve.mac
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/solver/misc.mac
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/solver/readme
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/solver/slvrmsgs.mac
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/solver/slvrtbox.mac
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/solver/solver.mac
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/solver/solver1-en.html
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/solver/solver1.pdf
+%%DATADIR%%/%%PORTVERSION%%/share/algebra/solver/test.mac
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/asympa.mac
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/cartan.dem
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/cartan.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/fourie.dem
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/fourie.mac
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/fourie.usg
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/gendif.mac
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/gendif.usg
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optmiz.dem
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optmiz.mac
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optmiz.transcript
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optmiz.usg
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optmiz_1.dem
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optmiz_2.dem
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optmiz_3.dem
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optmiz_4.dem
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optvar.dem
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optvar.mac
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optvar.transcript
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optvar.usg
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optvar_1.dem
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/optvar_2.dem
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/pade2.mac
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/qual.dem
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/qual.mac
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/qual.usg
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/qualsp.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/revert.mac
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/revert.usg
+%%DATADIR%%/%%PORTVERSION%%/share/calculus/taylor1.mac
+%%DATADIR%%/%%PORTVERSION%%/share/combinatorics/comgen.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/combinatorics/permut.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/Grobner/README
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/Grobner/grobner-demo.output
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/Grobner/grobner.demo
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/Grobner/maxima-grobner.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/README
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diag.dem
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diag.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diag.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/README
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/contrib_ode.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/contrib_ode.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/ode1_abel.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/ode1_clairault.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/ode1_factor.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/ode1_lagrange.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/ode1_lie.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/ode1_nonlinear.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/ode1_riccati.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/tests/Makefile
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/tests/README
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/tests/rtest_ode1_abel.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/tests/rtest_ode1_riccati.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/tests/rtest_sym.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/tests/rtest_sym2.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/tests/rtestode_murphy1.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/tests/rtestode_murphy2.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/tests/testsuite.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/f90.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/f90.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/README
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/autoload-m.macsyma
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/autoload-mp.macsyma
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/coeflist.demo
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/coeflist.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/coeflistp.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/format.announce
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/format.demo
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/format.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/format.ps
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/pois2.demo
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/format/pois2m.ps
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/Makefile
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/convmac.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/fdata.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/global.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/gtfix.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/init.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/intrfc.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/local.gtload.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/lspc.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/lspfor.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/lsprat.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/MANUAL.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/appA.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/appA1.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/appB.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/contents.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/doc.add
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/ref.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/sect1.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/sect2.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/sect3.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/sect4.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/sect5.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/sect6.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/title.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/tmp1.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/tmp2.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man/tmp3.ms
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/opt.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/output.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/parser.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/pre.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/read.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/segmnt.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/templt.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/README
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/array.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/array.output
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/datatest.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/datatest.out
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/for.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/graeffe.f
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/graeffe.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/graeffe.output
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/ham.in
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/loop.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/matrix.f
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/matrix.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/matrix.output
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/mcond.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/mdo.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/rk.in
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/runge.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/runge.output
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/runge.template
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/t.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/type.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test/type.output
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/vaxinit.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/vaxlsp.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/impdiff.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/lindstedt.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/lsquares.dem
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/lsquares.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/makeOrders.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/maximaMathML/CtMathML.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/maximaMathML/PrMathML.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/maximaMathML/load-mathml.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/maximaMathML/mathml-maxima.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/maximaMathML/mathml.readme
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/maximaMathML/mathmldisplay.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/mnewton.dem
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/mnewton.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/nset/README
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/nset/nset-init.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/nset/nset.html
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/nset/nset.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/nset/nset.texi
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/nset/test-nset.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/README
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/array.data
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/array.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/csv.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/is_equal_array.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/my_flatten.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/numericalio.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/ragged.data
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/ragged.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/really-csv.data
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/really-space-separated.csv
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/rectangular.csv
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/rectangular.data
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio/rectangular.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/pdiff/battex.sty
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/pdiff/history.txt
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/pdiff/pdiff-doc.pdf
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/pdiff/pdiff-doc.tex
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/pdiff/pdiff.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/plsquares.dem
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/plsquares.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/Avg3.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/Demo.bk1
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/Ima
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/Laplace.bk1
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/Newimprv.bk1
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/Ode1.bk1
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/Oden.bk1
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/Read.me
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/Reverse
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/Wkb
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/asympexp.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/asympexp.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/average.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/average.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/averm.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/averm.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/benard.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/cm.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/cm.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/composit.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/composit.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/duffing.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/duffing.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/hill.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/hill1.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/hill2.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/improved.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/improved.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/lc.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/lc.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/lc2.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/lie.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/lie.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/mathieu.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/mathieu.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/mathieu0.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/nf.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/nf.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/recursiv.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/recursiv.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/reduct1.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/reduct1.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/reduct2.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/reduct2.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/reduct3.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/reduct3.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/takens.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/takens.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/transfor.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/transfor.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/twovar.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/twovar.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/vandpol.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/rand/vandpol.usg
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/unit/unit.mac
+%%DATADIR%%/%%PORTVERSION%%/share/contrib/unit/unit.usg
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/abel.mac
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/desoln.mac
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/desoln.usg
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/exampl.mac
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/linde1.mc
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/ode2.mac
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/ode2.usg
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/odeaux.mac
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/pdvtr.mac
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/phypgm.mac
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/pivtr.mac
+%%DATADIR%%/%%PORTVERSION%%/share/diffequations/pmain.mac
+%%DATADIR%%/%%PORTVERSION%%/share/graphics/world.mac
+%%DATADIR%%/%%PORTVERSION%%/share/integequations/inteqn.mac
+%%DATADIR%%/%%PORTVERSION%%/share/integequations/inteqn.usg
+%%DATADIR%%/%%PORTVERSION%%/share/integequations/intexs.mac
+%%DATADIR%%/%%PORTVERSION%%/share/integration/antid.dem
+%%DATADIR%%/%%PORTVERSION%%/share/integration/antid.mac
+%%DATADIR%%/%%PORTVERSION%%/share/integration/antid.usg
+%%DATADIR%%/%%PORTVERSION%%/share/integration/bypart.mac
+%%DATADIR%%/%%PORTVERSION%%/share/integration/delta.dem
+%%DATADIR%%/%%PORTVERSION%%/share/integration/delta.mac
+%%DATADIR%%/%%PORTVERSION%%/share/integration/delta.usg
+%%DATADIR%%/%%PORTVERSION%%/share/integration/intsce.mac
+%%DATADIR%%/%%PORTVERSION%%/share/integration/intsce.usg
+%%DATADIR%%/%%PORTVERSION%%/share/macro/autolo.mac
+%%DATADIR%%/%%PORTVERSION%%/share/macro/basic.mac
+%%DATADIR%%/%%PORTVERSION%%/share/macro/caseq.mac
+%%DATADIR%%/%%PORTVERSION%%/share/macro/contrl.mac
+%%DATADIR%%/%%PORTVERSION%%/share/macro/defm.dem
+%%DATADIR%%/%%PORTVERSION%%/share/macro/defm.mac
+%%DATADIR%%/%%PORTVERSION%%/share/macro/defm.syn
+%%DATADIR%%/%%PORTVERSION%%/share/macro/defstm.mac
+%%DATADIR%%/%%PORTVERSION%%/share/macro/defstmrun.mac
+%%DATADIR%%/%%PORTVERSION%%/share/macro/fexpr.mac
+%%DATADIR%%/%%PORTVERSION%%/share/macro/keyarg.dem
+%%DATADIR%%/%%PORTVERSION%%/share/macro/keyarg.mac
+%%DATADIR%%/%%PORTVERSION%%/share/macro/packg.mac
+%%DATADIR%%/%%PORTVERSION%%/share/macro/sum1.mac
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/determ.mac
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/determ.usg
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/eigen.dem
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/eigen.mac
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/eigen.usg
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/eigen_1.dem
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/eigeni.mac
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/invert.mac
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/invert.usg
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/matfun.mac
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/nchrpl.dem
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/nchrpl.mac
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/pfaff.dem
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/pfaff.mac
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/pfaff.usg
+%%DATADIR%%/%%PORTVERSION%%/share/matrix/rateig.mac
+%%DATADIR%%/%%PORTVERSION%%/%%DATADIR%%-init.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/misc/arrfun.mac
+%%DATADIR%%/%%PORTVERSION%%/share/misc/declin.dem
+%%DATADIR%%/%%PORTVERSION%%/share/misc/declin.mac
+%%DATADIR%%/%%PORTVERSION%%/share/misc/declin.usg
+%%DATADIR%%/%%PORTVERSION%%/share/misc/diffop.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/misc/disran.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/misc/disran.usg
+%%DATADIR%%/%%PORTVERSION%%/share/misc/dump.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/misc/dump.usg
+%%DATADIR%%/%%PORTVERSION%%/share/misc/foptim.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/misc/seqopt.dem
+%%DATADIR%%/%%PORTVERSION%%/share/misc/seqopt.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/misc/seqopt.usg
+%%DATADIR%%/%%PORTVERSION%%/share/misc/set.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/misc/set.usg
+%%DATADIR%%/%%PORTVERSION%%/share/misc/smacro.mac
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/bffac.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/bffac.mac
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/bffac.usg
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/brmbrg.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/brmbrg.usg
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/cfortr.dem
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/cfortr.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/cfortr.tst
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/cfortr.usg
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/dblint.dem
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/dblint.mac
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/dblint.usg
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/dblint_1.dem
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/diffeq.dem
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/diffeq.mac
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/expense.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/fft.dem
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/fft.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/fft.usg
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/forma1.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/forma1.usg
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/format.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/format.usg
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/kach.dem
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/kach.mac
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/newton.mac
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/newton1.mac
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/qq.dem
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/qq.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/qq.usg
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/riemsum.mac
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/simpsn.dem
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/simpsn.mac
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/submac.dem
+%%DATADIR%%/%%PORTVERSION%%/share/numeric/submac.mac
+%%DATADIR%%/%%PORTVERSION%%/share/physics/battex.sty
+%%DATADIR%%/%%PORTVERSION%%/share/physics/dimen.dem
+%%DATADIR%%/%%PORTVERSION%%/share/physics/dimen.mac
+%%DATADIR%%/%%PORTVERSION%%/share/physics/dimen.usg
+%%DATADIR%%/%%PORTVERSION%%/share/physics/dimension.html
+%%DATADIR%%/%%PORTVERSION%%/share/physics/dimension.mac
+%%DATADIR%%/%%PORTVERSION%%/share/physics/dimension.pdf
+%%DATADIR%%/%%PORTVERSION%%/share/physics/dimension.tex
+%%DATADIR%%/%%PORTVERSION%%/share/physics/elec.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/physics/physconst.mac
+%%DATADIR%%/%%PORTVERSION%%/share/physics/physconst.usg
+%%DATADIR%%/%%PORTVERSION%%/share/physics/units.mac
+%%DATADIR%%/%%PORTVERSION%%/share/physics/units.usg
+%%DATADIR%%/%%PORTVERSION%%/share/share.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/absimp.dem
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/absimp.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/absimp.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/disol.dem
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/disol.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/disol.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/elim.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/elim.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/facex1.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/facexp.dem
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/facexp.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/facexp.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/functs.dem
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/functs.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/functs.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/genut.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/ineq.dem
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/ineq.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/ineq.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/lrats.dem
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/lrats.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/lrats.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/rducon.dem
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/rducon.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/rducon.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/rncomb.dem
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/rncomb.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/rncomb.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/scifac.dem
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/scifac.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/scifac.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/sqdnst.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/sqdnst.usg
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/stopex.dem
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/stopex.mac
+%%DATADIR%%/%%PORTVERSION%%/share/simplification/stopex.usg
+%%DATADIR%%/%%PORTVERSION%%/share/specfunctions/airy.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/specfunctions/airy.usg
+%%DATADIR%%/%%PORTVERSION%%/share/specfunctions/ellipt.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/specfunctions/ellipt.usg
+%%DATADIR%%/%%PORTVERSION%%/share/specfunctions/gamma.mac
+%%DATADIR%%/%%PORTVERSION%%/share/specfunctions/h-atom.dem
+%%DATADIR%%/%%PORTVERSION%%/share/specfunctions/kn.mac
+%%DATADIR%%/%%PORTVERSION%%/share/specfunctions/specfun.mac
+%%DATADIR%%/%%PORTVERSION%%/share/specfunctions/specfun.usg
+%%DATADIR%%/%%PORTVERSION%%/share/specfunctions/test_specfun.mac
+%%DATADIR%%/%%PORTVERSION%%/share/specfunctions/variational_method.dem
+%%DATADIR%%/%%PORTVERSION%%/share/sym/arite.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/chbase.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/compile.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/direct.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/doconline
+%%DATADIR%%/%%PORTVERSION%%/share/sym/docsym.tex
+%%DATADIR%%/%%PORTVERSION%%/share/sym/docsymidx.tex
+%%DATADIR%%/%%PORTVERSION%%/share/sym/ecrivain.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/elem.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/kak.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/lecteur.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/macros.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/makefile
+%%DATADIR%%/%%PORTVERSION%%/share/sym/multmon.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/operations.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/partpol.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/permut.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/pui.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/resolcayley.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/resolv1.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/resolvante.mac
+%%DATADIR%%/%%PORTVERSION%%/share/sym/schur.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/sym.mac
+%%DATADIR%%/%%PORTVERSION%%/share/sym/sym1.mac
+%%DATADIR%%/%%PORTVERSION%%/share/sym/treillis.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/tri.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/sym/util.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/aatest.mac
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/ademo-2steps.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/ademo.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/ajpff.mac
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/brans_vacuum.mac
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/canten.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/car_iden.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/ctenso_1.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/ctenso_2.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/ctenso_3.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/ctenso_4.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/ctensr.mac
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/ex_calc.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/ex_calc.mac
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/gener.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/info-tensor-2.txt
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/info-tensor.txt
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/inpfix.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/itensor.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/itensor.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/itensor.usg
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/jpff.mac
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/kaluza.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/kaluza.mac
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/lckdt.mac
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/manual.txt
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/metrics.mac
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/motion.mac
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/petrov.mac
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/swartz.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/symtry.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/ten_alg.dem
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/tensor-doc.txt
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/tentex.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/tensor/test1.mac
+%%DATADIR%%/%%PORTVERSION%%/share/trigonometry/atrig1.mac
+%%DATADIR%%/%%PORTVERSION%%/share/trigonometry/atrig1.usg
+%%DATADIR%%/%%PORTVERSION%%/share/trigonometry/ntrig.mac
+%%DATADIR%%/%%PORTVERSION%%/share/trigonometry/ntrig.usg
+%%DATADIR%%/%%PORTVERSION%%/share/trigonometry/spangl.mac
+%%DATADIR%%/%%PORTVERSION%%/share/trigonometry/spangl.usg
+%%DATADIR%%/%%PORTVERSION%%/share/trigonometry/trgsmp.mac
+%%DATADIR%%/%%PORTVERSION%%/share/trigonometry/trigrat.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/utils/batch.dem
+%%DATADIR%%/%%PORTVERSION%%/share/utils/batch.mac
+%%DATADIR%%/%%PORTVERSION%%/share/utils/batch.transcript
+%%DATADIR%%/%%PORTVERSION%%/share/utils/batch.usg
+%%DATADIR%%/%%PORTVERSION%%/share/utils/dskuse.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/utils/dskuse.usg
+%%DATADIR%%/%%PORTVERSION%%/share/utils/fileop.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/utils/fileop.usg
+%%DATADIR%%/%%PORTVERSION%%/share/utils/mactex-utilities.lisp
+%%DATADIR%%/%%PORTVERSION%%/share/vector/vect.dem
+%%DATADIR%%/%%PORTVERSION%%/share/vector/vect.mac
+%%DATADIR%%/%%PORTVERSION%%/share/vector/vect.usg
+%%DATADIR%%/%%PORTVERSION%%/share/vector/vect_transform.mac
+%%DATADIR%%/%%PORTVERSION%%/share/vector/vector.dem
+%%DATADIR%%/%%PORTVERSION%%/share/vector/vector.mac
+%%DATADIR%%/%%PORTVERSION%%/share/vector/vector.usg
+%%DATADIR%%/%%PORTVERSION%%/src/acall.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/algfac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/algsys.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/ar.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/askp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/asum.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/autoconf-variables.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/autol.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/bessel.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/buildq.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/cl-info.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/clmacs.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/combin.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/comm.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/comm2.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/commac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/command-line.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/compar.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/compat.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/cpoly.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/csimp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/csimp2.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/db.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/defcal.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/defint.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/defopt.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/desoln.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/displa.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/displm.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/dskfn.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/elim.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/ellipt.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/evalw.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/ezgcd.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/factor.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/fcall.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/flatten.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/float.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/fortra.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/generate-sys-proclaim.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/generr.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/grind.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/hayat.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/homog.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/hyp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/hypgeo.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/init-cl.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/inmis.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/intpol.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/invert.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/irinte.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/kclmac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/laplac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/ldisp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/lesfac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/letmac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/limit.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/linnew.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/lmdcls.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/logarc.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/macdes.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/macsys.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mactex.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/marray.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mat.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/matcom.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/matrix.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/matrun.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/max_ext.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/maxima-package.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/maxmac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mdebug.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mdefun.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mdot.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/merror.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mforma.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mformt.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mhayat.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/misc.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mlisp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mload.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mmacro.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mopers.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mormac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mrgmac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mstuff.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mtrace.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/mutils.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/nalgfa.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/newdet.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/newinv.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/nforma.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/nisimp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/nparse.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/nrat4.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/nregex.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numer.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/f2cl-lib.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/f2cl-package.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/README
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/d9aimp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/d9b0mp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/d9b1mp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/d9lgmc.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dai.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/daie.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dasyik.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dasyjy.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesi.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesi0.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesi1.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesj.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesj0.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesj1.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesk.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesk0.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesk1.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesy.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesy0.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbesy1.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbsi0e.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbsi1e.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbsk0e.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbsk1e.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbsknu.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dbsynu.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dcsevl.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/de1.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dei.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/derf.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/derfc.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dgamlm.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dgamln.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dgamma.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dgtsl.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/djairy.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dlngam.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqag.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqage.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqagi.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqagie.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqagpe.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqags.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqagse.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqawc.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqawce.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqawf.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqawfe.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqawo.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqawoe.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqaws.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqawse.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqc25c.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqc25f.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqc25s.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqcheb.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqelg.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqk15.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqk15i.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqk15w.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqk21.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqk31.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqk41.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqk51.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqk61.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqmomo.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqng.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqpsrt.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqwgtc.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqwgtf.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dqwgts.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/dyairy.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/fdump.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/initds.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/j4save.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/quadpack.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/quadpack.system
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/slatec.system
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/xercnt.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/xerhlt.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/xermsg.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/xerprn.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/xersve.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/xgetua.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zabs.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zacai.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zacon.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zairy.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zasyi.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zbesh.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zbesi.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zbesj.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zbesk.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zbesy.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zbinu.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zbknu.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zbuni.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zbunk.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zdiv.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zexp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zkscl.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zlog.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zmlri.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zmlt.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zrati.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zs1s2.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zseri.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zshch.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zsqrt.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zuchk.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zunhj.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zuni1.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zuni2.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zunik.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zunk1.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zunk2.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zuoik.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec/zwrsk.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numerm.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/numth.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/nusum.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/ode2.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/opers.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/optim.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/optimize.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/option.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/outmis.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/pade.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/parse-body.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/plot.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/pois2.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/pois3.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/polyrz.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/powers.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/procs.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/psolve.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/rat3a.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/rat3b.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/rat3c.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/rat3d.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/rat3e.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/ratmac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/ratout.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/ratpoi.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/residu.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/result.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/risch.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/rombrg.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/rpart.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/runtim.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/rzmac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/schatc.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/scs.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/series.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/server.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/set.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/simp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/sin.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/sinint.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/sloop.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/solve.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/specfn.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/spgcd.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/sprdet.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/strmac.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/sublis.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/sumcon.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/suprv1.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/sys-proclaim.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/tlimit.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/todd-coxeter.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trans1.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trans2.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trans3.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trans4.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trans5.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/transf.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/transl.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/transm.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/transq.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/transs.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trdata.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trgred.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trgsmp.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trigi.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trigo.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trmode.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/troper.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trpred.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trprop.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/trutil.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/ufact.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/utils.lisp
+%%DATADIR%%/%%PORTVERSION%%/src/zero.lisp
+%%DATADIR%%/%%PORTVERSION%%/tests/rexamples.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest1.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest10.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest11.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest12.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest13.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest13s.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest14.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest15.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest1a.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest2.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest3.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest4.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest5.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest6.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest6a.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest6b.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest7.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest8.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest9.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtest9a.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtestflatten.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtestode.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/rtestode_zp.mac
+%%DATADIR%%/%%PORTVERSION%%/tests/testsuite.lisp
+%%DATADIR%%/%%PORTVERSION%%/xmaxima/demos.html
+%%DATADIR%%/%%PORTVERSION%%/xmaxima/examples.html
+%%DATADIR%%/%%PORTVERSION%%/xmaxima/intro.html
+%%DATADIR%%/%%PORTVERSION%%/xmaxima/maxima-icon.ico
+%%DATADIR%%/%%PORTVERSION%%/xmaxima/maxima-icon.png
+%%DATADIR%%/%%PORTVERSION%%/xmaxima/maxima-new.gif
+%%DATADIR%%/%%PORTVERSION%%/xmaxima/maxima-new.png
+%%DATADIR%%/%%PORTVERSION%%/xmaxima/plotmaxima.html
+share/nls/POSIX
+share/nls/en_US.US-ASCII
+@dirrm %%DATADIR%%/%%PORTVERSION%%/xmaxima
+@dirrm %%DATADIR%%/%%PORTVERSION%%/tests
+@dirrm %%DATADIR%%/%%PORTVERSION%%/src/numerical/slatec
+@dirrm %%DATADIR%%/%%PORTVERSION%%/src/numerical
+@dirrm %%DATADIR%%/%%PORTVERSION%%/src
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/vector
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/utils
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/trigonometry
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/tensor
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/sym
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/specfunctions
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/simplification
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/physics
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/numeric
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/misc
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/matrix
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/macro
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/integration
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/integequations
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/graphics
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/diffequations
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/unit
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/rand
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/pdiff
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/numericalio
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/nset
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/maximaMathML
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/test
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran/man
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/gentran
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/format
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations/tests
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/diffequations
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib/Grobner
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/contrib
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/combinatorics
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/calculus
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/algebra/solver
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/algebra/charsets
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/algebra
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share/affine
+@dirrm %%DATADIR%%/%%PORTVERSION%%/share
+@dirrm %%DATADIR%%/%%PORTVERSION%%/emacs
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/share
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/misc
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/primer
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage/bibarchive
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/storage
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/share/physics
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/share/calculus
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/share
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/programming
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/preface
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/output
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/odes
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/maxims
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/introduction
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/interfaces
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/install
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/images
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/examples
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/basics
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook/algcal
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/maximabook
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/implementation
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc/html
+@dirrm %%DATADIR%%/%%PORTVERSION%%/doc
+@dirrm %%DATADIR%%/%%PORTVERSION%%/demo
+@dirrm %%DATADIR%%/%%PORTVERSION%%
+@dirrm %%DATADIR%%
+@dirrm libexec/maxima/%%PORTVERSION%%
@dirrm libexec/maxima
-@dirrm lib/maxima/5.9.0/binary-cmucl
-@dirrm lib/maxima/5.9.0
+@dirrm lib/maxima/%%PORTVERSION%%/%%BINDIR%%
+@dirrm lib/maxima/%%PORTVERSION%%
@dirrm lib/maxima