On Fri, Nov 11, 2011 at 05:26:57PM +0000, Christian Weisgerber wrote:
> Edd Barrett <vex...@gmail.com> wrote:
> 
> > There is a really annoying bug in the configure script which prevents it
> > from working with /bin/sh. I can't figure it out, so until someone does,
> > we pull in bash.
> 
> This looks like the same issue as the intltool bug:
> https://bugs.launchpad.net/intltool/+bug/639857

Nice one.

Updated diff, without a hint of bash.

Can I commit this and wxMaxima?

Index: Makefile
===================================================================
RCS file: /cvs/ports/math/maxima/Makefile,v
retrieving revision 1.16
diff -u -p -u -r1.16 Makefile
--- Makefile    4 Dec 2010 14:37:19 -0000       1.16
+++ Makefile    12 Nov 2011 13:11:39 -0000
@@ -2,7 +2,7 @@
 
 COMMENT=               GPL computer algebra system based on DOE Macsyma
 
-VERSION=               5.22.1
+VERSION=               5.25.1
 DISTNAME=              maxima-${VERSION}
 CATEGORIES=            math
 
@@ -19,6 +19,7 @@ MASTER_SITES=         ${MASTER_SITE_SOURCEFORGE
 USE_GMAKE=             yes
 
 LIB_DEPENDS=           lang/ecl
+RUN_DEPENDS =          math/gnuplot
 WANTLIB +=             c gc gmp m pthread ecl
 
 SUBST_VARS=            VERSION
@@ -31,12 +32,13 @@ FLAVORS=            no_x11
 FLAVOR?=
 
 .if !${FLAVOR:L:Mno_x11}
-MODTK_VERSION=         8.4
 MODULES+=              x11/tk
 RUN_DEPENDS+=          ${MODTK_RUN_DEPENDS}
-BUILD_DEPENDS=         ${RUN_DEPENDS}
-CONFIGURE_ARGS+=       --with-wish=${MODTCL_BIN}
+BUILD_DEPENDS +=       ${MODTK_RUN_DEPENDS}
+CONFIGURE_ARGS +=      --with-wish=${MODTK_BIN}
 .endif
 
+pre-configure:
+       ${SUBST_CMD} ${WRKSRC}/configure
 
 .include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /cvs/ports/math/maxima/distinfo,v
retrieving revision 1.6
diff -u -p -u -r1.6 distinfo
--- distinfo    4 Dec 2010 14:37:19 -0000       1.6
+++ distinfo    12 Nov 2011 13:11:39 -0000
@@ -1,5 +1,5 @@
-MD5 (maxima-5.22.1.tar.gz) = Fg6ovjkSfWY2uTSoXkB8mw==
-RMD160 (maxima-5.22.1.tar.gz) = /a3uQfJvvtTXYDhnUgAlEwWfhIU=
-SHA1 (maxima-5.22.1.tar.gz) = pUcyEiGjehqDy1PtYH0zl+fwci4=
-SHA256 (maxima-5.22.1.tar.gz) = mBrgsOi3KeZJCCsf6Z1anuB8+miWLo0V9UMalenYuWk=
-SIZE (maxima-5.22.1.tar.gz) = 21468277
+MD5 (maxima-5.25.1.tar.gz) = 8qc5nlPq3DjgvtuEPV1wVQ==
+RMD160 (maxima-5.25.1.tar.gz) = Usmm43rc6x62U1ZNOqX0sQpMoG4=
+SHA1 (maxima-5.25.1.tar.gz) = nJ6mZDTJypZUkJLDZAw7paT7pEs=
+SHA256 (maxima-5.25.1.tar.gz) = jpitdCFR5S7bVjN71iyKl0n3tZjLbtTpkZgODm+JcGo=
+SIZE (maxima-5.25.1.tar.gz) = 25864250
Index: patches/patch-configure
===================================================================
RCS file: patches/patch-configure
diff -N patches/patch-configure
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-configure     12 Nov 2011 13:11:39 -0000
@@ -0,0 +1,31 @@
+$OpenBSD$
+
+/bin/sh can't do this in POSIX mode on OpenBSD.
+
+Similar to this:
+https://bugs.launchpad.net/intltool/+bug/639857
+
+Reported upstream here:
+https://sourceforge.net/tracker/?func=detail&aid=3436157&group_id=4933&atid=104933
+
+
+--- configure.orig     Sat Nov 12 12:14:12 2011
++++ configure  Sat Nov 12 12:15:17 2011
+@@ -4571,12 +4571,12 @@ if test x"${exec_prefix}" = xNONE ; then
+ else
+       tmp_exec_prefix="${exec_prefix}"
+ fi
+-expanded_top_srcdir="`(cd \"$top_srcdir\" 1>/dev/null 2>/dev/null; pwd)`"
++expanded_top_srcdir=`(cd "$top_srcdir" 1>/dev/null 2>/dev/null; pwd)`
+ expanded_exec_prefix="${tmp_exec_prefix}"
+-expanded_libdir="`eval \"exec_prefix=${tmp_exec_prefix};echo ${libdir}\"`"
+-expanded_libexecdir="`eval \"exec_prefix=${tmp_exec_prefix};echo 
${libexecdir}\"`"
+-expanded_datadir="`eval 
\"prefix=${tmp_prefix};datarootdir=${datarootdir};echo ${datadir}\"`"
+-expanded_infodir="`eval 
\"prefix=${tmp_prefix};datarootdir=${datarootdir};echo ${infodir}\"`"
++expanded_libdir=`eval "exec_prefix=${tmp_exec_prefix};echo ${libdir}"`
++expanded_libexecdir=`eval "exec_prefix=${tmp_exec_prefix};echo ${libexecdir}"`
++expanded_datadir=`eval "prefix=${tmp_prefix};datarootdir=${datarootdir};echo 
${datadir}"`
++expanded_infodir=`eval "prefix=${tmp_prefix};datarootdir=${datarootdir};echo 
${infodir}"`
+ 
+ 
+ 
Index: patches/patch-share_Makefile_in
===================================================================
RCS file: patches/patch-share_Makefile_in
diff -N patches/patch-share_Makefile_in
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-share_Makefile_in     12 Nov 2011 13:11:39 -0000
@@ -0,0 +1,22 @@
+$OpenBSD$
+--- share/Makefile.in.orig     Thu Nov 10 12:22:36 2011
++++ share/Makefile.in  Thu Nov 10 12:23:02 2011
+@@ -1373,18 +1373,6 @@ EXTRA_DIST = $(genericdirDATA)
+ all: all-am
+ 
+ .SUFFIXES:
+-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/common.mk 
$(top_srcdir)/src/sharefiles.mk $(am__configure_deps)
+-      @for dep in $?; do \
+-        case '$(am__configure_deps)' in \
+-          *$$dep*) \
+-            cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-              && exit 0; \
+-            exit 1;; \
+-        esac; \
+-      done; \
+-      echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  share/Makefile'; \
+-      cd $(top_srcdir) && \
+-        $(AUTOMAKE) --gnu  share/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+       @case '$?' in \
Index: patches/patch-src_Makefile_in
===================================================================
RCS file: /cvs/ports/math/maxima/patches/patch-src_Makefile_in,v
retrieving revision 1.3
diff -u -p -u -r1.3 patch-src_Makefile_in
--- patches/patch-src_Makefile_in       6 Dec 2010 21:23:19 -0000       1.3
+++ patches/patch-src_Makefile_in       12 Nov 2011 13:11:39 -0000
@@ -1,7 +1,7 @@
 $OpenBSD: patch-src_Makefile_in,v 1.3 2010/12/06 21:23:19 espie Exp $
