diff options
author | Alastair Tse <liquidx@gentoo.org> | 2006-02-07 00:33:31 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2006-02-07 00:33:31 +0000 |
commit | 94224a4e9c67aa03d09310cba8712fbd5367a141 (patch) | |
tree | 9b33ec0a8fc86b96f9928e0f2a7c4543a7cfab04 /dev-python/matplotlib/files | |
parent | modular X patch + fixups from Tupone Alfredo (bug #121160) (diff) | |
download | historical-94224a4e9c67aa03d09310cba8712fbd5367a141.tar.gz historical-94224a4e9c67aa03d09310cba8712fbd5367a141.tar.bz2 historical-94224a4e9c67aa03d09310cba8712fbd5367a141.zip |
version bump. updated patch and ebuild thanks to Alok Singhal (#119468). Supports dev-python/numpy.
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'dev-python/matplotlib/files')
-rw-r--r-- | dev-python/matplotlib/files/digest-matplotlib-0.86.2 | 1 | ||||
-rw-r--r-- | dev-python/matplotlib/files/matplotlib-0.86.2-no-autodetect.patch | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/dev-python/matplotlib/files/digest-matplotlib-0.86.2 b/dev-python/matplotlib/files/digest-matplotlib-0.86.2 new file mode 100644 index 000000000000..a0e96439b790 --- /dev/null +++ b/dev-python/matplotlib/files/digest-matplotlib-0.86.2 @@ -0,0 +1 @@ +MD5 2329312e4088e5f7b4d6acb373b3a7e6 matplotlib-0.86.2.tar.gz 2623905 diff --git a/dev-python/matplotlib/files/matplotlib-0.86.2-no-autodetect.patch b/dev-python/matplotlib/files/matplotlib-0.86.2-no-autodetect.patch new file mode 100644 index 000000000000..79d498448b3d --- /dev/null +++ b/dev-python/matplotlib/files/matplotlib-0.86.2-no-autodetect.patch @@ -0,0 +1,60 @@ +--- setup.bak.py 2006-01-17 12:54:55.000000000 -0500 ++++ setup.py 2006-01-17 12:59:47.000000000 -0500 +@@ -203,47 +203,20 @@ + build_enthought(ext_modules, packages) + + if BUILD_GTK: +- try: +- import gtk +- except ImportError: +- print 'GTK requires pygtk' +- BUILD_GTK=0 +- except RuntimeError: +- print 'pygtk present but import failed' +- +-if BUILD_GTK: +- build_gdk(ext_modules, packages, NUMERIX) +- rc['backend'] = 'GTK' ++ build_gdk(ext_modules, packages, NUMERIX) ++ rc['backend'] = 'GTK' + + if BUILD_TKAGG: +- try: import Tkinter +- except ImportError: print 'TKAgg requires TkInter' +- else: +- BUILD_AGG = 1 +- build_tkagg(ext_modules, packages, NUMERIX) +- rc['backend'] = 'TkAgg' ++ BUILD_AGG = 1 ++ build_tkagg(ext_modules, packages, NUMERIX) ++ rc['backend'] = 'TkAgg' + + if BUILD_WXAGG: +- try: import wxPython +- except ImportError: +- if BUILD_WXAGG != 'auto': +- print 'WXAgg\'s accelerator requires wxPython' +- BUILD_WXAGG = 0 +- else: +- BUILD_AGG = 1 +- build_wxagg(ext_modules, packages, NUMERIX, +- not (isinstance(BUILD_WXAGG, str) # don't about if BUILD_WXAGG +- and BUILD_WXAGG.lower() == 'auto')) # is "auto" +- rc['backend'] = 'WXAgg' +- +-if BUILD_GTKAGG: +- try: +- import gtk +- except ImportError: +- print 'GTKAgg requires pygtk' +- BUILD_GTKAGG=0 +- except RuntimeError: +- print 'pygtk present but import failed' ++ BUILD_AGG = 1 ++ build_wxagg(ext_modules, packages, NUMERIX, ++ not (isinstance(BUILD_WXAGG, str) # don't about if BUILD_WXAGG ++ and BUILD_WXAGG.lower() == 'auto')) # is "auto" ++ rc['backend'] = 'WXAgg' + + if BUILD_GTKAGG: + BUILD_AGG = 1 |