pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/math/octave-current Changes 2.9.19:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7ea2cb9b7095
branches:  trunk
changeset: 536463:7ea2cb9b7095
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Dec 15 05:54:50 2007 +0000

description:
Changes 2.9.19:
* bug fixes

diffstat:

 math/octave-current/Makefile         |  31 ++++++++---------
 math/octave-current/PLIST            |  62 ++++++++++++++++++++++++++++++-----
 math/octave-current/distinfo         |  27 +++++++--------
 math/octave-current/patches/patch-aa |  40 +---------------------
 math/octave-current/patches/patch-ab |   8 ++--
 math/octave-current/patches/patch-ac |  18 ++++++----
 math/octave-current/patches/patch-ad |   8 ++--
 math/octave-current/patches/patch-ae |   6 +-
 math/octave-current/patches/patch-af |   8 ++--
 math/octave-current/patches/patch-ag |  16 ++++----
 math/octave-current/patches/patch-ah |   6 +-
 math/octave-current/patches/patch-ai |  10 ++--
 math/octave-current/patches/patch-aj |  22 ------------
 13 files changed, 126 insertions(+), 136 deletions(-)

diffs (truncated from 669 to 300 lines):

diff -r 740d731c62b9 -r 7ea2cb9b7095 math/octave-current/Makefile
--- a/math/octave-current/Makefile      Fri Dec 14 20:44:57 2007 +0000
+++ b/math/octave-current/Makefile      Sat Dec 15 05:54:50 2007 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.64 2007/12/02 11:21:38 wiz Exp $
+# $NetBSD: Makefile,v 1.65 2007/12/15 05:54:50 adam Exp $
 
 DISTNAME=      octave-${OCTAVE_VER}
 PKGNAME=       octave-current-${OCTAVE_VER}
-PKGREVISION=   1
 CATEGORIES=    math
 MASTER_SITES=  ftp://ftp.che.wisc.edu/pub/octave/bleeding-edge/
 EXTRACT_SUFX=  .tar.bz2
@@ -15,7 +14,7 @@
 BUILD_DEPENDS+=        gperf>=2.7:../../devel/gperf
 DEPENDS+=      gnuplot>=3.7:../../graphics/gnuplot
 
-OCTAVE_VER=    2.9.14
+OCTAVE_VER=    2.9.19
 CONFLICTS+=    octave-2.*
 
 .if (${MACHINE_ARCH} == "arm32")
@@ -44,32 +43,33 @@
 .include "options.mk"
 
 GNU_PLATFORM_DIR!=     ${.CURDIR}/../../mk/gnu-config/config.sub ${MACHINE_GNU_PLATFORM}
-PLIST_SUBST+=          GNU_PLATFORM_DIR=${GNU_PLATFORM_DIR:Q}
+PLIST_SUBST+=          GNU_PLATFORM_DIR=${GNU_PLATFORM_DIR}
 
-INFO_FILES=    # PLIST
-OCTAVE_DOC=    faq/Octave-FAQ.ps interpreter/octave.ps \
-               liboctave/liboctave.ps refcard/refcard-a4.ps \
-               refcard/refcard-legal.ps  refcard/refcard-letter.ps
+INFO_FILES=    yes
+OCTAVE_DOC=    faq/Octave-FAQ.ps  liboctave/liboctave.ps \
+               refcard/refcard-a4.ps refcard/refcard-legal.ps \
+               refcard/refcard-letter.ps
 
-UNWRAP_FILES+= mkoctfile octave-bug src/oct-conf.h
+INSTALLATION_DIRS+=    share/octave/${OCTAVE_VER}/doc
+UNWRAP_FILES+=         mkoctfile octave-bug src/oct-conf.h
 
 post-extract:
-       ${FIND} ${WRKSRC}/doc -type f -name '*.info*' -print | ${XARGS} ${RM} -f
-       ${MKDIR} ${WRKSRC}/src/pic
+       find ${WRKSRC}/doc -type f -name '*.info*' -print | xargs rm -f
+       mkdir ${WRKSRC}/src/pic
 
 # substitute in the real path to various bits of the toolchain because
 # mkoctfile will be used potentially by users and it needs to point at the same
 # compilers as were used in building octave.  We also fix up the path to sed
 # otherwise we end up with the buildlink directory in mkoctfile
 post-build:
-       ${MV} ${WRKSRC}/mkoctfile ${WRKSRC}/mkoctfile.bak
-       ${SED}  -e 's;"${CC}";"${CCPATH}";g' \
+       mv ${WRKSRC}/mkoctfile ${WRKSRC}/mkoctfile.bak
+       sed     -e 's;"${CC}";"${CCPATH}";g' \
                -e 's;"${CXX}";"${CXXPATH}";g' \
                -e 's;"${FC}";"${FCPATH}";g' \
                -e 's@^:[ \t]*\$${SED=.*@: \$$\{SED="${SED}"\}@g' \
                ${WRKSRC}/mkoctfile.bak > ${WRKSRC}/mkoctfile
-       ${CHMOD} a+x ${WRKSRC}/mkoctfile
-       (cd ${WRKSRC}/doc/interpreter && ${GMAKE} octave.ps)
+       chmod a+x ${WRKSRC}/mkoctfile
+       (cd ${WRKSRC}/doc/interpreter && gmake octave.ps)
 
 post-install:
        cd ${WRKSRC}/doc/liboctave;                                     \
@@ -77,7 +77,6 @@
                ${TEST} ! -f "$$f" ||                                   \
                ${INSTALL_DATA} "$$f" ${PREFIX}/${PKGINFODIR};          \
        done
-       ${INSTALL_DATA_DIR} ${PREFIX}/share/octave/${OCTAVE_VER}/doc
 .for f in ${OCTAVE_DOC}
        ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${PREFIX}/share/octave/${OCTAVE_VER}/doc
 .endfor
diff -r 740d731c62b9 -r 7ea2cb9b7095 math/octave-current/PLIST
--- a/math/octave-current/PLIST Fri Dec 14 20:44:57 2007 +0000
+++ b/math/octave-current/PLIST Sat Dec 15 05:54:50 2007 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.22 2007/09/19 18:09:16 drochner Exp $
+@comment $NetBSD: PLIST,v 1.23 2007/12/15 05:54:50 adam Exp $
 bin/mkoctfile
 bin/mkoctfile-${PKGVERSION}
 bin/octave
@@ -48,7 +48,6 @@
 include/octave-${PKGVERSION}/octave/EIG.h
 include/octave-${PKGVERSION}/octave/FEGrid.h
 include/octave-${PKGVERSION}/octave/LP.h
-include/octave-${PKGVERSION}/octave/LPsolve.h
 include/octave-${PKGVERSION}/octave/LSODE-opts.h
 include/octave-${PKGVERSION}/octave/LSODE.h
 include/octave-${PKGVERSION}/octave/LinConst.h
@@ -96,6 +95,7 @@
 include/octave-${PKGVERSION}/octave/boolMatrix.h
 include/octave-${PKGVERSION}/octave/boolNDArray.h
 include/octave-${PKGVERSION}/octave/boolSparse.h
+include/octave-${PKGVERSION}/octave/builtins.h
 include/octave-${PKGVERSION}/octave/byte-swap.h
 include/octave-${PKGVERSION}/octave/c-file-ptr-stream.h
 include/octave-${PKGVERSION}/octave/chMatrix.h
@@ -120,6 +120,7 @@
 include/octave-${PKGVERSION}/octave/dbleQRP.h
 include/octave-${PKGVERSION}/octave/dbleSCHUR.h
 include/octave-${PKGVERSION}/octave/dbleSVD.h
+include/octave-${PKGVERSION}/octave/debug.h
 include/octave-${PKGVERSION}/octave/defaults.h
 include/octave-${PKGVERSION}/octave/defun-dld.h
 include/octave-${PKGVERSION}/octave/defun-int.h
@@ -152,6 +153,7 @@
 include/octave-${PKGVERSION}/octave/lo-error.h
 include/octave-${PKGVERSION}/octave/lo-ieee.h
 include/octave-${PKGVERSION}/octave/lo-mappers.h
