Update to 2004.11.16 version

This commit is contained in:
Maho Nakata 2004-11-22 07:32:08 +00:00
parent 90662bc7cf
commit 399eebbd05
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=122121
10 changed files with 292 additions and 107 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= octave-forge
PORTVERSION= 2004.02.12
PORTVERSION= 2004.11.16
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= octave
@ -14,9 +14,10 @@ MASTER_SITE_SUBDIR= octave
MAINTAINER= maho@FreeBSD.org
COMMENT= Many additional features to math/octave
BUILD_DEPENDS= ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash2 \
${LOCALBASE}/bin/qhull:${PORTSDIR}/math/qhull \
${LOCALBASE}/bin/octave:${PORTSDIR}/math/octave
BUILD_DEPENDS= ${LOCALBASE}/bin/qhull:${PORTSDIR}/math/qhull \
${LOCALBASE}/bin/gcsplit:${PORTSDIR}/sysutil/coreutils
# ${LOCALBASE}/bin/octave:${PORTSDIR}/math/octave \
RUN_DEPENDS= ${LOCALBASE}/bin/octave:${PORTSDIR}/math/octave \
${LOCALBASE}/bin/qhull:${PORTSDIR}/math/qhull

View File

@ -1,2 +1,2 @@
MD5 (octave-forge-2004.02.12.tar.gz) = 2c8a35bc59844c1fd4068a1213a3bc26
SIZE (octave-forge-2004.02.12.tar.gz) = 2740019
MD5 (octave-forge-2004.11.16.tar.gz) = a8e52c27159a110a26ab57c10d3883b0
SIZE (octave-forge-2004.11.16.tar.gz) = 3639093

View File

@ -1,22 +0,0 @@
--- FIXES/sort.cc.orig Wed Sep 1 21:41:41 2004
+++ FIXES/sort.cc Wed Sep 1 21:43:18 2004
@@ -87,8 +87,8 @@
return (a->vec < b->vec);
}
-template octave_sort<unsigned EIGHT_BYTE_INT>;
-template octave_sort<vec_index *>;
+template class octave_sort<unsigned EIGHT_BYTE_INT>;
+template class octave_sort<vec_index *>;
#else
struct vec_index
{
@@ -124,7 +124,7 @@
return (xisnan(b->vec) || (abs(a->vec) < abs(b->vec)));
}
-template octave_sort<complex_vec_index *>;
+template class octave_sort<complex_vec_index *>;
static octave_value_list
vec_sort (RowVector &vec, bool return_idx)

View File

@ -1,11 +0,0 @@
--- configure.orig Thu Feb 12 16:56:56 2004
+++ configure Fri May 7 06:06:47 2004
@@ -2686,7 +2686,7 @@
COPY_FLAGS="-fdp"
case "$canonical_host_type" in
- powerpc-apple-darwin*)
+ powerpc-apple-darwin*|*freebsd*)
COPY_FLAGS="-Rfp"
;;
esac

View File

@ -1,11 +0,0 @@
--- extra/mex/Makefile~ Sat Feb 7 02:05:11 2004
+++ extra/mex/Makefile Fri May 7 04:55:43 2004
@@ -58,7 +58,7 @@
@if test -d $(bindir) ; then \
echo installing mex/mex in $(bindir) ; \
$(RM) $(bindir)/mex ; \
- $(INSTALL_PROGRAM) mex $(bindir)/mex ; \
+ $(INSTALL) mex $(bindir)/mex ; \
fi
clean: ; $(RM) mex mex_* $(MEXLIB) *.o *.oct core octave-core *~

View File

@ -0,0 +1,10 @@
--- main/gsl/replace_template.sh.org Mon Nov 22 11:15:02 2004
+++ main/gsl/replace_template.sh Mon Nov 22 11:15:11 2004
@@ -1,6 +1,6 @@
#!/bin/sh
-csplit -f tmp_gsl $1 /DEFUN/ /GSL_FUNC_DOCSTRING/ /./ > /dev/null
+gcsplit -f tmp_gsl $1 /DEFUN/ /GSL_FUNC_DOCSTRING/ /./ > /dev/null
cat tmp_gsl01 | sed "s/GSL_OCTAVE_NAME/$octave_name/g"
cat docstring.txt | sed 's/\\/\\\\/g' | sed 's/$/\\n\\/g'
cat tmp_gsl03 | sed "s/GSL_OCTAVE_NAME/$octave_name/g" | sed "s/GSL_FUNC_NAME/$funcname/g"

View File

