diff options
author | markusle <markusle@32389bae-6d03-0410-99cf-db05cde120eb> | 2008-05-28 21:46:19 +0000 |
---|---|---|
committer | markusle <markusle@32389bae-6d03-0410-99cf-db05cde120eb> | 2008-05-28 21:46:19 +0000 |
commit | 71105d28f87ad812235799f6cbc94bd93d7c15b7 (patch) | |
tree | caa17fb2cba5faa6de0e7940c1443154a0ceaed7 /sci-mathematics/octave/files/octave-3.0.1-add_syspath.patch | |
parent | pyglet-1.1_beta1 (diff) | |
download | sci-71105d28f87ad812235799f6cbc94bd93d7c15b7.tar.gz sci-71105d28f87ad812235799f6cbc94bd93d7c15b7.tar.bz2 sci-71105d28f87ad812235799f6cbc94bd93d7c15b7.zip |
Major ebuild cleanup. Disabled failing tests and added patched from
debian svn.
git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@1107 32389bae-6d03-0410-99cf-db05cde120eb
Diffstat (limited to 'sci-mathematics/octave/files/octave-3.0.1-add_syspath.patch')
-rw-r--r-- | sci-mathematics/octave/files/octave-3.0.1-add_syspath.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sci-mathematics/octave/files/octave-3.0.1-add_syspath.patch b/sci-mathematics/octave/files/octave-3.0.1-add_syspath.patch new file mode 100644 index 000000000..7abd25bfe --- /dev/null +++ b/sci-mathematics/octave/files/octave-3.0.1-add_syspath.patch @@ -0,0 +1,19 @@ +# patch from debian svn +## 50_add_syspath.dpatch by Thomas Weber <thomas.weber.mail@gmail.com> +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Put library path in loadpath (bug fix for #477556) +## DP: http://www.cae.wisc.edu/pipermail/octave-maintainers/2008-May/007330.html +diff -urNad octave3.0-3.0.1~/src/load-path.cc octave3.0-3.0.1/src/load-path.cc +--- octave3.0-3.0.1~/src/load-path.cc 2008-04-21 18:00:20.000000000 +0200 ++++ octave3.0-3.0.1/src/load-path.cc 2008-05-21 10:20:38.000000000 +0200 +@@ -382,7 +382,7 @@ + xpath += dir_path::path_sep_str + tpath; + + if (! sys_path.empty ()) +- xpath += sys_path; ++ xpath += dir_path::path_sep_str + sys_path; + + do_set (xpath, false); + } +diff -urNad octave3.0-3.0.1~/src/load-path.cc.orig octave3.0-3.0.1/src/load-path.cc.orig |