diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2009-06-18 15:51:47 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2009-06-18 15:51:47 +0000 |
commit | f226588423567321546c3e482a6fb8a587337ee7 (patch) | |
tree | b974931c197bcc127b6cb68bd3440338f0437430 /devel/py-tables/files/patch-setup.py | |
parent | - Fix plist. (diff) |
- update 2.1.1
- fix build with custom LOCALBASE [1]
Submitted by: maintainer
Reported by: QATty [1]
Notes
Notes:
svn path=/head/; revision=236228
Diffstat (limited to 'devel/py-tables/files/patch-setup.py')
-rw-r--r-- | devel/py-tables/files/patch-setup.py | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/devel/py-tables/files/patch-setup.py b/devel/py-tables/files/patch-setup.py index 2fd91c8c8b84..a52666a2ee26 100644 --- a/devel/py-tables/files/patch-setup.py +++ b/devel/py-tables/files/patch-setup.py @@ -1,6 +1,6 @@ ---- setup.py.orig Wed Jul 26 23:43:50 2006 -+++ setup.py Wed Jul 26 23:44:46 2006 -@@ -72,8 +72,8 @@ +--- setup.py.orig 2009-06-18 17:57:21.000000000 +0800 ++++ setup.py 2009-06-18 18:02:43.000000000 +0800 +@@ -81,8 +81,8 @@ debug = '--debug' in sys.argv # Global variables @@ -9,5 +9,18 @@ +lib_dirs = ['%%LOCALBASE%%/lib'] +inc_dirs = ['%%LOCALBASE%%/include'] optional_libs = [] + data_files = [] # list of data files to add to packages (mainly for DLL's) + +@@ -91,10 +91,10 @@ + default_runtime_dirs = None + + if os.name == 'posix': +- default_header_dirs = ['/usr/include', '/usr/local/include'] ++ default_header_dirs = ['/usr/include', '/usr/local/include','%%LOCALBASE%%/include'] + default_library_dirs = [ + os.path.join(_tree, _arch) +- for _tree in ('/', '/usr', '/usr/local') ++ for _tree in ('/', '/usr', '/usr/local','%%LOCALBASE%%') + for _arch in ('lib64', 'lib') ] + default_runtime_dirs = default_library_dirs - default_header_dirs = None |