summaryrefslogtreecommitdiff
path: root/math/py-python-fcl/files/patch-setup.py
diff options
context:
space:
mode:
authorDiane Bruce <db@FreeBSD.org>2020-03-25 12:44:50 +0000
committerDiane Bruce <db@FreeBSD.org>2020-03-25 12:44:50 +0000
commit0595d2c1ca0912584a731deffae05879c206871f (patch)
treef5a9476d5b83d3d0fa4c562e393a896d4835725d /math/py-python-fcl/files/patch-setup.py
parentdevel/gllvm: Update to 1.2.6 (diff)
rename to match portname
Notes
Notes: svn path=/head/; revision=529098
Diffstat (limited to 'math/py-python-fcl/files/patch-setup.py')
-rw-r--r--math/py-python-fcl/files/patch-setup.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/math/py-python-fcl/files/patch-setup.py b/math/py-python-fcl/files/patch-setup.py
new file mode 100644
index 000000000000..8d1b75c3a11b
--- /dev/null
+++ b/math/py-python-fcl/files/patch-setup.py
@@ -0,0 +1,33 @@
+--- setup.py.orig 2019-06-12 18:08:59 UTC
++++ setup.py
+@@ -18,12 +18,14 @@ platform_supported = False
+ for prefix in ['darwin', 'linux', 'bsd']:
+ if prefix in sys.platform:
+ platform_supported = True
+- include_dirs = ['/usr/include',
++ include_dirs = [ '/usr/include',
++ '/usr/local/include/fcl05',
+ '/usr/local/include',
+ '/usr/include/eigen3']
+ lib_dirs = ['/usr/lib',
+- '/usr/local/lib']
+-
++ '/usr/local/lib/',
++ '/usr/local/lib/']
++
+ if 'CPATH' in os.environ:
+ include_dirs += os.environ['CPATH'].split(':')
+ if 'LD_LIBRARY_PATH' in os.environ:
+@@ -78,9 +80,10 @@ setup(
+ include_dirs = include_dirs,
+ library_dirs = lib_dirs,
+ libraries=[
+- "fcl","octomap"
++ "fcl05","octomap"
+ ],
+ language="c++",
+- extra_compile_args = ["-std=c++11"]
++ extra_compile_args = ["-std=c++11"],
++ extra_link_args = ['-Wl,-rpath, '+'/usr/local/lib/fcl05']
+ )]
+ )