diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2009-04-28 21:27:54 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2009-04-28 21:27:54 +0000 |
commit | b6bb8c3d3a17625aa826094130b3d84530b6dae4 (patch) | |
tree | f2de4a4d4b2f5c3fcbd1ee2ea6cce6d571bfb5f7 /graphics/yafaray/files/patch-freebsd-settings.py | |
parent | - Fix PLIST (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_7_2_0'.release/7.2.0
Notes
Notes:
svn path=/head/; revision=232918
svn path=/tags/RELEASE_7_2_0/; revision=232919; tag=release/7.2.0
Diffstat (limited to 'graphics/yafaray/files/patch-freebsd-settings.py')
-rw-r--r-- | graphics/yafaray/files/patch-freebsd-settings.py | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/graphics/yafaray/files/patch-freebsd-settings.py b/graphics/yafaray/files/patch-freebsd-settings.py deleted file mode 100644 index 454943db3bb7..000000000000 --- a/graphics/yafaray/files/patch-freebsd-settings.py +++ /dev/null @@ -1,32 +0,0 @@ ---- freebsd-settings.py.orig Sat Sep 23 00:21:17 2006 -+++ freebsd-settings.py Sat Sep 23 00:21:29 2006 -@@ -10,6 +10,7 @@ - global prefix - prefix = args.get('prefix','/usr/local') - -+def get_include(args): return prefix+"/usr/local/include" - def get_libpath(args): return prefix+"/lib" - def get_pluginpath(args): return prefix+"/lib/yafray" - def get_binpath(args): return prefix+"/bin" -@@ -46,9 +47,9 @@ - class jpeg(globalinfo.library): - C_ID = 'JPEG' - -- def present(args): return os.path.exists("/usr/include/jpeglib.h") -- def get_include(args): return [] -- def get_libpath(args): return [] -+ def present(args): return os.path.exists("/usr/local/include/jpeglib.h") -+ def get_include(args): return ['/usr/local/include'] -+ def get_libpath(args): return ['/usr/local/lib'] - def get_libs(args): return ['jpeg'] - - class pthread(globalinfo.library): -@@ -73,7 +74,7 @@ - def present(args): return True - def get_include(args): return [] - def get_libpath(args): return [] -- def get_libs(args): return ['dl'] -+ def get_libs(args): return [''] - - def derive_shared_env(common_env): - return common_env.Copy() |