---- src/Makefile.in.orig       Sat Dec  4 15:06:49 2010
-+++ src/Makefile.in    Sat Dec  4 15:08:50 2010
-@@ -543,18 +543,6 @@ EXTRA_DIST = $(real_lisp_sources) maxima.asd maxima.sy
+--- src/Makefile.in.orig       Sun Aug 28 17:57:39 2011
++++ src/Makefile.in    Thu Nov 10 12:20:20 2011
+@@ -562,18 +562,6 @@ EXTRA_DIST = $(real_lisp_sources) maxima.asd maxima.sy
  all: all-am
  
  .SUFFIXES:
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/math/maxima/pkg/PLIST,v
retrieving revision 1.5
diff -u -p -u -r1.5 PLIST
--- pkg/PLIST   4 Dec 2010 14:37:19 -0000       1.5
+++ pkg/PLIST   12 Nov 2011 13:11:39 -0000
@@ -39,6 +39,23 @@ share/maxima/${VERSION}/doc/contributors
 share/maxima/${VERSION}/doc/html/
 share/maxima/${VERSION}/doc/html/contents.hhc
 share/maxima/${VERSION}/doc/html/figures/
+share/maxima/${VERSION}/doc/html/figures/bodegain1.gif
+share/maxima/${VERSION}/doc/html/figures/bodegain2.gif
+share/maxima/${VERSION}/doc/html/figures/bodegain3.gif
+share/maxima/${VERSION}/doc/html/figures/bodegain4.gif
+share/maxima/${VERSION}/doc/html/figures/bodegain5.gif
+share/maxima/${VERSION}/doc/html/figures/bodegain6.gif
+share/maxima/${VERSION}/doc/html/figures/bodegain7.gif
+share/maxima/${VERSION}/doc/html/figures/bodegain8.gif
+share/maxima/${VERSION}/doc/html/figures/bodephase1.gif
+share/maxima/${VERSION}/doc/html/figures/bodephase2.gif
+share/maxima/${VERSION}/doc/html/figures/bodephase3.gif
+share/maxima/${VERSION}/doc/html/figures/bodephase4.gif
+share/maxima/${VERSION}/doc/html/figures/bodephase5.gif
+share/maxima/${VERSION}/doc/html/figures/bodephase6.gif
+share/maxima/${VERSION}/doc/html/figures/bodephase7.gif
+share/maxima/${VERSION}/doc/html/figures/bodephase8.gif
+share/maxima/${VERSION}/doc/html/figures/bodephase9.gif
 share/maxima/${VERSION}/doc/html/figures/contour1.gif
 share/maxima/${VERSION}/doc/html/figures/contour2.gif
 share/maxima/${VERSION}/doc/html/figures/contour3.gif