@ -1,22 +0,0 @@
http://www.octave.org/octave-lists/archive/bug-octave.2004/msg00181.html
--- main/comm/galois-def.h.org Wed Apr 2 04:37:14 2003
+++ main/comm/galois-def.h Fri May 7 04:38:27 2004
@@ -306,13 +306,17 @@
return r; \
}
+#define TBM boolMatrix (1, 1, true)
+#define FBM boolMatrix (1, 1, false)
+#define NBM boolMatrix ()
+
#define MM_CMP_OPS1(M1, C1, M2, C2, GR1, GR2, CHECK) \
MM_CMP_OP1(mx_el_lt, <, M1, C1, M2, C2, GR1, GR2, CHECK, NBM, NBM) \
MM_CMP_OP1(mx_el_le, <=, M1, C1, M2, C2, GR1, GR2, CHECK, NBM, NBM) \
MM_CMP_OP1(mx_el_ge, >=, M1, C1, M2, C2, GR1, GR2, CHECK, NBM, NBM) \
MM_CMP_OP1(mx_el_gt, >, M1, C1, M2, C2, GR1, GR2, CHECK, NBM, NBM) \
MM_CMP_OP1(mx_el_eq, ==, M1, , M2, , GR1, GR2, CHECK, FBM, TBM) \
- MM_CMP_OP1(mx_el_ne, !=, M1, , M2, , GR1, GR2, CHECK, TBM, FBM) \
+ MM_CMP_OP1(mx_el_ne, !=, M1, , M2, , GR1, GR2, CHECK, TBM, FBM)
#define MM_BOOL_OP1(F, OP, M1, M2, ZERO, GR1, GR2, CHECKTYPE) \
boolMatrix \

View File

@ -1,9 +0,0 @@
--- main/miscellaneous/dispatch.cc.orig Wed Sep 1 21:50:51 2004
+++ main/miscellaneous/dispatch.cc Wed Sep 1 21:51:19 2004
@@ -330,5 +330,5 @@
#if defined(__GNUG__)
-template std::map<std::string,std::string>;
+template class std::map<std::string,std::string>;
#endif

View File

@ -1,8 +0,0 @@
--- main/sparse/buildtests.sh.org Fri Jan 30 09:28:02 2004
+++ main/sparse/buildtests.sh Fri May 7 04:44:54 2004
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!%%LOCALBASE%%/bin/bash
# ./buildtest.sh preset
# creates sptest.m with preset tests.

View File

