From b041f76bb1af5de565c8ffc7085c46bb16a0d2bf Mon Sep 17 00:00:00 2001 From: Pietro Cerutti Date: Mon, 3 Jun 2013 15:35:22 +0000 Subject: - 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 --- math/py-matplotlib/files/patch-setupext.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 math/py-matplotlib/files/patch-setupext.py (limited to 'math/py-matplotlib/files/patch-setupext.py') 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 - -- cgit v1.2.3