@@ -68,6 +85,9 @@ share/maxima/${VERSION}/doc/html/figures
 share/maxima/${VERSION}/doc/html/figures/graphs14.gif
 share/maxima/${VERSION}/doc/html/figures/graphs15.gif
 share/maxima/${VERSION}/doc/html/figures/implicit_plot.gif
+share/maxima/${VERSION}/doc/html/figures/introduction1.gif
+share/maxima/${VERSION}/doc/html/figures/introduction2.gif
+share/maxima/${VERSION}/doc/html/figures/introduction3.gif
 share/maxima/${VERSION}/doc/html/figures/orthopoly1.gif
 share/maxima/${VERSION}/doc/html/figures/plotdf1.gif
 share/maxima/${VERSION}/doc/html/figures/plotdf2.gif
@@ -107,6 +127,7 @@ share/maxima/${VERSION}/doc/html/maxima.
 share/maxima/${VERSION}/doc/html/maxima.html
 share/maxima/${VERSION}/doc/html/maxima_1.html
 share/maxima/${VERSION}/doc/html/maxima_10.html
+share/maxima/${VERSION}/doc/html/maxima_100.html
 share/maxima/${VERSION}/doc/html/maxima_11.html
 share/maxima/${VERSION}/doc/html/maxima_12.html
 share/maxima/${VERSION}/doc/html/maxima_13.html
@@ -201,6 +222,9 @@ share/maxima/${VERSION}/doc/html/maxima_
 share/maxima/${VERSION}/doc/html/maxima_94.html
 share/maxima/${VERSION}/doc/html/maxima_95.html
 share/maxima/${VERSION}/doc/html/maxima_96.html
+share/maxima/${VERSION}/doc/html/maxima_97.html
+share/maxima/${VERSION}/doc/html/maxima_98.html
+share/maxima/${VERSION}/doc/html/maxima_99.html
 share/maxima/${VERSION}/doc/html/maxima_abt.html
 share/maxima/${VERSION}/doc/html/maxima_fot.html
 share/maxima/${VERSION}/doc/html/maxima_ovr.html
@@ -322,6 +346,37 @@ share/maxima/${VERSION}/share/calculus/q
 share/maxima/${VERSION}/share/calculus/qualsp.lisp
 share/maxima/${VERSION}/share/calculus/revert.mac
 share/maxima/${VERSION}/share/calculus/taylor1.mac
+share/maxima/${VERSION}/share/cobyla/
+share/maxima/${VERSION}/share/cobyla/bf-cobyla-interface.lisp
+share/maxima/${VERSION}/share/cobyla/bf_fmin_cobyla.mac
+share/maxima/${VERSION}/share/cobyla/cobyla-interface.lisp
+share/maxima/${VERSION}/share/cobyla/cobyla-lisp.system
+share/maxima/${VERSION}/share/cobyla/cobyla-package.lisp
+share/maxima/${VERSION}/share/cobyla/cobyla.system
+share/maxima/${VERSION}/share/cobyla/ex/
+share/maxima/${VERSION}/share/cobyla/ex/die.mac
+share/maxima/${VERSION}/share/cobyla/ex/ex1.mac
+share/maxima/${VERSION}/share/cobyla/ex/ex10.mac
+share/maxima/${VERSION}/share/cobyla/ex/ex2.mac
+share/maxima/${VERSION}/share/cobyla/ex/ex3.mac
+share/maxima/${VERSION}/share/cobyla/ex/ex4.mac
+share/maxima/${VERSION}/share/cobyla/ex/ex5.mac
+share/maxima/${VERSION}/share/cobyla/ex/ex6.mac
+share/maxima/${VERSION}/share/cobyla/ex/ex7.mac
+share/maxima/${VERSION}/share/cobyla/ex/ex8.mac
+share/maxima/${VERSION}/share/cobyla/ex/ex9.mac
+share/maxima/${VERSION}/share/cobyla/ex/transport.mac
+share/maxima/${VERSION}/share/cobyla/fmin_cobyla.mac
+share/maxima/${VERSION}/share/cobyla/lisp/
+share/maxima/${VERSION}/share/cobyla/lisp/bf-cobyla.lisp
+share/maxima/${VERSION}/share/cobyla/lisp/bf-cobylb.lisp
+share/maxima/${VERSION}/share/cobyla/lisp/bf-trstlp.lisp
+share/maxima/${VERSION}/share/cobyla/lisp/calcfc.lisp
+share/maxima/${VERSION}/share/cobyla/lisp/cobyla.lisp
+share/maxima/${VERSION}/share/cobyla/lisp/cobylb.lisp
+share/maxima/${VERSION}/share/cobyla/lisp/trstlp.lisp
+share/maxima/${VERSION}/share/cobyla/load-bf-cobyla.lisp
+share/maxima/${VERSION}/share/cobyla/load-cobyla.lisp
 share/maxima/${VERSION}/share/colnew/
 share/maxima/${VERSION}/share/colnew/colnew-if.lisp
 share/maxima/${VERSION}/share/colnew/colnew-lisp.system
@@ -358,8 +413,10 @@ share/maxima/${VERSION}/share/colnew/lis
 share/maxima/${VERSION}/share/colnew/lisp/subfor.lisp
 share/maxima/${VERSION}/share/colnew/lisp/vmonde.lisp
 share/maxima/${VERSION}/share/colnew/lisp/vwblok.lisp
+share/maxima/${VERSION}/share/colnew/load-colnew.lisp
 share/maxima/${VERSION}/share/colnew/prob1.mac
 share/maxima/${VERSION}/share/colnew/prob2.mac
+share/maxima/${VERSION}/share/colnew/prob4.mac
 share/maxima/${VERSION}/share/combinatorics/
 share/maxima/${VERSION}/share/combinatorics/README
 share/maxima/${VERSION}/share/contrib/
@@ -401,6 +458,10 @@ share/maxima/${VERSION}/share/contrib/am
 share/maxima/${VERSION}/share/contrib/amatrix/rtest_wilcoxon.mac
 share/maxima/${VERSION}/share/contrib/amatrix/wilcoxon.mac
 share/maxima/${VERSION}/share/contrib/augmented_lagrangian.mac
+share/maxima/${VERSION}/share/contrib/bernstein/
+share/maxima/${VERSION}/share/contrib/bernstein/bernstein.lisp
+share/maxima/${VERSION}/share/contrib/bernstein/bernstein_utilities.mac
+share/maxima/${VERSION}/share/contrib/bernstein/rtest_bernstein.mac
 share/maxima/${VERSION}/share/contrib/bitwise/
 share/maxima/${VERSION}/share/contrib/bitwise/bitwise.lisp
 share/maxima/${VERSION}/share/contrib/bitwise/bitwise_specification.txt
@@ -410,6 +471,7 @@ share/maxima/${VERSION}/share/contrib/bo
 share/maxima/${VERSION}/share/contrib/boolsimp/boolsimp.lisp
 share/maxima/${VERSION}/share/contrib/boolsimp/rtest_boolsimp.mac
 share/maxima/${VERSION}/share/contrib/clebsch_gordan.mac
+share/maxima/${VERSION}/share/contrib/clebsh-gordan.tex
 share/maxima/${VERSION}/share/contrib/colorterm.lisp
 share/maxima/${VERSION}/share/contrib/descriptive/
 share/maxima/${VERSION}/share/contrib/descriptive/biomed.data