@ -20,10 +20,6 @@ libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/_errcore.oc
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/_gfweight.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bchdeco.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bchenco.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bitand.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bitmax.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bitor.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bitxor.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bwfill.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bwlabel.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/chol.oct
@ -37,7 +33,6 @@ libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/ellipj.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/full.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gdet.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gdiag.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/getfield.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gexp.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gf.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gfilter.oct
@ -80,8 +75,6 @@ libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/remez.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/rotate_scale.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/rsdec.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/rsenc.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/setfield.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/sort.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/spabs.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/sparse.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/spfind.oct
@ -89,11 +82,181 @@ libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/spimag.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/spinv.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/splu.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/spreal.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/struct.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/syndtable.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/trisolve.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/waitbar.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/xmlread.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/randp.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/rande.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/display_fixed_operations.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/isfixed.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/ftanh.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/ftan.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fsumsq.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fsum.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fsqrt.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fsinh.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fsin.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fround.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/freshape.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/freal.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fprod.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/flog10.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/flog.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/Chi.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fixed.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fimag.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/ffloor.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fexp.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fdiag.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fcumsum.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fcumprod.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fcosh.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fcos.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fconj.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fceil.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fatan2.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/farg.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fangle.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fabs.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/reset_fixed_operations.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/tsearch.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/delaunayn.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/convhulln.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/__voronoi__.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/zeta.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/transport_5.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/transport_4.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/transport_3.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/transport_2.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/taylorcoeff.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/synchrotron_2.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/synchrotron_1.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/sinc_gsl.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/psi_n.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/psi_1piy.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/psi_1_int.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/psi.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/pochrel.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/poch.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/log_erfc.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/log_1plusx_mx.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/log_1plusx.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/lnsinh.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/lnpoch.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/lngamma_gsl.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/lncosh.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/lnbeta.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/legendre_sphPlm_array.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/legendre_sphPlm.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/legendre_Ql.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/legendre_Plm.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/legendre_Pl.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/lambert_Wm1.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/lambert_W0.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/hzeta.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/hyperg_0F1.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/hazard.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gsl_sf.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gammastar.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gammainv_gsl.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gamma_inc_Q.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gamma_inc_P.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gamma_inc.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/gamma_gsl.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fermi_dirac_mhalf.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fermi_dirac_int.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fermi_dirac_inc_0.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fermi_dirac_half.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/fermi_dirac_3half.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/exprel_n.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/exprel_2.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/exprel.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/expm1.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/expint_Ei.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/expint_E2.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/expint_E1.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/expint_3.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/exp_mult.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/eta_int.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/eta.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/erfc_gsl.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/erf_gsl.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/erf_Z.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/erf_Q.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/ellint_Kcomp.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/ellint_Ecomp.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/debye_4.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/debye_3.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/debye_2.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/debye_1.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/dawson.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/coupling_9j.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/coupling_6j.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/coupling_3j.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/conicalP_mhalf.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/conicalP_half.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/conicalP_1.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/conicalP_0.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/clausen.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/beta_gsl.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_zero_J1.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_zero_J0.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_yl.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_lnKnu.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_kl_scaled.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_jl.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_il_scaled.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_Ynu.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_Yn.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_Knu_scaled.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_Knu.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_Kn_scaled.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_Kn.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_Jnu.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_Jn.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_Inu_scaled.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_Inu.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_In_scaled.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bessel_In.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/atanint.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_zero_Bi_deriv.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_zero_Bi.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_zero_Ai_deriv.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_zero_Ai.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_Bi_scaled.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_Bi_deriv_scaled.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_Bi_deriv.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_Bi.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_Ai_scaled.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_Ai_deriv_scaled.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_Ai_deriv.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/airy_Ai.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/Si.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/Shi.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/Ci.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/zeta_int.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/pngwrite.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/pngread.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/jpgwrite.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/jpgread.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/houghtf.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/graycomatrix.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/dlmread.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/builtin.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/dispatch_help.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/csvexplode.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/csvconcat.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/csv2cell.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/cell2csv.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bfgsmin.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/numhessian.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/numgradient.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/newtonstep.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/finitedifference.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/celleval.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/bisectionstep.oct
libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%GNU_HOST%%/octave-forge/samin.oct
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/grid.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/hankel.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/FIXES/lin2mu.m
@ -118,6 +281,8 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/clip.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/sample.wav
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/sound.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/soundsc.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/wavread.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/audio/wavwrite.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/civil/__nlnewmark_fcn__.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/civil/newmark.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/civil/nlnewmark.m
@ -166,10 +331,32 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/symerr.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/vec2mat.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm/wgn.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/control/feedback.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/bitcmp.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/bitget.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/bitset.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/bitshift.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/average_moments.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/delta_method.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/gmm_estimate.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/gmm_example.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/gmm_obj.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/gmm_results.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/gmm_variance.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/gmm_variance_inefficient.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/mle_estimate.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/mle_example.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/mle_obj.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/mle_results.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/mle_variance.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/parameterize.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/prettyprint.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/prettyprint_c.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/scale_data.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics/unscale_parameters.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/fixed/PKG_ADD
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/fixed/concat.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/fixed/create_lookup_table.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/fixed/fixed.info
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/fixed/fixedpoint.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/fixed/float.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/fixed/fsort.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/fixed/lookup_table.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/blkdiag.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/char.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/complex.m
@ -186,10 +373,12 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/ifftshift.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/interp1.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/interp2.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/interpft.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/isa.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/isequal.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/isunix.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/lookup.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/ndims.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/nthroot.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/polyarea.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/quadl.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/rat.m
@ -212,25 +401,38 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ident/idsim.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ident/mktheta.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ident/poly2th.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/MakeShears.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/applylut.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/autumn.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bestblk.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/blkproc.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bmpwrite.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bone.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/brighten.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bwborder.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bweuler.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bwlabel.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bwmorph.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/bwselect.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/cmpermute.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/cmunique.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/col2im.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/colfilt.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/colorgradient.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/conndef.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/cool.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/copper.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/corr2.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/dilate.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/edge.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/erode.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/fftconv2.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/flag.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/grayslice.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/histeq.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/hot.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/hsv.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/im2bw.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/im2col.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imadjust.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imginfo.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imhist.m
@ -244,19 +446,30 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/imwrite.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/isbw.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/isgray.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/isind.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/isrgb.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/jet.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/makelut.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/mat2gray.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/mean2.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/medfilt2.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/nlfilter.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/ordfilt2.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/padarray.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/pink.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/poly2mask.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/prism.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/qtdecomp.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/qtgetblk.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/qtsetblk.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/rainbow.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/rgb2gray.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/roicolor.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/spring.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/std2.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/stretchlim.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/summer.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/testimio.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/uintlut.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/white.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/image/winter.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/Contents.m
@ -285,10 +498,12 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/quadg.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/quadndg.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/integration/zero_count.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/append_save.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/csvread.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/csvwrite.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/dlmread.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/dlmwrite.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/filesep.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/textread.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io/xlsread.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_act.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_actcore.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_check.m
@ -306,11 +521,17 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa/irsa_rgenreal.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/linear-algebra/funm.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/linear-algebra/rref.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/linear-algebra/thfm.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/mapping/azimuth.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/mapping/deg2rad.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/mapping/distance.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/mapping/rad2deg.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/mex/myfeval.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/OCTAVE_FORGE_VERSION.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/PKG_ADD
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/dispatch.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/edit.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/grep.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/inline.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/inputname.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/inz.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/map.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous/nze.m
@ -330,7 +551,9 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode/rk2fixed.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode/rk4fixed.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode/rk8fixed.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/adsmax.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/battery.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/bfgs.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/bfgsmin_example.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/bs_gradient.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/cdiff.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/d2_min.m
@ -354,6 +577,8 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/nmsmax.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/nrm.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/optimset.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/poly_2_ex.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/polyconf.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/samin_example.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_d2_min_1.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_d2_min_2.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_d2_min_3.m
@ -368,14 +593,14 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_nelder_mead_min_2
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/test_wpolyfit.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/wpolyfit.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/wpolyfitdemo.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim/wsolve.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/path/addpath.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/path/rmpath.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/elements.mat
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/plotpdb.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/elements_struct.mat
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/read_pdb.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/strtoz.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/write_pdb.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/pdb/write_pdb_quick.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/__plt3__.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/clf.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/contourf.m
@ -403,6 +628,7 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/surfc.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/text.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/tics.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/view.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/plot/zoom.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/set/intersect.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/set/ismember.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/set/setdiff.m
@ -439,13 +665,16 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/ellipdemo.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/ellipord.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/filter2.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/filtfilt.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/filtic.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/fir1.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/fir2.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/flattopwin.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/freqs.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/freqs_plot.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/gaussian.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/gausswin.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/grpdelay.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/hann.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/hilbert.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/idct.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/idct2.m
@ -480,9 +709,15 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/signal/zplane.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/PKG_ADD
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/fem_test.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/issparse.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/nonzeros.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/pcg.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/pcr.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/sp_test.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/spdiags.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/speye.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/spfun.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/sphcat.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/spones.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/sprand.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/sprandn.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/sparse/spstats.m
@ -504,6 +739,7 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/perms.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/primes.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/test_ellipj.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/specfun/test_sncndn.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/special-matrix/hadamard.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/special-matrix/lauchli.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/special-matrix/magic.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/special-matrix/pascal.m
@ -513,16 +749,22 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/csape.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/csapi.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/fnder.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/fnplt.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/fnval.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/mkpp.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/pchip.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/ppval.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/spline.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/trisolve.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/splines/unmkpp.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/anderson_darling_cdf.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/anderson_darling_test.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/anovan.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/boxplot.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/ff2n.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/fullfact.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/geomean.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/harmmean.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/histfit.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/mad.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/nanmax.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/nanmean.m
@ -531,8 +773,11 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/nanmin.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/nanstd.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/nansum.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/normplot.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/pareto.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/prctile.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/princomp.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/scatter.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/tabulate.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/trimmean.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/statistics/zscore.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/base64encode.m
@ -540,6 +785,7 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/cellstr.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/mat2str.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/str2double.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strcmpi.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strfind.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strmatch.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strncmp.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strncmpi.m
@ -548,9 +794,11 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strtok.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/strings/strvcat.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/fieldnames.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/getfield.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/getfields.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/isfield.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/rmfield.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/setfield.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/setfields.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/struct.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/tar.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/struct/test_struct.m
@ -573,9 +821,11 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/fail.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/pretty
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/speed.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/testfun/test.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/calendar.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/datenum.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/datestr.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/datevec.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/eomday.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/now.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/time/weekday.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/aar.m
@ -609,6 +859,7 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/invest1.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/invfdemo.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/lattice.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/lpc.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/mvaar.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/mvar.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/mvfilter.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/mvfreqz.m
@ -620,14 +871,13 @@ share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/poly2rc.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/rc2ac.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/rc2ar.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/rc2poly.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/rmle.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/sbispec.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/selmo.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/sinvest1.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/tsademo.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/ucp.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/tsa/y2res.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/best_dir.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/best_dir_cov.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/bound_convex.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/defSpeakBox.wrl
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/defSpeakSphere.wrl
@ -702,6 +952,9 @@ share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/subwi
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/title.m
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/xlabel.m
share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/ylabel.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/best_dir_cov.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/vrml/best_dir.m
share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general/isdir.m
@dirrm share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot
@dirrm share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m
@dirrm share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives
@ -726,6 +979,8 @@ share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/ylabe
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/optim
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/ode
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/miscellaneous
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/mex
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/mapping
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/linear-algebra
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/irsa
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/io
@ -735,6 +990,8 @@ share/octave/%%OCTAVE_VERSION%%/site/octave-forge-alternatives/m/graceplot/ylabe
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/graceplot
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/geometry
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/general
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/fixed
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/econometrics
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/control
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/comm
@dirrm share/octave/%%OCTAVE_VERSION%%/site/m/octave-forge/civil