aboutsummaryrefslogtreecommitdiffstats
path: root/math/octave
diff options
context:
space:
mode:
authormaho <maho@FreeBSD.org>2009-04-12 08:19:20 +0800
committermaho <maho@FreeBSD.org>2009-04-12 08:19:20 +0800
commitafc4b1027068d238ec4b988b5e53a37c8b097a55 (patch)
tree067a913846098e97898178a04ea18536ed7ac31b /math/octave
parentae5d284dc6c545d6b054534e699e0c8de9c46120 (diff)
downloadfreebsd-ports-gnome-afc4b1027068d238ec4b988b5e53a37c8b097a55.tar.gz
freebsd-ports-gnome-afc4b1027068d238ec4b988b5e53a37c8b097a55.tar.zst
freebsd-ports-gnome-afc4b1027068d238ec4b988b5e53a37c8b097a55.zip
Update to 3.0.5.
Diffstat (limited to 'math/octave')
-rw-r--r--math/octave/Makefile19
-rw-r--r--math/octave/distinfo6
-rw-r--r--math/octave/files/patch-examples+Makefile.in17
-rw-r--r--math/octave/files/patch-scripts+pkg+pkg.m10
-rw-r--r--math/octave/files/patch-ss3253
-rw-r--r--math/octave/pkg-plist1754
6 files changed, 65 insertions, 1794 deletions
diff --git a/math/octave/Makefile b/math/octave/Makefile
index 4c659d67d72a..8e09444bc60e 100644
--- a/math/octave/Makefile
+++ b/math/octave/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= octave
-PORTVERSION= 3.0.3
-PORTREVISION= 4
+PORTVERSION= 3.0.5
CATEGORIES= math
MASTER_SITES= ftp://ftp.octave.org/pub/octave/ \
ftp://ftp.u-aizu.ac.jp/pub/SciEng/numanal/Octave/bleeding-edge/
@@ -70,13 +69,11 @@ PLIST_SUB= OCTAVE_VERSION=${OCTAVE_VERSION} GNU_HOST=${GNU_HOST}
INCLUDES= -I${LOCALBASE}/include -I${LOCALBASE}/include/metis
MAKE_ENV+= CPPFLAGS="${CPPFLAGS} ${INCLUDES}" \
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}"
+CFLAGS+= ${INCLUDES}
+CXXFLAGS+= ${INCLUDES}
+CPPFLAGS+= ${INCLUDES}
CONFIGURE_ENV+= GPERF="${LOCALBASE}/bin/gperf" \
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}" \
- CFLAGS="${CFLAGS} ${INCLUDES}" \
- CXXFLAGS="${CXXFLAGS} ${INCLUDES}" \
- CPPFLAGS="${CPPFLAGS} ${INCLUDES}" \
- F77="${FC}" \
- FFLAGS="${FFLAGS}" \
CC="${CC}" \
CXX="${CXX}" \
TERMIOS_H="termios.h"
@@ -106,5 +103,13 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR}
.endfor
.endif
+ ${RM} -f ${WRKDIR}/PLIST
+.for d in ${PREFIX}/include/octave-${OCTAVE_VERSION} ${PREFIX}/share/octave ${PREFIX}/libexec/octave ${PREFIX}/lib/octave-${OCTAVE_VERSION}
+ @${FIND} -s $d -not -type d | \
+ ${SED} -e 's#^${PREFIX}/##' >> ${WRKDIR}/PLIST
+ @${FIND} $d -type d | ${SORT} -r | \
+ ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${WRKDIR}/PLIST
+.endfor
+ cd ${WRKDIR} ; ${SED} -i -e "/PLIST/ r PLIST" ${TMPPLIST}
.include <bsd.port.post.mk>
diff --git a/math/octave/distinfo b/math/octave/distinfo
index 9978905360c2..6f45ac41cb49 100644
--- a/math/octave/distinfo
+++ b/math/octave/distinfo
@@ -1,3 +1,3 @@
-MD5 (octave-3.0.3.tar.bz2) = 38d258d60242cf4844e3c4350691ccff
-SHA256 (octave-3.0.3.tar.bz2) = f90108bf6a2f9930907aa740d1c4d39551985cf3b5c5eb5dfdb436e0d3b5d79d
-SIZE (octave-3.0.3.tar.bz2) = 10159024
+MD5 (octave-3.0.5.tar.bz2) = bfba44eeda8fa6e29c2bbcd2604c34eb
+SHA256 (octave-3.0.5.tar.bz2) = 40b84071d07e17eafe338638b4f1bfce991bdac07d277f1098cb7e6b0b8f4ad7
+SIZE (octave-3.0.5.tar.bz2) = 10158578
diff --git a/math/octave/files/patch-examples+Makefile.in b/math/octave/files/patch-examples+Makefile.in
new file mode 100644
index 000000000000..177e7d8cc6c6
--- /dev/null
+++ b/math/octave/files/patch-examples+Makefile.in
@@ -0,0 +1,17 @@
+--- examples/Makefile.in~ 2008-07-22 00:59:03.000000000 +0900
++++ examples/Makefile.in 2008-08-23 05:46:34.000000000 +0900
+@@ -95,10 +95,10 @@
+ rm -f $(DESTDIR)$(imagedir)/$$f; \
+ $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(imagedir)/$$f; \
+ done
+- -if test -n "$(DESKTOP_FILE_INSTALL)"; then \
+- $(DESKTOP_FILE_INSTALL) --dir=$(DESTDIR)$(datadir)/applications \
+- --vendor www.octave.org octave.desktop; \
+- fi
++# -if test -n "$(DESKTOP_FILE_INSTALL)"; then \
++# $(DESKTOP_FILE_INSTALL) --dir=$(DESTDIR)$(datadir)/applications \
++# --vendor www.octave.org octave.desktop; \
++# fi
+ .PHONY: install install-strip
+
+ uninstall:
diff --git a/math/octave/files/patch-scripts+pkg+pkg.m b/math/octave/files/patch-scripts+pkg+pkg.m
index c4b0030fe524..1e46e7eab91d 100644
--- a/math/octave/files/patch-scripts+pkg+pkg.m
+++ b/math/octave/files/patch-scripts+pkg+pkg.m
@@ -1,11 +1,11 @@
---- scripts/pkg/pkg.m~ 2007-12-20 16:55:26.000000000 +0000
-+++ scripts/pkg/pkg.m 2008-02-25 16:32:59.000000000 +0000
-@@ -1052,7 +1052,7 @@
+--- scripts/pkg/pkg.m~ 2009-04-09 17:26:54.000000000 +0900
++++ scripts/pkg/pkg.m 2009-04-09 17:27:14.000000000 +0900
+@@ -1242,7 +1242,7 @@
## make
if (exist (fullfile (src, "Makefile"), "file"))
[status, output] = shell (strcat ("export INSTALLDIR=\"", desc.dir,
-- "\"; make -C ", src));
-+ "\"; gmake -C ", src));
+- "\"; make -C '", src, "'"));
++ "\"; gmake -C '", src, "'"));
if (status != 0)
rm_rf (desc.dir);
error ("'make' returned the following error: %s", output);
diff --git a/math/octave/files/patch-ss32 b/math/octave/files/patch-ss32
deleted file mode 100644
index 659d1b173ec3..000000000000
--- a/math/octave/files/patch-ss32
+++ /dev/null
@@ -1,53 +0,0 @@
-# HG changeset patch
-# User Jaroslav Hajek <highegg@gmail.com>
-# Date 1223800240 -7200
-# Node ID 712d9e045b1e4936708405de8be086bce580b588
-# Parent 4c023cbfab27fe07ad5c65162c815bbccc601bbb
-fix for SuiteSparse 3.2
-
---- liboctave/ChangeLog Fri Oct 10 11:35:10 2008 +0200
-+++ liboctave/ChangeLog Sun Oct 12 10:30:40 2008 +0200
-@@ -1,3 +1,9 @@ 2008-10-08 John W. Eaton <jwe@octave.o
-+2008-10-10 Jaroslav Hajek <highegg@gmail.com>
-+
-+ * sparse-util.h (SparseCholPrint): Change char * argument to const
-+ char *.
-+ * sparse-util.cc (SparseCholPrint): Likewise.
-+
- 2008-10-08 John W. Eaton <jwe@octave.org>
-
- * Sparse-op-defs.h (SPARSE_SMSM_BOOL_OPS): Duplicate code for scalar
---- liboctave/sparse-util.cc Fri Oct 10 11:35:10 2008 +0200
-+++ liboctave/sparse-util.cc Sun Oct 12 10:30:40 2008 +0200
-@@ -30,8 +30,15 @@ along with Octave; see the file COPYING.
- #include "lo-error.h"
- #include "sparse-util.h"
-
-+// FIXME this overload is here due to API change in SuiteSparse (3.1 -> 3.2)
- void
- SparseCholError (int status, char *file, int line, char *message)
-+{
-+ SparseCholError (status, file, line, message);
-+}
-+
-+void
-+SparseCholError (int status, const char *file, int line, const char *message)
- {
- (*current_liboctave_warning_handler)("warning %i, at line %i in file %s",
- status, line, file);
---- liboctave/sparse-util.h Fri Oct 10 11:35:10 2008 +0200
-+++ liboctave/sparse-util.h Sun Oct 12 10:30:40 2008 +0200
-@@ -24,7 +24,11 @@ along with Octave; see the file COPYING.
- #if !defined (octave_sparse_util_h)
- #define octave_sparse_util_h 1
-
--extern OCTAVE_API void SparseCholError (int status, char *file, int line, char *message);
-+// FIXME this overload is here due to API change in SuiteSparse (3.1 -> 3.2)
-+extern OCTAVE_API void SparseCholError (int status, char *file,
-+ int line, char *message);
-+extern OCTAVE_API void SparseCholError (int status, const char *file,
-+ int line, const char *message);
- extern OCTAVE_API int SparseCholPrint (const char *fmt, ...);
-
- #endif
-
diff --git a/math/octave/pkg-plist b/math/octave/pkg-plist
index 896b642677a9..45752b1a74c9 100644
--- a/math/octave/pkg-plist
+++ b/math/octave/pkg-plist
@@ -6,1732 +6,34 @@ bin/octave-bug
bin/octave-bug-%%OCTAVE_VERSION%%
bin/octave-config
bin/octave-config-%%OCTAVE_VERSION%%
-include/octave-%%OCTAVE_VERSION%%/octave/Array-util.h
-include/octave-%%OCTAVE_VERSION%%/octave/Array.cc
-include/octave-%%OCTAVE_VERSION%%/octave/Array.h
-include/octave-%%OCTAVE_VERSION%%/octave/Array2.h
-include/octave-%%OCTAVE_VERSION%%/octave/Array3.h
-include/octave-%%OCTAVE_VERSION%%/octave/ArrayN-idx.h
-include/octave-%%OCTAVE_VERSION%%/octave/ArrayN.cc
-include/octave-%%OCTAVE_VERSION%%/octave/ArrayN.h
-include/octave-%%OCTAVE_VERSION%%/octave/Bounds.h
-include/octave-%%OCTAVE_VERSION%%/octave/CColVector.h
-include/octave-%%OCTAVE_VERSION%%/octave/CDiagMatrix.h
-include/octave-%%OCTAVE_VERSION%%/octave/CMatrix.h
-include/octave-%%OCTAVE_VERSION%%/octave/CNDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/CRowVector.h
-include/octave-%%OCTAVE_VERSION%%/octave/CSparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/Cell.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxAEPBAL.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxCHOL.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxDET.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxHESS.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxLU.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxQR.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxQRP.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxSCHUR.h
-include/octave-%%OCTAVE_VERSION%%/octave/CmplxSVD.h
-include/octave-%%OCTAVE_VERSION%%/octave/CollocWt.h
-include/octave-%%OCTAVE_VERSION%%/octave/DAE.h
-include/octave-%%OCTAVE_VERSION%%/octave/DAEFunc.h
-include/octave-%%OCTAVE_VERSION%%/octave/DAERT.h
-include/octave-%%OCTAVE_VERSION%%/octave/DAERTFunc.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASPK-opts.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASPK.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASRT-opts.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASRT.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASSL-opts.h
-include/octave-%%OCTAVE_VERSION%%/octave/DASSL.h
-include/octave-%%OCTAVE_VERSION%%/octave/DiagArray2.cc
-include/octave-%%OCTAVE_VERSION%%/octave/DiagArray2.h
-include/octave-%%OCTAVE_VERSION%%/octave/EIG.h
-include/octave-%%OCTAVE_VERSION%%/octave/FEGrid.h
-include/octave-%%OCTAVE_VERSION%%/octave/LP.h
-include/octave-%%OCTAVE_VERSION%%/octave/LSODE-opts.h
-include/octave-%%OCTAVE_VERSION%%/octave/LSODE.h
-include/octave-%%OCTAVE_VERSION%%/octave/LinConst.h
-include/octave-%%OCTAVE_VERSION%%/octave/MArray-defs.h
-include/octave-%%OCTAVE_VERSION%%/octave/MArray.cc
-include/octave-%%OCTAVE_VERSION%%/octave/MArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/MArray2.cc
-include/octave-%%OCTAVE_VERSION%%/octave/MArray2.h
-include/octave-%%OCTAVE_VERSION%%/octave/MArrayN.cc
-include/octave-%%OCTAVE_VERSION%%/octave/MArrayN.h
-include/octave-%%OCTAVE_VERSION%%/octave/MDiagArray2.cc
-include/octave-%%OCTAVE_VERSION%%/octave/MDiagArray2.h
-include/octave-%%OCTAVE_VERSION%%/octave/MSparse-defs.h
-include/octave-%%OCTAVE_VERSION%%/octave/MSparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/Matrix.h
-include/octave-%%OCTAVE_VERSION%%/octave/MatrixType.h
-include/octave-%%OCTAVE_VERSION%%/octave/NLConst.h
-include/octave-%%OCTAVE_VERSION%%/octave/NLEqn-opts.h
-include/octave-%%OCTAVE_VERSION%%/octave/NLEqn.h
-include/octave-%%OCTAVE_VERSION%%/octave/NLFunc.h
-include/octave-%%OCTAVE_VERSION%%/octave/NLP.h
-include/octave-%%OCTAVE_VERSION%%/octave/ODE.h
-include/octave-%%OCTAVE_VERSION%%/octave/ODEFunc.h
-include/octave-%%OCTAVE_VERSION%%/octave/ODES.h
-include/octave-%%OCTAVE_VERSION%%/octave/ODESFunc.h
-include/octave-%%OCTAVE_VERSION%%/octave/Objective.h
-include/octave-%%OCTAVE_VERSION%%/octave/QP.h
-include/octave-%%OCTAVE_VERSION%%/octave/Quad-opts.h
-include/octave-%%OCTAVE_VERSION%%/octave/Quad.h
-include/octave-%%OCTAVE_VERSION%%/octave/Range.h
-include/octave-%%OCTAVE_VERSION%%/octave/Sparse-op-defs.h
-include/octave-%%OCTAVE_VERSION%%/octave/Sparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparseCmplxCHOL.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparseCmplxLU.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparseCmplxQR.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparseQR.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparsedbleCHOL.h
-include/octave-%%OCTAVE_VERSION%%/octave/SparsedbleLU.h
-include/octave-%%OCTAVE_VERSION%%/octave/base-dae.h
-include/octave-%%OCTAVE_VERSION%%/octave/base-de.h
-include/octave-%%OCTAVE_VERSION%%/octave/base-list.h
-include/octave-%%OCTAVE_VERSION%%/octave/base-lu.cc
-include/octave-%%OCTAVE_VERSION%%/octave/base-lu.h
-include/octave-%%OCTAVE_VERSION%%/octave/base-min.h
-include/octave-%%OCTAVE_VERSION%%/octave/boolMatrix.h
-include/octave-%%OCTAVE_VERSION%%/octave/boolNDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/boolSparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/builtins.h
-include/octave-%%OCTAVE_VERSION%%/octave/byte-swap.h
-include/octave-%%OCTAVE_VERSION%%/octave/c-file-ptr-stream.h
-include/octave-%%OCTAVE_VERSION%%/octave/chMatrix.h
-include/octave-%%OCTAVE_VERSION%%/octave/chNDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/cmd-edit.h
-include/octave-%%OCTAVE_VERSION%%/octave/cmd-hist.h
-include/octave-%%OCTAVE_VERSION%%/octave/comment-list.h
-include/octave-%%OCTAVE_VERSION%%/octave/config.h
-include/octave-%%OCTAVE_VERSION%%/octave/dColVector.h
-include/octave-%%OCTAVE_VERSION%%/octave/dDiagMatrix.h
-include/octave-%%OCTAVE_VERSION%%/octave/dMatrix.h
-include/octave-%%OCTAVE_VERSION%%/octave/dNDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/dRowVector.h
-include/octave-%%OCTAVE_VERSION%%/octave/dSparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/data-conv.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleAEPBAL.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleCHOL.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleDET.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleHESS.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleLU.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleQR.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleQRP.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleSCHUR.h
-include/octave-%%OCTAVE_VERSION%%/octave/dbleSVD.h
-include/octave-%%OCTAVE_VERSION%%/octave/debug.h
-include/octave-%%OCTAVE_VERSION%%/octave/defaults.h
-include/octave-%%OCTAVE_VERSION%%/octave/defun-dld.h
-include/octave-%%OCTAVE_VERSION%%/octave/defun-int.h
-include/octave-%%OCTAVE_VERSION%%/octave/defun.h
-include/octave-%%OCTAVE_VERSION%%/octave/dim-vector.h
-include/octave-%%OCTAVE_VERSION%%/octave/dir-ops.h
-include/octave-%%OCTAVE_VERSION%%/octave/dirfns.h
-include/octave-%%OCTAVE_VERSION%%/octave/dynamic-ld.h
-include/octave-%%OCTAVE_VERSION%%/octave/error.h
-include/octave-%%OCTAVE_VERSION%%/octave/f77-fcn.h
-include/octave-%%OCTAVE_VERSION%%/octave/file-io.h
-include/octave-%%OCTAVE_VERSION%%/octave/file-ops.h
-include/octave-%%OCTAVE_VERSION%%/octave/file-stat.h
-include/octave-%%OCTAVE_VERSION%%/octave/getopt.h
-include/octave-%%OCTAVE_VERSION%%/octave/glob-match.h
-include/octave-%%OCTAVE_VERSION%%/octave/graphics.h
-include/octave-%%OCTAVE_VERSION%%/octave/gripes.h
-include/octave-%%OCTAVE_VERSION%%/octave/help.h
-include/octave-%%OCTAVE_VERSION%%/octave/idx-vector.h
-include/octave-%%OCTAVE_VERSION%%/octave/input.h
-include/octave-%%OCTAVE_VERSION%%/octave/int16NDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/int32NDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/int64NDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/int8NDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/intNDArray.cc
-include/octave-%%OCTAVE_VERSION%%/octave/intNDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/kpse-xfns.h
-include/octave-%%OCTAVE_VERSION%%/octave/kpse.cc
-include/octave-%%OCTAVE_VERSION%%/octave/lex.h
-include/octave-%%OCTAVE_VERSION%%/octave/lo-error.h
-include/octave-%%OCTAVE_VERSION%%/octave/lo-ieee.h
-include/octave-%%OCTAVE_VERSION%%/octave/lo-mappers.h
-include/octave-%%OCTAVE_VERSION%%/octave/lo-math.h
-include/octave-%%OCTAVE_VERSION%%/octave/lo-specfun.h
-include/octave-%%OCTAVE_VERSION%%/octave/lo-sysdep.h
-include/octave-%%OCTAVE_VERSION%%/octave/lo-utils.h
-include/octave-%%OCTAVE_VERSION%%/octave/load-path.h
-include/octave-%%OCTAVE_VERSION%%/octave/load-save.h
-include/octave-%%OCTAVE_VERSION%%/octave/ls-hdf5.h
-include/octave-%%OCTAVE_VERSION%%/octave/ls-mat-ascii.h
-include/octave-%%OCTAVE_VERSION%%/octave/ls-mat4.h
-include/octave-%%OCTAVE_VERSION%%/octave/ls-mat5.h
-include/octave-%%OCTAVE_VERSION%%/octave/ls-oct-ascii.h
-include/octave-%%OCTAVE_VERSION%%/octave/ls-oct-binary.h
-include/octave-%%OCTAVE_VERSION%%/octave/ls-utils.h
-include/octave-%%OCTAVE_VERSION%%/octave/mach-info.h
-include/octave-%%OCTAVE_VERSION%%/octave/md5.h
-include/octave-%%OCTAVE_VERSION%%/octave/mex.h
-include/octave-%%OCTAVE_VERSION%%/octave/mexproto.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-base.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cdm-cm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cdm-cs.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cdm-dm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cdm-m.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cdm-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cm-cdm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cm-dm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cm-m.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cm-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cnda-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cnda-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cs-cdm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cs-dm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cs-m.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-cs-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-defs.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-dm-cdm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-dm-cm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-dm-cs.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-dm-m.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-dm-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ext.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-i32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-i64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-i8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-ui16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-ui32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-ui64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-ui8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i16nda-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-i16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-i64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-i8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-ui16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-ui32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-ui64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-ui8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i32nda-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-i16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-i32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-i8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-ui16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-ui32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-ui64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-ui8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i64nda-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-i16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-i32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-i64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-ui16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-ui32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-ui64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-ui8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-i8nda-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-inlines.cc
-include/octave-%%OCTAVE_VERSION%%/octave/mx-m-cdm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-m-cm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-m-cs.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-m-dm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-cnda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-cs.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-i16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-i32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-i64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-i8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-ui16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-ui32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-ui64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-ui8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-nda-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-op-defs.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ops.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-cdm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-cm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-cnda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-dm.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-s-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-i16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-i32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-i64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-i8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-ui32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-ui64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-ui8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui16nda-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-i16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-i32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-i64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-i8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-ui16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-ui64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-ui8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui32nda-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-i16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-i32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-i64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-i8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-ui16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-ui32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-ui8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui64nda-ui8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-i16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-i16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-i32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-i32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-i64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-i64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-i8.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-i8nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui16.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui16nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui32.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui32nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui64.h
-include/octave-%%OCTAVE_VERSION%%/octave/mx-ui8nda-ui64nda.h
-include/octave-%%OCTAVE_VERSION%%/octave/mxarray.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-alloc.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-cmplx.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-conf.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-dlldefs.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-env.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-errno.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-fftw.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-fstrm.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-getopt.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-gperf.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-group.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-hist.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-inttypes.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-iostrm.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-lvalue.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-map.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-md5.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-obj.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-passwd.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-prcstrm.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-procbuf.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-rand.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-rl-edit.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-rl-hist.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-shlib.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-sort.cc
-include/octave-%%OCTAVE_VERSION%%/octave/oct-sort.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-sparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-spparms.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-stdstrm.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-stream.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-strstrm.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-syscalls.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-time.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-types.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct-uname.h
-include/octave-%%OCTAVE_VERSION%%/octave/oct.h
-include/octave-%%OCTAVE_VERSION%%/octave/octave.h
-include/octave-%%OCTAVE_VERSION%%/octave/ops.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-int.cc
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-int.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-mat.cc
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-mat.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-scalar.cc
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-scalar.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base-sparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-base.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-bool-mat.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-bool-sparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-bool.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-builtin.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-cell.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-ch-mat.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-colon.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-complex.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-cs-list.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-cx-mat.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-cx-sparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-dld-fcn.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-fcn-handle.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-fcn-inline.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-fcn.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-int-traits.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-int16.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-int32.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-int64.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-int8.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-intx.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-list.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-mapper.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-mex-fcn.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-range.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-re-mat.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-re-sparse.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-scalar.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-str-mat.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-streamoff.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-struct.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-type-conv.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-typeinfo.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-uint16.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-uint32.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-uint64.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-uint8.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov-usr-fcn.h
-include/octave-%%OCTAVE_VERSION%%/octave/ov.h
-include/octave-%%OCTAVE_VERSION%%/octave/pager.h
-include/octave-%%OCTAVE_VERSION%%/octave/parse.h
-include/octave-%%OCTAVE_VERSION%%/octave/pathlen.h
-include/octave-%%OCTAVE_VERSION%%/octave/pathsearch.h
-include/octave-%%OCTAVE_VERSION%%/octave/pr-output.h
-include/octave-%%OCTAVE_VERSION%%/octave/procstream.h
-include/octave-%%OCTAVE_VERSION%%/octave/prog-args.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-all.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-arg-list.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-assign.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-binop.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-bp.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-cell.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-check.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-cmd.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-colon.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-const.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-decl.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-except.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-exp.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-fcn-handle.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-id.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-idx.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-jump.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-loop.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-mat.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-misc.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-pr-code.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-select.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-stmt.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-unop.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt-walk.h
-include/octave-%%OCTAVE_VERSION%%/octave/pt.h
-include/octave-%%OCTAVE_VERSION%%/octave/quit.h
-include/octave-%%OCTAVE_VERSION%%/octave/randgamma.h
-include/octave-%%OCTAVE_VERSION%%/octave/randmtzig.h
-include/octave-%%OCTAVE_VERSION%%/octave/randpoisson.h
-include/octave-%%OCTAVE_VERSION%%/octave/sighandlers.h
-include/octave-%%OCTAVE_VERSION%%/octave/siglist.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-bm-sbm.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-cm-scm.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-cm-sm.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-cs-sm.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-m-scm.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-m-sm.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-s-scm.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-sbm-bm.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-scm-cm.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-scm-m.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-scm-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-scm-sm.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-cm.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-cs.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-m.h
-include/octave-%%OCTAVE_VERSION%%/octave/smx-sm-scm.h
-include/octave-%%OCTAVE_VERSION%%/octave/so-array.h
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-chol.cc
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-chol.h
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-lu.cc
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-base-lu.h
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-dmsolve.cc
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-sort.h
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-util.h
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-xdiv.h
-include/octave-%%OCTAVE_VERSION%%/octave/sparse-xpow.h
-include/octave-%%OCTAVE_VERSION%%/octave/statdefs.h
-include/octave-%%OCTAVE_VERSION%%/octave/str-vec.h
-include/octave-%%OCTAVE_VERSION%%/octave/sun-utils.h
-include/octave-%%OCTAVE_VERSION%%/octave/symtab.h
-include/octave-%%OCTAVE_VERSION%%/octave/sysdep.h
-include/octave-%%OCTAVE_VERSION%%/octave/sysdir.h
-include/octave-%%OCTAVE_VERSION%%/octave/systime.h
-include/octave-%%OCTAVE_VERSION%%/octave/syswait.h
-include/octave-%%OCTAVE_VERSION%%/octave/token.h
-include/octave-%%OCTAVE_VERSION%%/octave/toplev.h
-include/octave-%%OCTAVE_VERSION%%/octave/uint16NDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/uint32NDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/uint64NDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/uint8NDArray.h
-include/octave-%%OCTAVE_VERSION%%/octave/unwind-prot.h
-include/octave-%%OCTAVE_VERSION%%/octave/utils.h
-include/octave-%%OCTAVE_VERSION%%/octave/variables.h
-include/octave-%%OCTAVE_VERSION%%/octave/version.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-ccv-cv.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-ccv-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-crv-rv.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-crv-s.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-cs-cv.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-cs-rv.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-cv-ccv.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-cv-cs.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-rv-crv.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-rv-cs.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-s-ccv.h
-include/octave-%%OCTAVE_VERSION%%/octave/vx-s-crv.h
-include/octave-%%OCTAVE_VERSION%%/octave/xdiv.h
-include/octave-%%OCTAVE_VERSION%%/octave/xpow.h
-include/octave-%%OCTAVE_VERSION%%/octave/zfstream.h
-lib/octave-%%OCTAVE_VERSION%%/libcruft.so
-lib/octave-%%OCTAVE_VERSION%%/libcruft.so.%%OCTAVE_VERSION%%
-lib/octave-%%OCTAVE_VERSION%%/liboctave.so
-lib/octave-%%OCTAVE_VERSION%%/liboctave.so.%%OCTAVE_VERSION%%
-lib/octave-%%OCTAVE_VERSION%%/liboctinterp.so
-lib/octave-%%OCTAVE_VERSION%%/liboctinterp.so.%%OCTAVE_VERSION%%
-libexec/octave/%%OCTAVE_VERSION%%/exec/%%GNU_HOST%%/info-emacs-info
-libexec/octave/%%OCTAVE_VERSION%%/exec/%%GNU_HOST%%/info-emacs-octave-help
-libexec/octave/%%OCTAVE_VERSION%%/exec/%%GNU_HOST%%/octave-%%OCTAVE_VERSION%%
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/PKG_ADD
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__contourc__.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__delaunayn__.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__dsearchn__.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__glpk__.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__gnuplot_raw__.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__lin_interpn__.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__pchip_deriv__.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__qp__.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/__voronoi__.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/balance.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/besselj.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/betainc.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/bsxfun.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/ccolamd.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/cellfun.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/chol.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/colamd.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/colloc.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/conv2.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/convhulln.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/daspk.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/dasrt.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/dassl.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/det.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/dispatch.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/eig.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/expm.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fft.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fft2.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fftn.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fftw.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/filter.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/find.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/fsolve.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/gammainc.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/gcd.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/getgrent.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/getpwent.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/getrusage.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/givens.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/hess.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/inv.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/kron.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/lsode.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/lu.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/luinc.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/matrix_type.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/max.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/md5sum.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/pinv.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/qr.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/quad.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/qz.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/rand.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/regexp.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/schur.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/sort.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/sparse.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spchol.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spdet.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spfind.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spkron.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/splu.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spparms.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/spqr.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/sqrtm.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/svd.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/syl.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/symrcm.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/time.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/tsearch.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/typecast.oct
-libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%/urlwrite.oct
-libexec/octave/ls-R
share/applications/www.octave.org-octave.desktop
-share/octave/%%OCTAVE_VERSION%%/NEWS
-share/octave/%%OCTAVE_VERSION%%/imagelib/default.img
-share/octave/%%OCTAVE_VERSION%%/imagelib/octave-sombrero.png
-share/octave/%%OCTAVE_VERSION%%/m/audio/lin2mu.m
-share/octave/%%OCTAVE_VERSION%%/m/audio/loadaudio.m
-share/octave/%%OCTAVE_VERSION%%/m/audio/mu2lin.m
-share/octave/%%OCTAVE_VERSION%%/m/audio/playaudio.m
-share/octave/%%OCTAVE_VERSION%%/m/audio/record.m
-share/octave/%%OCTAVE_VERSION%%/m/audio/saveaudio.m
-share/octave/%%OCTAVE_VERSION%%/m/audio/setaudio.m
-share/octave/%%OCTAVE_VERSION%%/m/audio/wavread.m
-share/octave/%%OCTAVE_VERSION%%/m/audio/wavwrite.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/DEMOcontrol.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/__bodquist__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/__freqresp__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/__stepimp__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/analdemo.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/are.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/bddemo.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/bode.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/bode_bounds.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/controldemo.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/ctrb.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/damp.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/dare.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/dcgain.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/dgram.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/dkalman.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/dlqe.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/dlqr.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/dlyap.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/dre.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/frdemo.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/freqchkw.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/gram.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/impulse.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/lqe.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/lqg.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/lqr.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/lsim.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/ltifr.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/lyap.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/nichols.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/nyquist.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/obsv.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/place.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/pzmap.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/rldemo.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/rlocus.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/step.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/tzero.m
-share/octave/%%OCTAVE_VERSION%%/m/control/base/tzero2.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/dgkfdemo.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/dhinfdemo.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/h2norm.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/h2syn.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinf_ctr.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinfdemo.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinfnorm.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinfsyn.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinfsyn_chk.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/hinfsyn_ric.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/is_dgkf.m
-share/octave/%%OCTAVE_VERSION%%/m/control/hinf/wgt1o.m
-share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/dezero.m
-share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/dlqg.m
-share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/minfo.m
-share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/packsys.m
-share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/qzval.m
-share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/rotg.m
-share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/series.m
-share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/swapcols.m
-share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/swaprows.m
-share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/syschnames.m
-share/octave/%%OCTAVE_VERSION%%/m/control/obsolete/unpacksys.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/__abcddims__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/__syschnamesl__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/__sysconcat__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/__syscont_disc__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/__sysdefioname__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/__sysdefstname__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/__sysgroupn__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/__tf2sysl__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/__tfl__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/__zp2ssg2__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/abcddim.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/buildssic.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/c2d.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/cellidx.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/d2c.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/dmr2d.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/fir2sys.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/is_abcd.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/is_controllable.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/is_detectable.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/is_digital.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/is_observable.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/is_sample.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/is_signal_list.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/is_siso.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/is_stabilizable.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/is_stable.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/jet707.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/listidx.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/moddemo.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/ord2.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/packedform.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/parallel.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/ss.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/ss2sys.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/ss2tf.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/ss2zp.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/starp.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sys2fir.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sys2ss.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sys2tf.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sys2zp.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysadd.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysappend.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/syschtsam.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysconnect.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/syscont.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysdimensions.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysdisc.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysdup.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysgetsignals.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysgettsam.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysgettype.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysgroup.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysidx.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysmin.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysmult.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysout.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysprune.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysreorder.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysrepdemo.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysscale.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/syssetsignals.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/syssub.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/sysupdate.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/tf.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/tf2ss.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/tf2sys.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/tf2zp.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/tfout.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/ugain.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/zp.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/zp2ss.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/zp2sys.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/zp2tf.m
-share/octave/%%OCTAVE_VERSION%%/m/control/system/zpout.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/__outlist__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/__zgpbal__.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/axis2dlim.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/prompt.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/run_cmd.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/sortcom.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/strappend.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/swap.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/zgfmul.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/zgfslv.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/zginit.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/zgreduce.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/zgrownorm.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/zgscal.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/zgsgiv.m
-share/octave/%%OCTAVE_VERSION%%/m/control/util/zgshsr.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/beta_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/beta_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/beta_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/beta_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/binomial_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/binomial_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/binomial_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/binomial_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/chisquare_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/chisquare_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/chisquare_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/chisquare_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/clearplot.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/clg.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/com2str.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/exponential_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/exponential_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/exponential_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/exponential_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/f_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/f_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/f_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/f_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/gamma_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/gamma_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/gamma_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/gamma_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/geometric_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/geometric_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/geometric_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/geometric_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/hypergeometric_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/hypergeometric_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/hypergeometric_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/hypergeometric_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/intersection.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_bool.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_complex.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_list.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_matrix.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_scalar.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_square.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_stream.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_struct.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_symmetric.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/is_vector.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/isstr.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/lognormal_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/lognormal_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/lognormal_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/lognormal_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/meshdom.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/normal_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/normal_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/normal_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/normal_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/pascal_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/pascal_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/pascal_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/pascal_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/poisson_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/poisson_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/poisson_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/poisson_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/polyinteg.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/setstr.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/struct_contains.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/struct_elements.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/t_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/t_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/t_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/t_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/uniform_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/uniform_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/uniform_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/uniform_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibcdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibinv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibpdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibrnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibull_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibull_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibull_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/weibull_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/deprecated/wiener_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/acosd.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/acot.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/acotd.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/acoth.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/acsc.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/acscd.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/acsch.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/asec.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/asecd.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/asech.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/asind.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/atand.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/cosd.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/cot.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/cotd.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/coth.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/csc.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/cscd.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/csch.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/lcm.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/sec.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/secd.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/sech.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/sind.m
-share/octave/%%OCTAVE_VERSION%%/m/elfun/tand.m
-share/octave/%%OCTAVE_VERSION%%/m/finance/fv.m
-share/octave/%%OCTAVE_VERSION%%/m/finance/fvl.m
-share/octave/%%OCTAVE_VERSION%%/m/finance/irr.m
-share/octave/%%OCTAVE_VERSION%%/m/finance/nper.m
-share/octave/%%OCTAVE_VERSION%%/m/finance/npv.m
-share/octave/%%OCTAVE_VERSION%%/m/finance/pmt.m
-share/octave/%%OCTAVE_VERSION%%/m/finance/pv.m
-share/octave/%%OCTAVE_VERSION%%/m/finance/pvl.m
-share/octave/%%OCTAVE_VERSION%%/m/finance/rate.m
-share/octave/%%OCTAVE_VERSION%%/m/finance/vol.m
-share/octave/%%OCTAVE_VERSION%%/m/general/__isequal__.m
-share/octave/%%OCTAVE_VERSION%%/m/general/__splinen__.m
-share/octave/%%OCTAVE_VERSION%%/m/general/accumarray.m
-share/octave/%%OCTAVE_VERSION%%/m/general/arrayfun.m
-share/octave/%%OCTAVE_VERSION%%/m/general/bicubic.m
-share/octave/%%OCTAVE_VERSION%%/m/general/bitcmp.m
-share/octave/%%OCTAVE_VERSION%%/m/general/bitget.m
-share/octave/%%OCTAVE_VERSION%%/m/general/bitset.m
-share/octave/%%OCTAVE_VERSION%%/m/general/blkdiag.m
-share/octave/%%OCTAVE_VERSION%%/m/general/cart2pol.m
-share/octave/%%OCTAVE_VERSION%%/m/general/cart2sph.m
-share/octave/%%OCTAVE_VERSION%%/m/general/cell2mat.m
-share/octave/%%OCTAVE_VERSION%%/m/general/celldisp.m
-share/octave/%%OCTAVE_VERSION%%/m/general/circshift.m
-share/octave/%%OCTAVE_VERSION%%/m/general/common_size.m
-share/octave/%%OCTAVE_VERSION%%/m/general/cplxpair.m
-share/octave/%%OCTAVE_VERSION%%/m/general/cumtrapz.m
-share/octave/%%OCTAVE_VERSION%%/m/general/deal.m
-share/octave/%%OCTAVE_VERSION%%/m/general/del2.m
-share/octave/%%OCTAVE_VERSION%%/m/general/diff.m
-share/octave/%%OCTAVE_VERSION%%/m/general/flipdim.m
-share/octave/%%OCTAVE_VERSION%%/m/general/fliplr.m
-share/octave/%%OCTAVE_VERSION%%/m/general/flipud.m
-share/octave/%%OCTAVE_VERSION%%/m/general/gradient.m
-share/octave/%%OCTAVE_VERSION%%/m/general/ind2sub.m
-share/octave/%%OCTAVE_VERSION%%/m/general/int2str.m
-share/octave/%%OCTAVE_VERSION%%/m/general/interp1.m
-share/octave/%%OCTAVE_VERSION%%/m/general/interp2.m
-share/octave/%%OCTAVE_VERSION%%/m/general/interp3.m
-share/octave/%%OCTAVE_VERSION%%/m/general/interpft.m
-share/octave/%%OCTAVE_VERSION%%/m/general/interpn.m
-share/octave/%%OCTAVE_VERSION%%/m/general/is_duplicate_entry.m
-share/octave/%%OCTAVE_VERSION%%/m/general/isa.m
-share/octave/%%OCTAVE_VERSION%%/m/general/isdefinite.m
-share/octave/%%OCTAVE_VERSION%%/m/general/isdir.m
-share/octave/%%OCTAVE_VERSION%%/m/general/isequal.m
-share/octave/%%OCTAVE_VERSION%%/m/general/isequalwithequalnans.m
-share/octave/%%OCTAVE_VERSION%%/m/general/isscalar.m
-share/octave/%%OCTAVE_VERSION%%/m/general/issquare.m
-share/octave/%%OCTAVE_VERSION%%/m/general/issymmetric.m
-share/octave/%%OCTAVE_VERSION%%/m/general/isvector.m
-share/octave/%%OCTAVE_VERSION%%/m/general/logical.m
-share/octave/%%OCTAVE_VERSION%%/m/general/logspace.m
-share/octave/%%OCTAVE_VERSION%%/m/general/lookup.m
-share/octave/%%OCTAVE_VERSION%%/m/general/mod.m
-share/octave/%%OCTAVE_VERSION%%/m/general/nargchk.m
-share/octave/%%OCTAVE_VERSION%%/m/general/nextpow2.m
-share/octave/%%OCTAVE_VERSION%%/m/general/nthroot.m
-share/octave/%%OCTAVE_VERSION%%/m/general/num2str.m
-share/octave/%%OCTAVE_VERSION%%/m/general/perror.m
-share/octave/%%OCTAVE_VERSION%%/m/general/pol2cart.m
-share/octave/%%OCTAVE_VERSION%%/m/general/polyarea.m
-share/octave/%%OCTAVE_VERSION%%/m/general/postpad.m
-share/octave/%%OCTAVE_VERSION%%/m/general/prepad.m
-share/octave/%%OCTAVE_VERSION%%/m/general/quadl.m
-share/octave/%%OCTAVE_VERSION%%/m/general/randperm.m
-share/octave/%%OCTAVE_VERSION%%/m/general/rat.m
-share/octave/%%OCTAVE_VERSION%%/m/general/rem.m
-share/octave/%%OCTAVE_VERSION%%/m/general/repmat.m
-share/octave/%%OCTAVE_VERSION%%/m/general/rot90.m
-share/octave/%%OCTAVE_VERSION%%/m/general/rotdim.m
-share/octave/%%OCTAVE_VERSION%%/m/general/runlength.m
-share/octave/%%OCTAVE_VERSION%%/m/general/shift.m
-share/octave/%%OCTAVE_VERSION%%/m/general/shiftdim.m
-share/octave/%%OCTAVE_VERSION%%/m/general/sortrows.m
-share/octave/%%OCTAVE_VERSION%%/m/general/sph2cart.m
-share/octave/%%OCTAVE_VERSION%%/m/general/strerror.m
-share/octave/%%OCTAVE_VERSION%%/m/general/structfun.m
-share/octave/%%OCTAVE_VERSION%%/m/general/sub2ind.m
-share/octave/%%OCTAVE_VERSION%%/m/general/trapz.m
-share/octave/%%OCTAVE_VERSION%%/m/general/tril.m
-share/octave/%%OCTAVE_VERSION%%/m/general/triu.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/convhull.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/delaunay.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/delaunay3.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/delaunayn.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/dsearch.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/dsearchn.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/griddata.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/griddata3.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/griddatan.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/inpolygon.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/trimesh.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/triplot.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/tsearchn.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/voronoi.m
-share/octave/%%OCTAVE_VERSION%%/m/geometry/voronoin.m
-share/octave/%%OCTAVE_VERSION%%/m/image/PKG_ADD
-share/octave/%%OCTAVE_VERSION%%/m/image/__img__.m
-share/octave/%%OCTAVE_VERSION%%/m/image/__img_via_file__.m
-share/octave/%%OCTAVE_VERSION%%/m/image/autumn.m
-share/octave/%%OCTAVE_VERSION%%/m/image/bone.m
-share/octave/%%OCTAVE_VERSION%%/m/image/brighten.m
-share/octave/%%OCTAVE_VERSION%%/m/image/colormap.m
-share/octave/%%OCTAVE_VERSION%%/m/image/cool.m
-share/octave/%%OCTAVE_VERSION%%/m/image/copper.m
-share/octave/%%OCTAVE_VERSION%%/m/image/flag.m
-share/octave/%%OCTAVE_VERSION%%/m/image/gmap40.m
-share/octave/%%OCTAVE_VERSION%%/m/image/gray.m
-share/octave/%%OCTAVE_VERSION%%/m/image/gray2ind.m
-share/octave/%%OCTAVE_VERSION%%/m/image/hot.m
-share/octave/%%OCTAVE_VERSION%%/m/image/hsv.m
-share/octave/%%OCTAVE_VERSION%%/m/image/hsv2rgb.m
-share/octave/%%OCTAVE_VERSION%%/m/image/image.m
-share/octave/%%OCTAVE_VERSION%%/m/image/image_viewer.m
-share/octave/%%OCTAVE_VERSION%%/m/image/imagesc.m
-share/octave/%%OCTAVE_VERSION%%/m/image/imshow.m
-share/octave/%%OCTAVE_VERSION%%/m/image/ind2gray.m
-share/octave/%%OCTAVE_VERSION%%/m/image/ind2rgb.m
-share/octave/%%OCTAVE_VERSION%%/m/image/jet.m
-share/octave/%%OCTAVE_VERSION%%/m/image/loadimage.m
-share/octave/%%OCTAVE_VERSION%%/m/image/ntsc2rgb.m
-share/octave/%%OCTAVE_VERSION%%/m/image/ocean.m
-share/octave/%%OCTAVE_VERSION%%/m/image/pink.m
-share/octave/%%OCTAVE_VERSION%%/m/image/prism.m
-share/octave/%%OCTAVE_VERSION%%/m/image/rainbow.m
-share/octave/%%OCTAVE_VERSION%%/m/image/rgb2hsv.m
-share/octave/%%OCTAVE_VERSION%%/m/image/rgb2ind.m
-share/octave/%%OCTAVE_VERSION%%/m/image/rgb2ntsc.m
-share/octave/%%OCTAVE_VERSION%%/m/image/saveimage.m
-share/octave/%%OCTAVE_VERSION%%/m/image/spring.m
-share/octave/%%OCTAVE_VERSION%%/m/image/summer.m
-share/octave/%%OCTAVE_VERSION%%/m/image/white.m
-share/octave/%%OCTAVE_VERSION%%/m/image/winter.m
-share/octave/%%OCTAVE_VERSION%%/m/io/beep.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/__norm__.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/commutation_matrix.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/cond.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/condest.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/cross.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/dmult.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/dot.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/duplication_matrix.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/housh.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/krylov.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/krylovb.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/logm.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/null.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/onenormest.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/orth.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/qzhess.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/rank.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/rref.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/trace.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/vec.m
-share/octave/%%OCTAVE_VERSION%%/m/linear-algebra/vech.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/PKG_ADD
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ans.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/bincoeff.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/bug_report.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/bunzip2.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/cast.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/comma.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/compare_versions.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/computer.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/copyfile.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/delete.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/dir.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/doc.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/dos.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/dump_prefs.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/edit.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/fileattrib.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/fileparts.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/flops.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/fullfile.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/getfield.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/gunzip.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/gzip.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/inputname.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ismac.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ispc.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/isunix.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/license.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/list_primes.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ls.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ls_command.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/menu.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/mex.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/mexext.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/mkoctfile.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/movefile.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/news.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/orderfields.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/pack.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/paren.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/parseparams.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/run.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/semicolon.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/setfield.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/single.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/substruct.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/swapbytes.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/tar.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/tempdir.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/tempname.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/texas_lotto.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/unix.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/unpack.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/untar.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/unzip.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/ver.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/version.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/warning_ids.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/what.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/xor.m
-share/octave/%%OCTAVE_VERSION%%/m/miscellaneous/zip.m
-share/octave/%%OCTAVE_VERSION%%/m/optimization/__fsolve_defopts__.m
-share/octave/%%OCTAVE_VERSION%%/m/optimization/glpk.m
-share/octave/%%OCTAVE_VERSION%%/m/optimization/glpkmex.m
-share/octave/%%OCTAVE_VERSION%%/m/optimization/optimset.m
-share/octave/%%OCTAVE_VERSION%%/m/optimization/qp.m
-share/octave/%%OCTAVE_VERSION%%/m/optimization/sqp.m
-share/octave/%%OCTAVE_VERSION%%/m/path/savepath.m
-share/octave/%%OCTAVE_VERSION%%/m/pkg/PKG_ADD
-share/octave/%%OCTAVE_VERSION%%/m/pkg/pkg.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/PKG_ADD
-share/octave/%%OCTAVE_VERSION%%/m/plot/__area__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__axes_limits__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__axis_label__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__bar__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__bars__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__contour__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__default_plot_options__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__errcomm__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__errplot__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__gnuplot_version__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__go_close_all__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__go_draw_axes__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__go_draw_figure__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__line__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__next_line_color__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__patch__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plr1__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plr2__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plt1__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2mm__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2mv__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2ss__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2sv__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2vm__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2vs__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plt2vv__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plt__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__plt_get_axis_arg__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__pltopt1__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__pltopt__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__quiver__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__scatter__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/__stem__.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/ancestor.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/area.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/axes.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/axis.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/bar.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/barh.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/box.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/caxis.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/clf.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/close.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/closereq.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/colorbar.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/compass.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/contour.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/contour3.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/contourc.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/contourf.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/cylinder.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/drawnow.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/ellipsoid.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/errorbar.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/feather.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/figure.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/fill.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/findobj.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/fplot.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/gca.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/gcf.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/grid.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/hidden.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/hist.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/hold.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/isfigure.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/ishold.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/legend.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/line.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/loglog.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/loglogerr.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/mesh.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/meshc.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/meshgrid.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/meshz.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/ndgrid.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/newplot.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/orient.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/pareto.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/patch.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/pcolor.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/peaks.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/pie.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/plot.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/plot3.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/plotyy.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/polar.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/print.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/quiver.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/quiver3.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/replot.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/ribbon.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/rose.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/scatter.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/scatter3.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/semilogx.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/semilogxerr.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/semilogy.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/semilogyerr.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/shading.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/shg.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/slice.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/sombrero.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/sphere.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/spinmap.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/stairs.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/stem.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/stem3.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/subplot.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/surf.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/surface.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/surfc.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/surfnorm.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/text.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/title.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/view.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/xlabel.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/xlim.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/ylabel.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/ylim.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/zlabel.m
-share/octave/%%OCTAVE_VERSION%%/m/plot/zlim.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/compan.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/conv.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/deconv.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/mkpp.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/mpoles.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/pchip.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/poly.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyder.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyderiv.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyfit.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/polygcd.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyint.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyout.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyreduce.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyval.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/polyvalm.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/ppval.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/residue.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/roots.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/spline.m
-share/octave/%%OCTAVE_VERSION%%/m/polynomial/unmkpp.m
-share/octave/%%OCTAVE_VERSION%%/m/quaternion/demoquat.m
-share/octave/%%OCTAVE_VERSION%%/m/quaternion/qconj.m
-share/octave/%%OCTAVE_VERSION%%/m/quaternion/qcoordinate_plot.m
-share/octave/%%OCTAVE_VERSION%%/m/quaternion/qderiv.m
-share/octave/%%OCTAVE_VERSION%%/m/quaternion/qderivmat.m
-share/octave/%%OCTAVE_VERSION%%/m/quaternion/qinv.m
-share/octave/%%OCTAVE_VERSION%%/m/quaternion/qmult.m
-share/octave/%%OCTAVE_VERSION%%/m/quaternion/qtrans.m
-share/octave/%%OCTAVE_VERSION%%/m/quaternion/qtransv.m
-share/octave/%%OCTAVE_VERSION%%/m/quaternion/qtransvmat.m
-share/octave/%%OCTAVE_VERSION%%/m/quaternion/quaternion.m
-share/octave/%%OCTAVE_VERSION%%/m/set/complement.m
-share/octave/%%OCTAVE_VERSION%%/m/set/create_set.m
-share/octave/%%OCTAVE_VERSION%%/m/set/intersect.m
-share/octave/%%OCTAVE_VERSION%%/m/set/ismember.m
-share/octave/%%OCTAVE_VERSION%%/m/set/setdiff.m
-share/octave/%%OCTAVE_VERSION%%/m/set/setxor.m
-share/octave/%%OCTAVE_VERSION%%/m/set/union.m
-share/octave/%%OCTAVE_VERSION%%/m/set/unique.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/arch_fit.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/arch_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/arch_test.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/arma_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/autocor.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/autocov.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/autoreg_matrix.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/bartlett.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/blackman.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/detrend.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/diffpara.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/durbinlevinson.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/fftconv.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/fftfilt.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/fftshift.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/filter2.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/fractdiff.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/freqz.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/freqz_plot.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/hamming.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/hanning.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/hurst.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/ifftshift.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/periodogram.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/rectangle_lw.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/rectangle_sw.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/sinc.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/sinetone.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/sinewave.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/spectral_adf.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/spectral_xdf.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/spencer.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/stft.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/synthesis.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/triangle_lw.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/triangle_sw.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/unwrap.m
-share/octave/%%OCTAVE_VERSION%%/m/signal/yulewalker.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/colperm.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/etreeplot.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/gplot.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/nonzeros.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/normest.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/pcg.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/pcr.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/spalloc.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/spconvert.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/spdiags.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/speye.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/spfun.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/sphcat.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/spones.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/sprand.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/sprandn.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/sprandsym.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/spstats.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/spvcat.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/spy.m
-share/octave/%%OCTAVE_VERSION%%/m/sparse/treeplot.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/bessel.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/beta.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/betai.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/betaln.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/erfinv.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/factor.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/factorial.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/gammai.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/isprime.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/legendre.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/log2.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/nchoosek.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/perms.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/pow2.m
-share/octave/%%OCTAVE_VERSION%%/m/specfun/primes.m
-share/octave/%%OCTAVE_VERSION%%/m/special-matrix/hadamard.m
-share/octave/%%OCTAVE_VERSION%%/m/special-matrix/hankel.m
-share/octave/%%OCTAVE_VERSION%%/m/special-matrix/hilb.m
-share/octave/%%OCTAVE_VERSION%%/m/special-matrix/invhilb.m
-share/octave/%%OCTAVE_VERSION%%/m/special-matrix/magic.m
-share/octave/%%OCTAVE_VERSION%%/m/special-matrix/pascal.m
-share/octave/%%OCTAVE_VERSION%%/m/special-matrix/rosser.m
-share/octave/%%OCTAVE_VERSION%%/m/special-matrix/sylvester_matrix.m
-share/octave/%%OCTAVE_VERSION%%/m/special-matrix/toeplitz.m
-share/octave/%%OCTAVE_VERSION%%/m/special-matrix/vander.m
-share/octave/%%OCTAVE_VERSION%%/m/special-matrix/wilkinson.m
-share/octave/%%OCTAVE_VERSION%%/m/startup/inputrc
-share/octave/%%OCTAVE_VERSION%%/m/startup/octaverc
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/center.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/cloglog.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/cor.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/corrcoef.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/cov.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/cut.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/gls.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/iqr.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/kendall.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/kurtosis.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/logit.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/mahalanobis.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/mean.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/meansq.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/median.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/mode.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/moment.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/ols.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/ppplot.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/probit.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/qqplot.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/range.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/ranks.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/run_count.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/skewness.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/spearman.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/statistics.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/std.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/studentize.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/table.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/values.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/base/var.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/betacdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/betainv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/betapdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/betarnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/binocdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/binoinv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/binopdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/binornd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/cauchy_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/chi2cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/chi2inv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/chi2pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/chi2rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/discrete_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/empirical_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/expcdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/expinv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/exppdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/exprnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/fcdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/finv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/fpdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/frnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/gamcdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/gaminv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/gampdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/gamrnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/geocdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/geoinv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/geopdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/geornd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/hygecdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/hygeinv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/hygepdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/hygernd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/kolmogorov_smirnov_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/laplace_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logistic_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logncdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/logninv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/lognpdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/lognrnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/nbincdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/nbininv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/nbinpdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/nbinrnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/normcdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/norminv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/normpdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/normrnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/poisscdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/poissinv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/poisspdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/poissrnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_cdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_inv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_pdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/stdnormal_rnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/tcdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/tinv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/tpdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/trnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unidcdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unidinv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unidpdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unidrnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unifcdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unifinv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unifpdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/unifrnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/wblcdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/wblinv.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/wblpdf.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/wblrnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions/wienrnd.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/models/logistic_regression.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/models/logistic_regression_derivatives.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/models/logistic_regression_likelihood.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/anova.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/bartlett_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/chisquare_test_homogeneity.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/chisquare_test_independence.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/cor_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/f_test_regression.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/hotelling_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/hotelling_test_2.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/kolmogorov_smirnov_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/kolmogorov_smirnov_test_2.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/kruskal_wallis_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/manova.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/mcnemar_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/prop_test_2.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/run_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/sign_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/t_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/t_test_2.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/t_test_regression.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/u_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/var_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/welch_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/wilcoxon_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/z_test.m
-share/octave/%%OCTAVE_VERSION%%/m/statistics/tests/z_test_2.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/base2dec.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/bin2dec.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/blanks.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/deblank.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/dec2base.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/dec2bin.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/dec2hex.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/findstr.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/hex2dec.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/index.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/isletter.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/lower.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/mat2str.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/rindex.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/split.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/str2double.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/str2mat.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/str2num.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/strcat.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/strcmpi.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/strfind.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/strjust.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/strmatch.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/strncmpi.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/strrep.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/strtok.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/strtrim.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/strtrunc.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/strvcat.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/substr.m
-share/octave/%%OCTAVE_VERSION%%/m/strings/upper.m
-share/octave/%%OCTAVE_VERSION%%/m/testfun/PKG_ADD
-share/octave/%%OCTAVE_VERSION%%/m/testfun/assert.m
-share/octave/%%OCTAVE_VERSION%%/m/testfun/demo.m
-share/octave/%%OCTAVE_VERSION%%/m/testfun/example.m
-share/octave/%%OCTAVE_VERSION%%/m/testfun/fail.m
-share/octave/%%OCTAVE_VERSION%%/m/testfun/speed.m
-share/octave/%%OCTAVE_VERSION%%/m/testfun/test.m
-share/octave/%%OCTAVE_VERSION%%/m/time/asctime.m
-share/octave/%%OCTAVE_VERSION%%/m/time/calendar.m
-share/octave/%%OCTAVE_VERSION%%/m/time/clock.m
-share/octave/%%OCTAVE_VERSION%%/m/time/ctime.m
-share/octave/%%OCTAVE_VERSION%%/m/time/date.m
-share/octave/%%OCTAVE_VERSION%%/m/time/datenum.m
-share/octave/%%OCTAVE_VERSION%%/m/time/datestr.m
-share/octave/%%OCTAVE_VERSION%%/m/time/datevec.m
-share/octave/%%OCTAVE_VERSION%%/m/time/eomday.m
-share/octave/%%OCTAVE_VERSION%%/m/time/etime.m
-share/octave/%%OCTAVE_VERSION%%/m/time/is_leap_year.m
-share/octave/%%OCTAVE_VERSION%%/m/time/now.m
-share/octave/%%OCTAVE_VERSION%%/m/time/weekday.m
-share/octave/ls-R
-share/octave/site/m/startup/octaverc
-@exec mkdir -p %D/libexec/octave/%%OCTAVE_VERSION%%/site/exec/%%GNU_HOST%% 2>/dev/null || true
-@exec mkdir -p %D/libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%% 2>/dev/null || true
-@exec mkdir -p %D/libexec/octave/api-v32/site/exec/%%GNU_HOST%% 2>/dev/null || true
-@exec mkdir -p %D/libexec/octave/site/exec/%%GNU_HOST%% 2>/dev/null || true
-@exec mkdir -p %D/libexec/octave/site/oct/%%GNU_HOST%% 2>/dev/null || true
-@exec mkdir -p %D/libexec/octave/site/oct/api-v32/%%GNU_HOST%% 2>/dev/null || true
-@exec mkdir -p %D/share/octave/%%OCTAVE_VERSION%%/site/m 2>/dev/null || true
-@exec mkdir -p %D/share/octave/site/api-v32/m 2>/dev/null || true
-@dirrmtry share/applications
-@dirrm share/octave/site/m/startup
-@dirrm share/octave/site/m
-@dirrm share/octave/site/api-v32/m
-@dirrm share/octave/site/api-v32
-@dirrm share/octave/site
-@dirrm share/octave/%%OCTAVE_VERSION%%/site/m
-@dirrm share/octave/%%OCTAVE_VERSION%%/site
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/time
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/testfun
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/strings
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/statistics/tests
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/statistics/models
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/statistics/distributions
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/statistics/base
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/statistics
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/startup
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/special-matrix
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/specfun
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/sparse
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/signal
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/set
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/quaternion
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/polynomial
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/plot
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/pkg
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/path
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/optimization
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/miscellaneous
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/linear-algebra
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/io
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/image
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/geometry
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/general
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/finance
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/elfun
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/deprecated
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/control/util
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/control/system
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/control/obsolete
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/control/hinf
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/control/base
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/control
-@dirrm share/octave/%%OCTAVE_VERSION%%/m/audio
-@dirrm share/octave/%%OCTAVE_VERSION%%/m
-@dirrm share/octave/%%OCTAVE_VERSION%%/imagelib
-@dirrm share/octave/%%OCTAVE_VERSION%%
-@dirrm share/octave
-@dirrm libexec/octave/site/oct/api-v32/%%GNU_HOST%%
-@dirrm libexec/octave/site/oct/api-v32
-@dirrm libexec/octave/site/oct/%%GNU_HOST%%
-@dirrm libexec/octave/site/oct
-@dirrm libexec/octave/site/exec/%%GNU_HOST%%
-@dirrm libexec/octave/site/exec
-@dirrm libexec/octave/site
-@dirrm libexec/octave/api-v32/site/exec/%%GNU_HOST%%
-@dirrm libexec/octave/api-v32/site/exec
-@dirrm libexec/octave/api-v32/site
-@dirrm libexec/octave/api-v32
-@dirrm libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%
-@dirrm libexec/octave/%%OCTAVE_VERSION%%/site/oct
-@dirrm libexec/octave/%%OCTAVE_VERSION%%/site/exec/%%GNU_HOST%%
-@dirrm libexec/octave/%%OCTAVE_VERSION%%/site/exec
-@dirrm libexec/octave/%%OCTAVE_VERSION%%/site
-@dirrm libexec/octave/%%OCTAVE_VERSION%%/oct/%%GNU_HOST%%
-@dirrm libexec/octave/%%OCTAVE_VERSION%%/oct
-@dirrm libexec/octave/%%OCTAVE_VERSION%%/exec/%%GNU_HOST%%
-@dirrm libexec/octave/%%OCTAVE_VERSION%%/exec
-@dirrm libexec/octave/%%OCTAVE_VERSION%%
-@dirrm libexec/octave
-@dirrm lib/octave-%%OCTAVE_VERSION%%
-@dirrm include/octave-%%OCTAVE_VERSION%%/octave
-@dirrm include/octave-%%OCTAVE_VERSION%%
-%%PORTDOCS%%%%DOCSDIR%%/refcard-letter.ps
-%%PORTDOCS%%%%DOCSDIR%%/refcard-legal.ps
-%%PORTDOCS%%%%DOCSDIR%%/refcard-a4.ps
-%%PORTDOCS%%%%DOCSDIR%%/liboctave.ps
%%PORTDOCS%%%%DOCSDIR%%/Octave-FAQ.ps
+%%PORTDOCS%%%%DOCSDIR%%/liboctave.ps
+%%PORTDOCS%%%%DOCSDIR%%/refcard-a4.ps
+%%PORTDOCS%%%%DOCSDIR%%/refcard-legal.ps
+%%PORTDOCS%%%%DOCSDIR%%/refcard-letter.ps
%%PORTDOCS%%@dirrm %%DOCSDIR%%
+@comment octave diggs some empty directories
+@exec mkdir -p %D/share/octave/site/m/startup/octaverc 2>/dev/null || true
+@exec mkdir -p %D/share/octave/site/api-v36/m 2>/dev/null || true
+@exec mkdir -p %D/share/octave/site/api-v36 2>/dev/null || true
+@exec mkdir -p %D/share/octave/%%OCTAVE_VERSION%%/site/m 2>/dev/null || true
+@exec mkdir -p %D/share/octave/%%OCTAVE_VERSION%%/site 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/site/oct/%%GNU_HOST%% 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/site/oct/api-v36/%%GNU_HOST%% 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/site/oct/api-v36 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/site/oct 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/site/exec/%%GNU_HOST%% 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/site/exec 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/site 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/api-v36/site/exec/%%GNU_HOST%% 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/api-v36/site/exec 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/api-v36/site 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/api-v36 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%% 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/%%OCTAVE_VERSION%%/site/oct 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/%%OCTAVE_VERSION%%/site/exec/%%GNU_HOST%% 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/%%OCTAVE_VERSION%%/site/exec 2>/dev/null || true
+@exec mkdir -p %D/libexec/octave/%%OCTAVE_VERSION%%/site 2>/dev/null || true
+@comment Insert PLIST here
+@dirrmtry share/applications