summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2004-08-08 14:35:15 +0000
committerLuca Barbato <lu_zero@gentoo.org>2004-08-08 14:35:15 +0000
commit794a30dd776ce19ebd309c8d51055bb04f7e9788 (patch)
treeaf41fb6ed815221c610e257b06c5a146218f90cd /media-gfx/yafray/files
parentVersion bumped. Closes 59551 (diff)
downloadhistorical-794a30dd776ce19ebd309c8d51055bb04f7e9788.tar.gz
historical-794a30dd776ce19ebd309c8d51055bb04f7e9788.tar.bz2
historical-794a30dd776ce19ebd309c8d51055bb04f7e9788.zip
New version
Diffstat (limited to 'media-gfx/yafray/files')
-rw-r--r--media-gfx/yafray/files/digest-yafray-0.0.71
-rw-r--r--media-gfx/yafray/files/yafray-0.0.7-scons.patch31
2 files changed, 32 insertions, 0 deletions
diff --git a/media-gfx/yafray/files/digest-yafray-0.0.7 b/media-gfx/yafray/files/digest-yafray-0.0.7
new file mode 100644
index 000000000000..0e1c27f55560
--- /dev/null
+++ b/media-gfx/yafray/files/digest-yafray-0.0.7
@@ -0,0 +1 @@
+MD5 680d81f097962ed4a6773dbf09202159 yafray-0.0.7.tar.gz 695231
diff --git a/media-gfx/yafray/files/yafray-0.0.7-scons.patch b/media-gfx/yafray/files/yafray-0.0.7-scons.patch
new file mode 100644
index 000000000000..14e97c4b2fe2
--- /dev/null
+++ b/media-gfx/yafray/files/yafray-0.0.7-scons.patch
@@ -0,0 +1,31 @@
+--- yafray-0.0.7.orig/SConstruct 2004-08-06 15:50:37.000000000 +0200
++++ yafray-0.0.7/SConstruct 2004-08-07 00:00:39.847093968 +0200
+@@ -80,7 +80,7 @@
+ if debug:
+ flags+=' -O3 -ffast-math -ggdb'
+ else:
+- flags+=' -O3 -ffast-math -fomit-frame-pointer'
++ flags+=' -O3 -ffast-math -fomit-frame-pointer -fsigned-char'
+ if debugdll:
+ flags+=' -DDEBUGDLL'
+ if arch!='':
+@@ -154,8 +154,9 @@
+
+ config.write("#endif\n");
+ config.close()
+-
++destdir=ARGUMENTS.get('destdir','')
+ prefix=ARGUMENTS.get('prefix','/usr/local')
++prefix=destdir+prefix
+
+ if sys.platform == 'darwin' :
+ if os.path.isdir('osxpak'):
+@@ -168,7 +169,7 @@
+ lib_path=prefix+"/lib"
+ plugin_path=prefix+"/lib/yafray"
+ bin_path=prefix+"/bin"
+- conf_path=prefix+"/etc"
++ conf_path=destdir+"/etc"
+ else:
+ cwd = os.getcwd()
+ prefix=ARGUMENTS.get('prefix',cwd + os.sep + 'win32pak' )