@@ -422,6 +484,7 @@ share/maxima/${VERSION}/share/contrib/di
 share/maxima/${VERSION}/share/contrib/diffequations/README
 share/maxima/${VERSION}/share/contrib/diffequations/contrib_ode.mac
 share/maxima/${VERSION}/share/contrib/diffequations/contrib_ode.usg
+share/maxima/${VERSION}/share/contrib/diffequations/de-test.txt
 share/maxima/${VERSION}/share/contrib/diffequations/extrabessel.lisp
 share/maxima/${VERSION}/share/contrib/diffequations/gauss.lisp
 share/maxima/${VERSION}/share/contrib/diffequations/kummer.lisp
@@ -438,8 +501,9 @@ share/maxima/${VERSION}/share/contrib/di
 share/maxima/${VERSION}/share/contrib/diffequations/rtest_odelin.mac
 share/maxima/${VERSION}/share/contrib/diffequations/spherodialwave.lisp
 share/maxima/${VERSION}/share/contrib/diffequations/sqfr.lisp
+share/maxima/${VERSION}/share/contrib/diffequations/testodelin.lisp
+share/maxima/${VERSION}/share/contrib/diffequations/testodelin.mac
 share/maxima/${VERSION}/share/contrib/diffequations/tests/
-share/maxima/${VERSION}/share/contrib/diffequations/tests/Makefile
 share/maxima/${VERSION}/share/contrib/diffequations/tests/README
 share/maxima/${VERSION}/share/contrib/diffequations/tests/rtest_ode1_abel.mac
 
share/maxima/${VERSION}/share/contrib/diffequations/tests/rtest_ode1_riccati.mac
@@ -467,6 +531,7 @@ share/maxima/${VERSION}/share/contrib/di
 
share/maxima/${VERSION}/share/contrib/diffequations/tests/rtestode_murphy_2_3.mac
 
share/maxima/${VERSION}/share/contrib/diffequations/tests/rtestode_murphy_2_4.mac
 
share/maxima/${VERSION}/share/contrib/diffequations/tests/rtestode_murphy_2_5.mac
+share/maxima/${VERSION}/share/contrib/diffequations/tests/rtestode_odelin.mac
 share/maxima/${VERSION}/share/contrib/diffequations/tests/rtestode_utils.mac
 share/maxima/${VERSION}/share/contrib/diffequations/tests/testsuite.lisp
 share/maxima/${VERSION}/share/contrib/distrib/
@@ -477,13 +542,13 @@ share/maxima/${VERSION}/share/contrib/ez
 share/maxima/${VERSION}/share/contrib/ezunits/ezunits.dem
 share/maxima/${VERSION}/share/contrib/ezunits/ezunits.lisp
 share/maxima/${VERSION}/share/contrib/ezunits/ezunits.mac
+share/maxima/${VERSION}/share/contrib/ezunits/ezunits_db.mac
+share/maxima/${VERSION}/share/contrib/ezunits/ezunits_functions.mac
 share/maxima/${VERSION}/share/contrib/ezunits/physical_constants.mac
 share/maxima/${VERSION}/share/contrib/ezunits/rtestezunits.mac
 share/maxima/${VERSION}/share/contrib/f90.lisp
 share/maxima/${VERSION}/share/contrib/finance/
-share/maxima/${VERSION}/share/contrib/finance/finance.es.texi
 share/maxima/${VERSION}/share/contrib/finance/finance.mac
-share/maxima/${VERSION}/share/contrib/finance/finance.texi
 share/maxima/${VERSION}/share/contrib/floatproperties.lisp
 share/maxima/${VERSION}/share/contrib/format/
 share/maxima/${VERSION}/share/contrib/format/README
@@ -504,7 +569,6 @@ share/maxima/${VERSION}/share/contrib/fo
 share/maxima/${VERSION}/share/contrib/fourier_elim/rtest_fourier_elim.mac
 share/maxima/${VERSION}/share/contrib/fractals/
 share/maxima/${VERSION}/share/contrib/fractals/fractals.mac
-share/maxima/${VERSION}/share/contrib/fractals/fractals.texi
 share/maxima/${VERSION}/share/contrib/fractals/rtest_fractals.mac
 share/maxima/${VERSION}/share/contrib/fresnel/
 share/maxima/${VERSION}/share/contrib/fresnel/d78.mac
@@ -524,7 +588,6 @@ share/maxima/${VERSION}/share/contrib/fr
 share/maxima/${VERSION}/share/contrib/fresnel/randil.mac
 share/maxima/${VERSION}/share/contrib/fresnel/readme.txt
 share/maxima/${VERSION}/share/contrib/gentran/
