summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2011-08-09 05:40:01 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2011-08-09 05:40:01 +0000
commitda5c3778a01056f272f035f9b4dcf309d26a9f7b (patch)
treec873ccad4467d627a834eee24301b49a7b181cea /dev-python/matplotlib/files
parentVersion bump. Added openmp features, thanks to Roby, bug #360157 (diff)
downloadhistorical-da5c3778a01056f272f035f9b4dcf309d26a9f7b.tar.gz
historical-da5c3778a01056f272f035f9b4dcf309d26a9f7b.tar.bz2
historical-da5c3778a01056f272f035f9b4dcf309d26a9f7b.zip
Added linux patches, bug #375255, thanks robbat2 for the look up
Package-Manager: portage-2.1.10.10/cvs/Linux x86_64
Diffstat (limited to 'dev-python/matplotlib/files')
-rw-r--r--dev-python/matplotlib/files/matplotlib-1.0.1-linux3.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-python/matplotlib/files/matplotlib-1.0.1-linux3.patch b/dev-python/matplotlib/files/matplotlib-1.0.1-linux3.patch
new file mode 100644
index 000000000000..8efe5ce11f24
--- /dev/null
+++ b/dev-python/matplotlib/files/matplotlib-1.0.1-linux3.patch
@@ -0,0 +1,21 @@
+--- setupext.py.orig 2011-08-09 06:33:33.000000000 +0100
++++ setupext.py 2011-08-09 06:34:26.000000000 +0100
+@@ -54,6 +54,7 @@
+ 'linux2-mips' : ['/usr/local', '/usr'],
+ 'linux2-sparc' : ['/usr/local', '/usr'],
+ 'linux2' : ['/usr/local', '/usr'],
++ 'linux3' : ['/usr/local', '/usr'],
+ 'linux' : ['/usr/local', '/usr',],
+ 'cygwin' : ['/usr/local', '/usr',],
+ '_darwin' : ['/sw/lib/freetype2', '/sw/lib/freetype219', '/usr/local',
+--- examples/api/font_file.py.orig 2011-08-09 06:30:37.000000000 +0100
++++ examples/api/font_file.py 2011-08-09 06:31:12.000000000 +0100
+@@ -17,7 +17,7 @@
+
+ if sys.platform == 'win32':
+ fpath = 'C:\\Windows\\Fonts\\Tahoma.ttf'
+-elif sys.platform == 'linux2':
++elif sys.platform.startswith('linux'):
+ fonts = ['/usr/share/fonts/truetype/freefont/FreeSansBoldOblique.ttf',
+ '/usr/share/fonts/truetype/ttf-liberation/LiberationSans-BoldItalic.ttf',
+ '/usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf',