freebsd-ports/graphics/yafray/files/patch-freebsd-settings.py
Rong-En Fan 31e7820a14 - Update to 0.0.9
- Switch to scons

PR:		ports/104191
Submitted by:	David Yeske<dyeske at yahoo.com> (maintainer)
2006-10-09 12:25:08 +00:00

32 lines
1.1 KiB
Python

--- 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()