-share/maxima/${VERSION}/share/contrib/gentran/Makefile
 share/maxima/${VERSION}/share/contrib/gentran/convmac.lisp
 share/maxima/${VERSION}/share/contrib/gentran/fdata.lisp
 share/maxima/${VERSION}/share/contrib/gentran/global.lisp
@@ -665,6 +728,7 @@ share/maxima/${VERSION}/share/contrib/no
 share/maxima/${VERSION}/share/contrib/noninteractive/asksign1.lisp
 share/maxima/${VERSION}/share/contrib/noninteractive/noninteractive.lisp
 share/maxima/${VERSION}/share/contrib/noninteractive/noninteractive.mac
+share/maxima/${VERSION}/share/contrib/noninteractive/rtest_noninteractive.mac
 share/maxima/${VERSION}/share/contrib/nset/
 share/maxima/${VERSION}/share/contrib/nset/README
 share/maxima/${VERSION}/share/contrib/nset/announce-1.2.txt
@@ -700,6 +764,7 @@ share/maxima/${VERSION}/share/contrib/pr
 share/maxima/${VERSION}/share/contrib/prim/prim-ex1.mac
 share/maxima/${VERSION}/share/contrib/prim/prim.mac
 share/maxima/${VERSION}/share/contrib/prim/prim.txt
+share/maxima/${VERSION}/share/contrib/quaternion.mac
 share/maxima/${VERSION}/share/contrib/rand/
 share/maxima/${VERSION}/share/contrib/rand/Avg3.mac
 share/maxima/${VERSION}/share/contrib/rand/Demo.bk1
@@ -854,6 +919,7 @@ share/maxima/${VERSION}/share/contrib/to
 share/maxima/${VERSION}/share/contrib/unit/
 share/maxima/${VERSION}/share/contrib/unit/unit-functions.lisp
 share/maxima/${VERSION}/share/contrib/unit/unit.mac
+share/maxima/${VERSION}/share/contrib/unit/unit.texi
 share/maxima/${VERSION}/share/contrib/unwind_protect.lisp
 share/maxima/${VERSION}/share/contrib/vector3d/
 share/maxima/${VERSION}/share/contrib/vector3d/vector3d.dem
@@ -878,6 +944,7 @@ share/maxima/${VERSION}/share/diffequati
 share/maxima/${VERSION}/share/diffequations/abel.mac
 share/maxima/${VERSION}/share/diffequations/desoln.mac
 share/maxima/${VERSION}/share/diffequations/desoln.usg
+share/maxima/${VERSION}/share/diffequations/drawdf.mac
 share/maxima/${VERSION}/share/diffequations/exampl.mac
 share/maxima/${VERSION}/share/diffequations/linde1.mc
 share/maxima/${VERSION}/share/diffequations/ode2.mac
@@ -889,9 +956,13 @@ share/maxima/${VERSION}/share/diffequati
 share/maxima/${VERSION}/share/diffequations/pmain.mac
 share/maxima/${VERSION}/share/draw/
 share/maxima/${VERSION}/share/draw/draw.lisp
+share/maxima/${VERSION}/share/draw/drawutils.mac
+share/maxima/${VERSION}/share/draw/drawutils.texi
+share/maxima/${VERSION}/share/draw/grcommon.lisp
 share/maxima/${VERSION}/share/draw/implicit3d.lisp
 share/maxima/${VERSION}/share/draw/picture.lisp
 share/maxima/${VERSION}/share/draw/rtest_draw.mac
+share/maxima/${VERSION}/share/draw/vtk.lisp
 share/maxima/${VERSION}/share/draw/wbd.lisp
 share/maxima/${VERSION}/share/draw/worldmap.mac
 share/maxima/${VERSION}/share/dynamics/
@@ -899,6 +970,7 @@ share/maxima/${VERSION}/share/dynamics/c
 share/maxima/${VERSION}/share/dynamics/dynamics.mac
 share/maxima/${VERSION}/share/dynamics/plotdf.lisp
 share/maxima/${VERSION}/share/dynamics/rtest_dynamics.mac
+share/maxima/${VERSION}/share/dynamics/visualization.lisp
 share/maxima/${VERSION}/share/hypergeometric/
 share/maxima/${VERSION}/share/hypergeometric/abramowitz_id.mac
 share/maxima/${VERSION}/share/hypergeometric/hypergeometric.lisp
@@ -917,6 +989,7 @@ share/maxima/${VERSION}/share/integratio
 share/maxima/${VERSION}/share/integration/delta.dem
 share/maxima/${VERSION}/share/integration/delta.mac
 share/maxima/${VERSION}/share/integration/delta.usg