+include/octave-${PKGVERSION}/octave/lo-math.h
 include/octave-${PKGVERSION}/octave/lo-specfun.h
 include/octave-${PKGVERSION}/octave/lo-sysdep.h
 include/octave-${PKGVERSION}/octave/lo-utils.h
@@ -656,7 +658,6 @@
 libexec/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/hess.oct
 libexec/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/inv.oct
 libexec/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/kron.oct
-libexec/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/lpsolve.oct
 libexec/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/lsode.oct
 libexec/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/lu.oct
 libexec/octave/${PKGVERSION}/oct/${MACHINE_GNU_PLATFORM}/luinc.oct
@@ -692,11 +693,9 @@
 man/man1/octave-bug.1
 man/man1/octave-config.1
 man/man1/octave.1
-share/applications/www.octave.org-octave.desktop
 share/octave/${PKGVERSION}/NEWS
 share/octave/${PKGVERSION}/doc/Octave-FAQ.ps
 share/octave/${PKGVERSION}/doc/liboctave.ps
-share/octave/${PKGVERSION}/doc/octave.ps
 share/octave/${PKGVERSION}/doc/refcard-a4.ps
 share/octave/${PKGVERSION}/doc/refcard-legal.ps
 share/octave/${PKGVERSION}/doc/refcard-letter.ps
@@ -1082,6 +1081,7 @@
 share/octave/${PKGVERSION}/m/image/cool.m
 share/octave/${PKGVERSION}/m/image/copper.m
 share/octave/${PKGVERSION}/m/image/flag.m
+share/octave/${PKGVERSION}/m/image/gmap40.m
 share/octave/${PKGVERSION}/m/image/gray.m
 share/octave/${PKGVERSION}/m/image/gray2ind.m
 share/octave/${PKGVERSION}/m/image/hot.m
@@ -1109,8 +1109,10 @@
 share/octave/${PKGVERSION}/m/image/white.m
 share/octave/${PKGVERSION}/m/image/winter.m
 share/octave/${PKGVERSION}/m/io/beep.m
+share/octave/${PKGVERSION}/m/linear-algebra/__norm__.m
 share/octave/${PKGVERSION}/m/linear-algebra/commutation_matrix.m
 share/octave/${PKGVERSION}/m/linear-algebra/cond.m
+share/octave/${PKGVERSION}/m/linear-algebra/condest.m
 share/octave/${PKGVERSION}/m/linear-algebra/cross.m
 share/octave/${PKGVERSION}/m/linear-algebra/dmult.m
 share/octave/${PKGVERSION}/m/linear-algebra/dot.m
@@ -1119,8 +1121,8 @@
 share/octave/${PKGVERSION}/m/linear-algebra/krylov.m
 share/octave/${PKGVERSION}/m/linear-algebra/krylovb.m
 share/octave/${PKGVERSION}/m/linear-algebra/logm.m
-share/octave/${PKGVERSION}/m/linear-algebra/norm.m
 share/octave/${PKGVERSION}/m/linear-algebra/null.m
+share/octave/${PKGVERSION}/m/linear-algebra/onenormest.m
 share/octave/${PKGVERSION}/m/linear-algebra/orth.m
 share/octave/${PKGVERSION}/m/linear-algebra/qzhess.m
 share/octave/${PKGVERSION}/m/linear-algebra/rank.m
@@ -1138,7 +1140,6 @@
 share/octave/${PKGVERSION}/m/miscellaneous/compare_versions.m
 share/octave/${PKGVERSION}/m/miscellaneous/computer.m
 share/octave/${PKGVERSION}/m/miscellaneous/copyfile.m
-share/octave/${PKGVERSION}/m/miscellaneous/cputime.m
 share/octave/${PKGVERSION}/m/miscellaneous/delete.m
 share/octave/${PKGVERSION}/m/miscellaneous/dir.m
 share/octave/${PKGVERSION}/m/miscellaneous/doc.m
@@ -1152,6 +1153,7 @@
 share/octave/${PKGVERSION}/m/miscellaneous/gunzip.m
 share/octave/${PKGVERSION}/m/miscellaneous/gzip.m
 share/octave/${PKGVERSION}/m/miscellaneous/inputname.m
