Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/octave/files: octave-3.6.3-legendtext.patch octave-3.4.3-gets.patch
Date: Thu, 22 Nov 2012 19:46:26
Message-Id: 20121122194615.9D01420C9F@flycatcher.gentoo.org
1 bicatali 12/11/22 19:46:15
2
3 Added: octave-3.6.3-legendtext.patch
4 Removed: octave-3.4.3-gets.patch
5 Log:
6 Adding a patch to fix legend text with FLTK backend, thanks Thomas Ilnseher (bug #437868). Removed old
7
8 (Portage version: 2.2.01.21313-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
9
10 Revision Changes Path
11 1.1 sci-mathematics/octave/files/octave-3.6.3-legendtext.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/files/octave-3.6.3-legendtext.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/files/octave-3.6.3-legendtext.patch?rev=1.1&content-type=text/plain
15
16 Index: octave-3.6.3-legendtext.patch
17 ===================================================================
18 should be fixed in octave-3.8 and above
19
20 --- src/gl2ps-renderer.cc.orig 2012-05-31 03:43:29.000000000 +0200
21 +++ src/gl2ps-renderer.cc 2012-10-10 18:41:10.526639551 +0200
22 @@ -223,7 +223,7 @@
23
24 // FIXME: handle margin and surrounding box
25
26 - glRasterPos3d (pos(0), pos(1), pos(2));
27 + glRasterPos3d (pos(0), pos(1), pos.numel() > 2 ? pos(2) : 0.0);
28
29 octave_value string_prop = props.get_string ();