+share/maxima/${VERSION}/share/integration/rtest_antid.mac
 share/maxima/${VERSION}/share/lapack/
 share/maxima/${VERSION}/share/lapack/blas/
 share/maxima/${VERSION}/share/lapack/blas/blas-lisp.system
@@ -995,9 +1068,12 @@ share/maxima/${VERSION}/share/lapack/bla
 share/maxima/${VERSION}/share/lapack/blas/ztrmv.lisp
 share/maxima/${VERSION}/share/lapack/blas/ztrsm.lisp
 share/maxima/${VERSION}/share/lapack/blas/ztrsv.lisp
+share/maxima/${VERSION}/share/lapack/dgemm.lisp
+share/maxima/${VERSION}/share/lapack/dgeqrf.lisp
 share/maxima/${VERSION}/share/lapack/dgesv.lisp
 share/maxima/${VERSION}/share/lapack/eigensys.lisp
 share/maxima/${VERSION}/share/lapack/lapack/
+share/maxima/${VERSION}/share/lapack/lapack-lisp.system
 share/maxima/${VERSION}/share/lapack/lapack-package.lisp
 share/maxima/${VERSION}/share/lapack/lapack.mac
 share/maxima/${VERSION}/share/lapack/lapack.system
@@ -1100,16 +1176,21 @@ share/maxima/${VERSION}/share/lapack/lap
 share/maxima/${VERSION}/share/lapack/lapack/zlange.lisp
 share/maxima/${VERSION}/share/lapack/lapack/zlassq.lisp
 share/maxima/${VERSION}/share/lapack/load-lapack.lisp
+share/maxima/${VERSION}/share/lapack/rtest_dgeqrf.mac
 share/maxima/${VERSION}/share/lbfgs/
+share/maxima/${VERSION}/share/lbfgs/f2cl-lbfgs.lisp
 share/maxima/${VERSION}/share/lbfgs/lb1.lisp
 share/maxima/${VERSION}/share/lbfgs/lb2.lisp
 share/maxima/${VERSION}/share/lbfgs/lbfgs-daxpy.lisp
 share/maxima/${VERSION}/share/lbfgs/lbfgs-ddot.lisp
+share/maxima/${VERSION}/share/lbfgs/lbfgs-lisp.system
 share/maxima/${VERSION}/share/lbfgs/lbfgs.lisp
 share/maxima/${VERSION}/share/lbfgs/lbfgs.mac
 share/maxima/${VERSION}/share/lbfgs/maxima-lbfgs.lisp
 share/maxima/${VERSION}/share/lbfgs/mcsrch.lisp
 share/maxima/${VERSION}/share/lbfgs/mcstep.lisp
+share/maxima/${VERSION}/share/lbfgs/run-lbfgs.lisp
+share/maxima/${VERSION}/share/lbfgs/sdrive.lisp
 share/maxima/${VERSION}/share/linearalgebra/
 share/maxima/${VERSION}/share/linearalgebra/announcement.txt
 share/maxima/${VERSION}/share/linearalgebra/eigens-by-jacobi.lisp
@@ -1190,6 +1271,7 @@ share/maxima/${VERSION}/share/minpack/lo
 share/maxima/${VERSION}/share/minpack/minpack-interface.lisp
 share/maxima/${VERSION}/share/minpack/minpack-lisp.system
 share/maxima/${VERSION}/share/minpack/minpack-package.lisp
+share/maxima/${VERSION}/share/minpack/minpack.mac
 share/maxima/${VERSION}/share/minpack/minpack.system
 share/maxima/${VERSION}/share/misc/
 share/maxima/${VERSION}/share/misc/arrfun.mac
@@ -1234,6 +1316,7 @@ share/maxima/${VERSION}/share/numeric/ne
 share/maxima/${VERSION}/share/numeric/newton1.mac
 share/maxima/${VERSION}/share/numeric/riemsum.mac
 share/maxima/${VERSION}/share/numeric/romberg.lisp
+share/maxima/${VERSION}/share/numeric/rtest_fft.mac
 share/maxima/${VERSION}/share/numeric/rtest_interpol.mac
 share/maxima/${VERSION}/share/numeric/rtest_romberg.mac
 share/maxima/${VERSION}/share/numeric/simpsn.dem
@@ -1262,6 +1345,7 @@ share/maxima/${VERSION}/share/physics/ph
 share/maxima/${VERSION}/share/physics/physconst.usg
 share/maxima/${VERSION}/share/physics/units.mac
 share/maxima/${VERSION}/share/physics/units.usg