+share/octave/${PKGVERSION}/m/miscellaneous/ismac.m
 share/octave/${PKGVERSION}/m/miscellaneous/ispc.m
 share/octave/${PKGVERSION}/m/miscellaneous/isunix.m
 share/octave/${PKGVERSION}/m/miscellaneous/license.m
@@ -1185,6 +1187,7 @@
 share/octave/${PKGVERSION}/m/miscellaneous/ver.m
 share/octave/${PKGVERSION}/m/miscellaneous/version.m
 share/octave/${PKGVERSION}/m/miscellaneous/warning_ids.m
+share/octave/${PKGVERSION}/m/miscellaneous/what.m
 share/octave/${PKGVERSION}/m/miscellaneous/xor.m
 share/octave/${PKGVERSION}/m/miscellaneous/zip.m
 share/octave/${PKGVERSION}/m/optimization/__fsolve_defopts__.m
@@ -1197,8 +1200,12 @@
 share/octave/${PKGVERSION}/m/pkg/PKG_ADD
 share/octave/${PKGVERSION}/m/pkg/pkg.m
 share/octave/${PKGVERSION}/m/plot/PKG_ADD
+share/octave/${PKGVERSION}/m/plot/__area__.m
+share/octave/${PKGVERSION}/m/plot/__axes_limits__.m
 share/octave/${PKGVERSION}/m/plot/__axis_label__.m
 share/octave/${PKGVERSION}/m/plot/__bar__.m
+share/octave/${PKGVERSION}/m/plot/__bars__.m
+share/octave/${PKGVERSION}/m/plot/__contour__.m
 share/octave/${PKGVERSION}/m/plot/__default_plot_options__.m
 share/octave/${PKGVERSION}/m/plot/__errcomm__.m
 share/octave/${PKGVERSION}/m/plot/__errplot__.m
@@ -1222,24 +1229,36 @@
 share/octave/${PKGVERSION}/m/plot/__plt_get_axis_arg__.m
 share/octave/${PKGVERSION}/m/plot/__pltopt1__.m
 share/octave/${PKGVERSION}/m/plot/__pltopt__.m
+share/octave/${PKGVERSION}/m/plot/__quiver__.m
+share/octave/${PKGVERSION}/m/plot/__scatter__.m
+share/octave/${PKGVERSION}/m/plot/__stem__.m
 share/octave/${PKGVERSION}/m/plot/ancestor.m
+share/octave/${PKGVERSION}/m/plot/area.m
 share/octave/${PKGVERSION}/m/plot/axes.m
 share/octave/${PKGVERSION}/m/plot/axis.m
 share/octave/${PKGVERSION}/m/plot/bar.m
 share/octave/${PKGVERSION}/m/plot/barh.m
 share/octave/${PKGVERSION}/m/plot/box.m
+share/octave/${PKGVERSION}/m/plot/caxis.m
 share/octave/${PKGVERSION}/m/plot/clf.m
 share/octave/${PKGVERSION}/m/plot/close.m
 share/octave/${PKGVERSION}/m/plot/closereq.m
+share/octave/${PKGVERSION}/m/plot/colorbar.m
 share/octave/${PKGVERSION}/m/plot/contour.m
+share/octave/${PKGVERSION}/m/plot/contour3.m
 share/octave/${PKGVERSION}/m/plot/contourc.m
+share/octave/${PKGVERSION}/m/plot/contourf.m
+share/octave/${PKGVERSION}/m/plot/cylinder.m
 share/octave/${PKGVERSION}/m/plot/drawnow.m
 share/octave/${PKGVERSION}/m/plot/errorbar.m
 share/octave/${PKGVERSION}/m/plot/figure.m
+share/octave/${PKGVERSION}/m/plot/fill.m
+share/octave/${PKGVERSION}/m/plot/findobj.m
 share/octave/${PKGVERSION}/m/plot/fplot.m
 share/octave/${PKGVERSION}/m/plot/gca.m
 share/octave/${PKGVERSION}/m/plot/gcf.m
 share/octave/${PKGVERSION}/m/plot/grid.m
+share/octave/${PKGVERSION}/m/plot/hidden.m
 share/octave/${PKGVERSION}/m/plot/hist.m
 share/octave/${PKGVERSION}/m/plot/hold.m
 share/octave/${PKGVERSION}/m/plot/isfigure.m
