diff options
author | 2009-02-27 17:49:50 +0000 | |
---|---|---|
committer | 2009-02-27 17:49:50 +0000 | |
commit | 47484ca68c197e3347e20f68c26f21f8a4511e86 (patch) | |
tree | 6025eea1e2e83d323631ef9705803288b2e35853 /dev-python/matplotlib/files | |
parent | Remove p.mask for media-video/mplayer-20090226.28734 (diff) | |
download | gentoo-2-47484ca68c197e3347e20f68c26f21f8a4511e86.tar.gz gentoo-2-47484ca68c197e3347e20f68c26f21f8a4511e86.tar.bz2 gentoo-2-47484ca68c197e3347e20f68c26f21f8a4511e86.zip |
Added more dependencies to build documentation and a patch to avoid to launch xv during doc compilation when imaging is installed. Closing bug #260446 and bug #260431
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/matplotlib/files')
-rw-r--r-- | dev-python/matplotlib/files/matplotlib-0.98.5.2-no-xv.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-python/matplotlib/files/matplotlib-0.98.5.2-no-xv.patch b/dev-python/matplotlib/files/matplotlib-0.98.5.2-no-xv.patch new file mode 100644 index 000000000000..65ad17b3661d --- /dev/null +++ b/dev-python/matplotlib/files/matplotlib-0.98.5.2-no-xv.patch @@ -0,0 +1,11 @@ +--- examples/pylab_examples/to_numeric.py.orig 2009-02-27 17:10:43.000000000 +0000 ++++ examples/pylab_examples/to_numeric.py 2009-02-27 17:06:20.000000000 +0000 +@@ -28,6 +28,6 @@ + X = fromstring(s, uint8) + X.shape = h, w, 3 + +-im = Image.fromstring( "RGB", (w,h), s) +-im.show() ++im = imshow(Image.fromstring( "RGB", (w,h), s),origin='lower') ++show() + |