diff options
author | gahr <gahr@FreeBSD.org> | 2013-06-03 23:35:22 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2013-06-03 23:35:22 +0800 |
commit | 2d15c3e56a8e066cb12db2312ceb7d460ff52494 (patch) | |
tree | 6cf58eeaa5b9cd51643b33814cb4e07b52b9c554 /math/py-matplotlib | |
parent | edd005a2af5d0c7b7cca1811796d8126c0317bbe (diff) | |
download | freebsd-ports-gnome-2d15c3e56a8e066cb12db2312ceb7d460ff52494.tar.gz freebsd-ports-gnome-2d15c3e56a8e066cb12db2312ceb7d460ff52494.tar.zst freebsd-ports-gnome-2d15c3e56a8e066cb12db2312ceb7d460ff52494.zip |
- Fix build with Tcl/Tk 8.6 by letting the build system locate the Tcl/Tk
installation instead of hardcoding the paths.
Reported by: miwi (Tcl/Tk 8.6 exp-run late comers)
Approved by: portmgr
Diffstat (limited to 'math/py-matplotlib')
-rw-r--r-- | math/py-matplotlib/files/patch-setupext.py | 18 |
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 - |