aboutsummaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorPietro Cerutti <gahr@FreeBSD.org>2013-06-03 15:35:22 +0000
committerPietro Cerutti <gahr@FreeBSD.org>2013-06-03 15:35:22 +0000
commitb041f76bb1af5de565c8ffc7085c46bb16a0d2bf (patch)
tree6cf58eeaa5b9cd51643b33814cb4e07b52b9c554 /math
parentaea18705b0144075d1711873d720de0eec0d5f78 (diff)
downloadports-b041f76bb1af5de565c8ffc7085c46bb16a0d2bf.tar.gz
ports-b041f76bb1af5de565c8ffc7085c46bb16a0d2bf.zip
Notes
Diffstat (limited to 'math')
-rw-r--r--math/py-matplotlib/files/patch-setupext.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/math/py-matplotlib/files/patch-setupext.py b/math/py-matplotlib/files/patch-setupext.py
deleted file mode 100644
index eb9b8fd55942..000000000000
--- a/math/py-matplotlib/files/patch-setupext.py
+++ /dev/null
@@ -1,18 +0,0 @@
---- setupext.py.orig 2011-10-06 15:50:23.000000000 +0100
-+++ setupext.py 2012-03-22 23:29:06.881660702 +0000
-@@ -1080,9 +1080,12 @@
-
- # Add final versions of directories and libraries to module lists
- tcl_lib_dir, tcl_inc_dir, tcl_lib, tk_lib_dir, tk_inc_dir, tk_lib = result
-- module.include_dirs.extend([tcl_inc_dir, tk_inc_dir])
-- module.library_dirs.extend([tcl_lib_dir, tk_lib_dir])
-- module.libraries.extend([tcl_lib, tk_lib])
-+ #module.include_dirs.extend([tcl_inc_dir, tk_inc_dir])
-+ #module.library_dirs.extend([tcl_lib_dir, tk_lib_dir])
-+ #module.libraries.extend([tcl_lib, tk_lib])
-+ module.include_dirs.extend(["/usr/local/include/tcl8.5", "/usr/local/include/tk8.5"])
-+ module.library_dirs.extend(["/usr/local/lib/tcl8.5", "/usr/local/lib/tk8.5"])
-+ module.libraries.extend(['tk' + "85", 'tcl' + "85"])
-
- return message
-