head 1.6; access; symbols pkgsrc-2013Q2:1.6.0.12 pkgsrc-2013Q2-base:1.6 pkgsrc-2012Q4:1.6.0.10 pkgsrc-2012Q4-base:1.6 pkgsrc-2011Q4:1.6.0.8 pkgsrc-2011Q4-base:1.6 pkgsrc-2011Q2:1.6.0.6 pkgsrc-2011Q2-base:1.6 pkgsrc-2009Q4:1.6.0.4 pkgsrc-2009Q4-base:1.6 pkgsrc-2008Q4:1.6.0.2 pkgsrc-2008Q4-base:1.6 pkgsrc-2008Q3:1.5.0.12 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.10 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.8 pkgsrc-2008Q2-base:1.5 cwrapper:1.5.0.6 pkgsrc-2008Q1:1.5.0.4 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.5.0.2 pkgsrc-2007Q4-base:1.5 pkgsrc-2007Q3:1.3.0.2 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.2.0.28 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.2.0.26 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.24 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.22 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.2.0.20 pkgsrc-2006Q2-base:1.2 pkgsrc-2006Q1:1.2.0.18 pkgsrc-2006Q1-base:1.2 pkgsrc-2005Q4:1.2.0.16 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.2.0.14 pkgsrc-2005Q3-base:1.2 pkgsrc-2005Q2:1.2.0.12 pkgsrc-2005Q2-base:1.2 pkgsrc-2005Q1:1.2.0.10 pkgsrc-2005Q1-base:1.2 pkgsrc-2004Q4:1.2.0.8 pkgsrc-2004Q4-base:1.2 pkgsrc-2004Q3:1.2.0.6 pkgsrc-2004Q3-base:1.2 pkgsrc-2004Q2:1.2.0.4 pkgsrc-2004Q2-base:1.2 pkgsrc-2004Q1:1.2.0.2 pkgsrc-2004Q1-base:1.2 pkgsrc-2003Q4:1.1.1.1.0.10 pkgsrc-2003Q4-base:1.1.1.1 netbsd-1-6-1:1.1.1.1.0.6 netbsd-1-6-1-base:1.1.1.1 netbsd-1-6:1.1.1.1.0.8 netbsd-1-6-RELEASE-base:1.1.1.1 pkgviews:1.1.1.1.0.4 pkgviews-base:1.1.1.1 buildlink2:1.1.1.1.0.2 buildlink2-base:1.1.1.1 netbsd-1-5-PATCH003:1.1.1.1 netbsd-1-5-PATCH001:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.6 date 2008.11.07.15.59.58; author jwise; state dead; branches; next 1.5; 1.5 date 2007.12.29.11.09.44; author adam; state Exp; branches; next 1.4; 1.4 date 2007.12.15.05.54.51; author adam; state dead; branches; next 1.3; 1.3 date 2007.09.24.20.56.46; author drochner; state Exp; branches; next 1.2; 1.2 date 2003.12.04.11.15.37; author adam; state dead; branches; next 1.1; 1.1 date 2001.03.27.12.06.55; author wennmach; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2001.03.27.12.06.55; author wennmach; state Exp; branches; next ; desc @@ 1.6 log @Per discussion with maintainer, remove octave-current, which is substantially less current than the current octave. @ text @$NetBSD: patch-aj,v 1.5 2007/12/29 11:09:44 adam Exp $ --- liboctave/file-ops.cc.orig 2007-12-29 04:26:48.000000000 +0100 +++ liboctave/file-ops.cc @@@@ -854,7 +854,7 @@@@ file_ops::unlink (const std::string& nam bool file_ops::is_dir_sep (char c) { - return dir_sep_chars.find (c) != NPOS; + return c == dir_sep_char; } std::string @ 1.5 log @Fix PR#37553 @ text @d1 1 a1 1 $NetBSD$ @ 1.4 log @Changes 2.9.19: * bug fixes @ text @d1 1 a1 1 $NetBSD: patch-aj,v 1.3 2007/09/24 20:56:46 drochner Exp $ d3 9 a11 12 --- src/syscalls.cc.orig 2007-09-24 16:38:36.000000000 +0200 +++ src/syscalls.cc @@@@ -236,7 +236,7 @@@@ For example,\n\ \n\ @@example\n\ @@group\n\ -[in, out, pid] = popen2 (\"sort\", \"-nr\");\n\ +[in, out, pid] = popen2 (\"sort\", \"-r\");\n\ fputs (in, \"these\\nare\\nsome\\nstrings\\n\");\n\ fclose (in);\n\ EAGAIN = errno (\"EAGAIN\");\n\ @@@@ -352,7 +352,7 @@@@ fclose (out);\n\ d13 1 a13 7 %!test %! if (isunix()) -%! [in, out, pid] = popen2 ("sort", "-nr"); +%! [in, out, pid] = popen2 ("sort", "-r"); %! EAGAIN = errno ("EAGAIN"); %! else %! [in, out, pid] = popen2 ("sort", "/R"); @ 1.3 log @-Fix non-portable use of strptime(3): SUSv3 does not require it to do calendar math and fill in wday/yday. Use mktime(3) to have those fields calculated. -Fix non-portable use of sort(1) (in an example/selftest only): the "-n" option should "restrict" the sort key to a numeric field, there is no requirement to use another key if no numbers are present. -bump PKGREVISION @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @Changes 2.1.52: * Emacs fixes * The ++ and -- operators now work for indexed matrices * The built-in variable argv is now a list of strings instead of a string vec. * The new built-in variable `crash_dumps_octave_core' controls whether Octave writes user variables to the file `octave-core' when it crashes or is killed by a signal. * Loops of the form `for i = STRING ... endfor' are now allowed. * It is now possible to set the iteration limit for lsode using lsode_options ("step limit", N). * New functions * The save command now accepts the option -append to save the variables at the end of the file, leaving the existing contents. * New command-line option --no-history (also available using the single character option -H) inhibits saving command history. * The built-in variable `PWD' has been removed. * New operators. * New built-in data types. * Commas in global statements are no longer special. * It is now possible to declare static variables that retain their values across function calls. More --> See "NEWS" @ text @d1 1 a1 1 $NetBSD: patch-aj,v 1.1 2001/03/27 12:06:55 wennmach Exp $ d3 12 a14 4 --- octMakefile.in.orig Fri Dec 29 22:08:42 2000 +++ octMakefile.in Fri Dec 29 22:21:07 2000 @@@@ -31,7 +31,7 @@@@ ChangeLog ChangeLog.[0-9] d16 7 a22 6 # Complete directory trees to distribute. -DISTDIRS = glob kpathsea readline # plplot +DISTDIRS = glob kpathsea # plplot # Subdirectories in which to run `make all'. SUBDIRS = @@PLPLOT_DIR@@ @@READLINE_DIR@@ @@DLFCN_DIR@@ @@GLOB_DIR@@ \ @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD$ @ 1.1.1.1 log @Initial import of octave-current (octave-2.1.33), a high-level language primarily intended for numerical computations. Submitted in PR 9851 by Adam Ciarcinski, updated by Adam and by myself. @ text @@