@@ -1251,35 +1270,58 @@
 share/octave/${PKGVERSION}/m/plot/mesh.m
 share/octave/${PKGVERSION}/m/plot/meshc.m
 share/octave/${PKGVERSION}/m/plot/meshgrid.m
+share/octave/${PKGVERSION}/m/plot/meshz.m
 share/octave/${PKGVERSION}/m/plot/ndgrid.m
 share/octave/${PKGVERSION}/m/plot/newplot.m
 share/octave/${PKGVERSION}/m/plot/orient.m
+share/octave/${PKGVERSION}/m/plot/pareto.m
+share/octave/${PKGVERSION}/m/plot/pcolor.m
 share/octave/${PKGVERSION}/m/plot/patch.m
 share/octave/${PKGVERSION}/m/plot/peaks.m
+share/octave/${PKGVERSION}/m/plot/pie.m
 share/octave/${PKGVERSION}/m/plot/plot.m
 share/octave/${PKGVERSION}/m/plot/plot3.m
+share/octave/${PKGVERSION}/m/plot/plotyy.m
 share/octave/${PKGVERSION}/m/plot/polar.m
 share/octave/${PKGVERSION}/m/plot/print.m
+share/octave/${PKGVERSION}/m/plot/quiver.m
+share/octave/${PKGVERSION}/m/plot/quiver3.m
+share/octave/${PKGVERSION}/m/plot/ribbon.m
 share/octave/${PKGVERSION}/m/plot/replot.m
+share/octave/${PKGVERSION}/m/plot/scatter.m
+share/octave/${PKGVERSION}/m/plot/scatter3.m
 share/octave/${PKGVERSION}/m/plot/semilogx.m
 share/octave/${PKGVERSION}/m/plot/semilogxerr.m
 share/octave/${PKGVERSION}/m/plot/semilogy.m
 share/octave/${PKGVERSION}/m/plot/semilogyerr.m
+share/octave/${PKGVERSION}/m/plot/shading.m
 share/octave/${PKGVERSION}/m/plot/shg.m
+share/octave/${PKGVERSION}/m/plot/slice.m
 share/octave/${PKGVERSION}/m/plot/sombrero.m
+share/octave/${PKGVERSION}/m/plot/sphere.m
+share/octave/${PKGVERSION}/m/plot/spinmap.m
 share/octave/${PKGVERSION}/m/plot/stairs.m
 share/octave/${PKGVERSION}/m/plot/stem.m
+share/octave/${PKGVERSION}/m/plot/stem3.m
 share/octave/${PKGVERSION}/m/plot/subplot.m
+share/octave/${PKGVERSION}/m/plot/surf.m
+share/octave/${PKGVERSION}/m/plot/surface.m
+share/octave/${PKGVERSION}/m/plot/surfc.m
+share/octave/${PKGVERSION}/m/plot/surfnorm.m
 share/octave/${PKGVERSION}/m/plot/text.m
 share/octave/${PKGVERSION}/m/plot/title.m
 share/octave/${PKGVERSION}/m/plot/view.m
 share/octave/${PKGVERSION}/m/plot/xlabel.m
+share/octave/${PKGVERSION}/m/plot/xlim.m
 share/octave/${PKGVERSION}/m/plot/ylabel.m
+share/octave/${PKGVERSION}/m/plot/ylim.m
 share/octave/${PKGVERSION}/m/plot/zlabel.m
+share/octave/${PKGVERSION}/m/plot/zlim.m
 share/octave/${PKGVERSION}/m/polynomial/compan.m
 share/octave/${PKGVERSION}/m/polynomial/conv.m
 share/octave/${PKGVERSION}/m/polynomial/deconv.m
 share/octave/${PKGVERSION}/m/polynomial/mkpp.m
+share/octave/${PKGVERSION}/m/polynomial/mpoles.m
 share/octave/${PKGVERSION}/m/polynomial/pchip.m
 share/octave/${PKGVERSION}/m/polynomial/poly.m
 share/octave/${PKGVERSION}/m/polynomial/polyder.m
@@ -1511,6 +1553,9 @@



Home | Main Index | Thread Index | Old Index