+share/maxima/${VERSION}/share/readme-share.txt
 share/maxima/${VERSION}/share/share.usg
 share/maxima/${VERSION}/share/share_testsuite.mac
 share/maxima/${VERSION}/share/simplification/
@@ -1353,6 +1437,7 @@ share/maxima/${VERSION}/share/tensor/gen
 share/maxima/${VERSION}/share/tensor/godel.dem
 share/maxima/${VERSION}/share/tensor/helicity.dem
 share/maxima/${VERSION}/share/tensor/hodge.dem
+share/maxima/${VERSION}/share/tensor/hydro.dem
 share/maxima/${VERSION}/share/tensor/iframe.mac
 share/maxima/${VERSION}/share/tensor/itensor.lisp
 share/maxima/${VERSION}/share/tensor/itensor1.dem
@@ -1364,6 +1449,7 @@ share/maxima/${VERSION}/share/tensor/ite
 share/maxima/${VERSION}/share/tensor/itensor8.dem
 share/maxima/${VERSION}/share/tensor/itensor9.dem
 share/maxima/${VERSION}/share/tensor/kaluza.dem
+share/maxima/${VERSION}/share/tensor/kruskal.dem
 share/maxima/${VERSION}/share/tensor/lckdt.mac
 share/maxima/${VERSION}/share/tensor/mail-archive.txt
 share/maxima/${VERSION}/share/tensor/maxwell.dem
@@ -1651,13 +1737,11 @@ share/maxima/${VERSION}/src/optimize.lis
 share/maxima/${VERSION}/src/option.lisp
 share/maxima/${VERSION}/src/outmis.lisp
 share/maxima/${VERSION}/src/pade.lisp
-share/maxima/${VERSION}/src/parse-body.lisp
 share/maxima/${VERSION}/src/plasma.lisp
 share/maxima/${VERSION}/src/plot.lisp
 share/maxima/${VERSION}/src/pois2.lisp
 share/maxima/${VERSION}/src/pois3.lisp
 share/maxima/${VERSION}/src/polyrz.lisp
-share/maxima/${VERSION}/src/procs.lisp
 share/maxima/${VERSION}/src/psolve.lisp
 share/maxima/${VERSION}/src/rand-mt19937.lisp
 share/maxima/${VERSION}/src/rat3a.lisp
@@ -1672,7 +1756,6 @@ share/maxima/${VERSION}/src/residu.lisp
 share/maxima/${VERSION}/src/result.lisp
 share/maxima/${VERSION}/src/risch.lisp
 share/maxima/${VERSION}/src/rpart.lisp
-share/maxima/${VERSION}/src/runtim.lisp
 share/maxima/${VERSION}/src/rzmac.lisp
 share/maxima/${VERSION}/src/schatc.lisp
 share/maxima/${VERSION}/src/scs.lisp
@@ -1747,6 +1830,7 @@ share/maxima/${VERSION}/tests/rtest_alge
 share/maxima/${VERSION}/tests/rtest_allnummod.mac
 share/maxima/${VERSION}/tests/rtest_ask.mac
 share/maxima/${VERSION}/tests/rtest_boolean.mac
+share/maxima/${VERSION}/tests/rtest_carg.mac
 share/maxima/${VERSION}/tests/rtest_diff_invtrig.mac
 share/maxima/${VERSION}/tests/rtest_dot.mac
 share/maxima/${VERSION}/tests/rtest_elliptic.mac
@@ -1758,9 +1842,11 @@ share/maxima/${VERSION}/tests/rtest_hypg
 share/maxima/${VERSION}/tests/rtest_integrate.mac
 share/maxima/${VERSION}/tests/rtest_integrate_special.mac
 share/maxima/${VERSION}/tests/rtest_lambert_w.mac
+share/maxima/${VERSION}/tests/rtest_log.mac
 share/maxima/${VERSION}/tests/rtest_map.mac
 share/maxima/${VERSION}/tests/rtest_mset.mac
 share/maxima/${VERSION}/tests/rtest_plot.mac
+share/maxima/${VERSION}/tests/rtest_power.mac
 share/maxima/${VERSION}/tests/rtest_round.mac
 share/maxima/${VERSION}/tests/rtest_scalarp.mac
 share/maxima/${VERSION}/tests/rtest_sign.mac

-- 
Best Regards
Edd Barrett

http://www.theunixzoo.co.uk

Reply via email to