summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Dittrich <markusle@gentoo.org>2006-06-10 01:21:00 +0000
committerMarkus Dittrich <markusle@gentoo.org>2006-06-10 01:21:00 +0000
commit6beb8dbd1741bb04b568a1a404ab34fd8d307a17 (patch)
tree6179b1ea4ca27362f21cf39970b42e950404456f /sci-mathematics/octave/files
parentfixed up missing nptl and nptlonly useflags, bug 136239 (diff)
downloadgentoo-2-6beb8dbd1741bb04b568a1a404ab34fd8d307a17.tar.gz
gentoo-2-6beb8dbd1741bb04b568a1a404ab34fd8d307a17.tar.bz2
gentoo-2-6beb8dbd1741bb04b568a1a404ab34fd8d307a17.zip
Version bump. This includes patches to fix the compile problems with octave-forge (see bug #133246).
(Portage version: 2.1_rc4-r4)
Diffstat (limited to 'sci-mathematics/octave/files')
-rw-r--r--sci-mathematics/octave/files/digest-octave-2.1.733
-rw-r--r--sci-mathematics/octave/files/octave-2.1.73-gcc4.1-gentoo.patch24
2 files changed, 27 insertions, 0 deletions
diff --git a/sci-mathematics/octave/files/digest-octave-2.1.73 b/sci-mathematics/octave/files/digest-octave-2.1.73
new file mode 100644
index 000000000000..c9d5dd4b570b
--- /dev/null
+++ b/sci-mathematics/octave/files/digest-octave-2.1.73
@@ -0,0 +1,3 @@
+MD5 c356475aa06d81a10f8bf27f1a1d27a0 octave-2.1.73.tar.bz2 5790133
+RMD160 d34c6ecd8f84c728ad7687d9568b9d69ade6f5db octave-2.1.73.tar.bz2 5790133
+SHA256 8ccaee227c6cad3b5633a904414f17ce73de8eab2abd4d2e6a3972dd878ffbc3 octave-2.1.73.tar.bz2 5790133
diff --git a/sci-mathematics/octave/files/octave-2.1.73-gcc4.1-gentoo.patch b/sci-mathematics/octave/files/octave-2.1.73-gcc4.1-gentoo.patch
new file mode 100644
index 000000000000..6848c204dc14
--- /dev/null
+++ b/sci-mathematics/octave/files/octave-2.1.73-gcc4.1-gentoo.patch
@@ -0,0 +1,24 @@
+diff -Naur octave-2.1.73/liboctave/ArrayN.h octave-2.1.73-new/liboctave/ArrayN.h
+--- octave-2.1.73/liboctave/ArrayN.h 2005-05-02 07:16:12.000000000 -0400
++++ octave-2.1.73-new/liboctave/ArrayN.h 2006-06-09 18:10:08.000000000 -0400
+@@ -63,7 +63,7 @@
+ ArrayN (const dim_vector& dv) : Array<T> (dv) { }
+
+ ArrayN (const dim_vector& dv, const T& val)
+- : Array<T> (dv) { fill (val); }
++ : Array<T> (dv) { Array<T>::fill (val); }
+
+ template <class U>
+ explicit ArrayN (const Array2<U>& a) : Array<T> (a, a.dims ()) { }
+diff -Naur octave-2.1.73/liboctave/DiagArray2.h octave-2.1.73-new/liboctave/DiagArray2.h
+--- octave-2.1.73/liboctave/DiagArray2.h 2005-05-02 07:16:16.000000000 -0400
++++ octave-2.1.73-new/liboctave/DiagArray2.h 2006-06-09 18:10:08.000000000 -0400
+@@ -125,7 +125,7 @@
+ {
+ this->dimensions = dim_vector (r, c);
+
+- fill (val);
++ Array<T>::fill (val);
+ }
+
+ DiagArray2 (const Array<T>& a) : Array<T> (a)