summaryrefslogtreecommitdiff
path: root/math/py-matplotlib/files/patch-setupext.py
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2004-08-04 03:33:57 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2004-08-04 03:33:57 +0000
commit946a062e53ca8894953b201b770ce54981be68cc (patch)
treea14f76adb0cee6cb0507a6a98b01a84c2ce44e8b /math/py-matplotlib/files/patch-setupext.py
parentoops... it's better put into math/ category (diff)
re-add py-matplotlib 0.60.2
A plotting library uses a syntax familiar to matlab users
Notes
Notes: svn path=/head/; revision=115380
Diffstat (limited to 'math/py-matplotlib/files/patch-setupext.py')
-rw-r--r--math/py-matplotlib/files/patch-setupext.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/math/py-matplotlib/files/patch-setupext.py b/math/py-matplotlib/files/patch-setupext.py
new file mode 100644
index 000000000000..9da36040aac7
--- /dev/null
+++ b/math/py-matplotlib/files/patch-setupext.py
@@ -0,0 +1,19 @@
+--- setupext.py.orig Fri Jul 9 19:51:16 2004
++++ setupext.py Wed Aug 4 10:57:03 2004
+@@ -37,6 +37,7 @@
+ 'linux' : ['/usr/local', '/usr',],
+ 'darwin' : [os.getenv('MPLIB_BASE') or '/usr/local', '/usr', '/sw'],
+ 'freebsd4' : [os.getenv('MBLIB_BASE') or '/usr/local', '/usr'],
++ 'freebsd5' : [os.getenv('MBLIB_BASE') or '/usr/local', '/usr'],
+ 'sunos5' : [os.getenv('MPLIB_BASE') or '/usr/local',],
+ }
+
+@@ -220,7 +221,7 @@
+ else:
+ module.include_dirs.extend([o.tcl_inc, o.tk_inc])
+ module.library_dirs.extend([o.tcl_lib, o.tk_lib])
+- module.libraries.extend(['tk'+o.tkv, 'tcl'+o.tkv])
++ module.libraries.extend(['tk84', 'tcl84'])
+
+
+ def add_windowing_flags(module):