Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (1b1749cf4a761907f1a436e28d62202f2c856b35)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (1b1749cf4a761907f1a436e28d62202f2c856b35)
  • Date: Sat, 8 Dec 2007 16:47:08 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 4 +++
dev/null |binary
graphics-libs/ilmbase/DETAILS | 23 ++++++++++++++++++
graphics-libs/ilmbase/HISTORY | 2 +
graphics/blender/BUILD | 48
++++++++++++++++++++++----------------
graphics/blender/CONFIGURE | 5 ++-
graphics/blender/DEPENDS | 43 +++++++++++++++-------------------
graphics/blender/DETAILS | 4 +--
graphics/blender/FINAL | 2 -
graphics/blender/HISTORY | 10 +++++++
graphics/blender/INSTALL | 2 -
graphics/blender/PRE_BUILD | 2 -
graphics/blender/blender48x48.png |binary
graphics/openexr/BUILD | 10 +++++++
graphics/openexr/CONFIGURE | 2 +
graphics/openexr/DEPENDS | 4 ++-
graphics/openexr/DETAILS | 24 +++++++------------
graphics/openexr/HISTORY | 6 ++++
graphics/openexr/openexr.gpg | 0
graphics/yafray/BUILD | 5 +++
graphics/yafray/DEPENDS | 8 +++---
graphics/yafray/DETAILS | 4 +--
graphics/yafray/HISTORY | 4 +++
graphics/yafray/INSTALL | 35 ---------------------------
openexr.gpg |binary
25 files changed, 139 insertions(+), 108 deletions(-)

New commits:
commit 826c15567c29678197926d62e4cd01fa8d71d0ed
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

blender: lots of fixes, added new cool 48x48 icon, ode opt dep, removed
useless copies in share/.blender, fixed message color, fixed openal <->
freealut dep

commit d773a8a77f1d6a06ea2582e89eaae5ffecb86be5
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

yafray: fixed to be useable with blender

commit e9f35253f5c17a8d66c30ffca1c485bb0a5c66d7
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

openexr: updated to 1.6.1 + cleaned up, moved gpg key to root cause
ilmbase uses it too

commit f28f4513c46af335f4f373594e96800135dd76a7
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

ilmbase: new spell, high dynamic-range (HDR) image file format library
and tools

diff --git a/ChangeLog b/ChangeLog
index 1b96318..4793df7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-12-09 Vlad Glagolev <stealth AT sourcemage.org>
+ * graphics-libs/ilmbase: new spell, high dynamic-range (HDR)
+ image file format library and tools
+
2007-12-08 Treeve Jelbert <treeve AT sourcemage.org>
* libs/jbigkit: new spell: compression library

diff --git a/graphics-libs/ilmbase/DETAILS b/graphics-libs/ilmbase/DETAILS
new file mode 100755
index 0000000..c9aa461
--- /dev/null
+++ b/graphics-libs/ilmbase/DETAILS
@@ -0,0 +1,23 @@
+ SPELL=ilmbase
+ VERSION=1.0.1
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE2=$SOURCE.sig
+ SOURCE_URL[0]=http://download.savannah.nongnu.org/releases/openexr/$SOURCE
+ SOURCE2_URL[0]=$SOURCE_URL.sig
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ WEB_SITE=http://www.openexr.com/
+ SOURCE_GPG=openexr.gpg:$SOURCE2:UPSTREAM_KEY
+ LICENSE[0]=http://www.ilm.com/opensource/ilm-bsd-lic.html
+ ENTERED=20071208
+ SHORT="High dynamic-range (HDR) image file format library and
tools"
+cat << EOF
+Half is a class that encapsulates our 16-bit floating-point format.
+
+IlmThread is a thread abstraction library for use with OpenEXR and other
+software packages. It currently supports pthreads and Windows threads.
+
+Imath implements 2D and 3D vectors, 3x3 and 4x4 matrices, quaternions and
+other useful 2D and 3D math functions.
+
+Iex is an exception-handling library.
+EOF
diff --git a/graphics-libs/ilmbase/HISTORY b/graphics-libs/ilmbase/HISTORY
new file mode 100644
index 0000000..1a6415b
--- /dev/null
+++ b/graphics-libs/ilmbase/HISTORY
@@ -0,0 +1,2 @@
+2007-12-08 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: spell created
diff --git a/graphics/blender/BUILD b/graphics/blender/BUILD
index 474ae2c..fe8fcc0 100755
--- a/graphics/blender/BUILD
+++ b/graphics/blender/BUILD
@@ -1,28 +1,38 @@
-if [ $OPENAL == y ]; then
- USE_OPENAL="WITH_BF_OPENAL=1"
+if [[ $OPENAL == y ]]; then
+ USE_OPENAL="WITH_BF_OPENAL=1"
else
- USE_OPENAL="WITH_BF_OPENAL=0"
-fi &&
+ USE_OPENAL="WITH_BF_OPENAL=0"
+fi &&

-if [ $OPENEXR == y ]; then
- USE_OPENEXR="WITH_BF_OPENEXR=1"
+if [[ $OPENEXR == y ]]; then
+ USE_OPENEXR="WITH_BF_OPENEXR=1"
else
- USE_OPENEXR="WITH_BF_OPENEXR=0"
-fi &&
-if [ $FFMPEG == y ]; then
- USE_FFMPEG="WITH_BF_FFMPEG=1"
+ USE_OPENEXR="WITH_BF_OPENEXR=0"
+fi &&
+
+if [[ $ODE == y ]]; then
+ sedit "s:LIBDIR + '/ode':\'$INSTALL_ROOT/usr\':" config/linux2-config.py &&
+ USE_ODE="WITH_BF_ODE=1"
+else
+ USE_ODE="WITH_BF_ODE=0"
+fi &&
+
+if [[ $FFMPEG == y ]]; then
+ USE_FFMPEG="WITH_BF_FFMPEG=1"
else
- USE_FFMPEG="WITH_BF_FFMPEG=0"
-fi &&
+ USE_FFMPEG="WITH_BF_FFMPEG=0"
+fi &&

scons \
- $USE_OPENAL \
- $USE_OPENEXR \
- $USE_FFMPEG \
- WITH_BF_INTERNATIONAL=1 \
- WITH_BF_PLAYER=1 \
- WITH_BF_GAMEENGINE=1 \
- BF_INSTALLDIR=$SOURCE_DIRECTORY/install &&
+ $USE_OPENAL \
+ $USE_OPENEXR \
+ $USE_ODE \
+ $USE_FFMPEG \
+ WITH_BF_INTERNATIONAL=1 \
+ WITH_BF_PLAYER=1 \
+ WITH_BF_GAMEENGINE=1 \
+ BF_INSTALLDIR=$SOURCE_DIRECTORY/install &&
+
# Do not build outside the default tree because of a bug in makesdna
compiling
# BF_BUILDDIR=$SOURCE_DIRECTORY/build

diff --git a/graphics/blender/CONFIGURE b/graphics/blender/CONFIGURE
index b8a3c6c..ad434c6 100755
--- a/graphics/blender/CONFIGURE
+++ b/graphics/blender/CONFIGURE
@@ -1,3 +1,4 @@
-config_query OPENAL "Use blender audio ability (openal) ?" y &&
-config_query OPENEXR "Enable High Dynamic Range graphics (openexr)" y &&
+config_query OPENAL "Use blender audio ability (freealut with openal) ?" y &&
+config_query OPENEXR "Enable High Dynamic Range graphics (openexr)?" y &&
+config_query ODE "Enable Open Dynamics Engine support (ode) ?" y &&
config_query FFMPEG "Use ffmpeg as a dependency?" y
diff --git a/graphics/blender/DEPENDS b/graphics/blender/DEPENDS
index 762088d..f53bc8b 100755
--- a/graphics/blender/DEPENDS
+++ b/graphics/blender/DEPENDS
@@ -1,28 +1,25 @@
-depends scons && #for building it.
-depends sdl &&
-depends GLUT &&
-depends zlib &&
-depends python &&
-depends jpeg &&
+depends python &&
+depends scons &&
+depends sdl &&
+depends GLUT &&
+depends zlib &&
+depends jpeg &&

-if [ "$OPENAL" == "y" ]; then
- depends openal
-fi &&
+if [[ $OPENAL == y ]]; then
+ depends freealut
+fi &&

-if [ "$OPENEXR" == "y" ]; then
- depends openexr
-fi &&
+if [[ $OPENEXR == y ]]; then
+ depends openexr
+fi &&

-if [ "$FFMPEG" == "y" ]; then
- depends LIBAVCODEC
-fi &&
+if [[ $ODE == y ]]; then
+ depends ode
+fi &&

-optional_depends libpng \
- "" \
- "" \
- "for PNG file support" &&
+if [[ $FFMPEG == y ]]; then
+ depends LIBAVCODEC
+fi &&

-optional_depends yafray \
- "" \
- "" \
- "for Yafray raytracing"
+optional_depends libpng "" "" "for PNG file support" &&
+optional_depends yafray "" "" "for Yafray raytracing"
diff --git a/graphics/blender/DETAILS b/graphics/blender/DETAILS
index 9c72a20..d4c9c74 100755
--- a/graphics/blender/DETAILS
+++ b/graphics/blender/DETAILS
@@ -5,11 +5,11 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=http://download.blender.org/source/$SOURCE
SOURCE_URL[1]=http://mirror.cs.umn.edu/blender.org/source/$SOURCE
SOURCE_URL[2]=http://public.planetmirror.com/pub/blender/source/$SOURCE
-#
SOURCE_HASH=sha512:2cbb34c90ab1ac108c0530610fa254d3b2857cddda06aecdc89ab9b627aade8a09cb183f44a203889914baeec1d6b94fce385499364ae7cfd08b16cfa859aac0
- SOURCE_GPG="gurus.gpg:$SOURCE.sig:UPSTREAM_HASH"
+ SOURCE_GPG=gurus.gpg:$SOURCE.sig:UPSTREAM_HASH
LICENSE[0]=GPL
KEYWORDS="graphics"
WEB_SITE=http://www.blender.org/
+ PATCHLEVEL=1
ENTERED=20021018
SHORT="Opensource 3d modelling/animation tool"
cat << EOF
diff --git a/graphics/blender/FINAL b/graphics/blender/FINAL
index aea11b8..5d53393 100755
--- a/graphics/blender/FINAL
+++ b/graphics/blender/FINAL
@@ -8,4 +8,4 @@ message "${PROBLEM_COLOR}Please note: Users of${SPELL_COLOR}
blender" \
"${PROBLEM_COLOR}should either copy /usr/share/blender/.blender" &&
message "into their homedirectory or adjust the file paths from within" \
"${SPELL_COLOR}blender${PROBLEM_COLOR} to use" &&
-message "all the features."
+message "all the features.${DEFAULT_COLOR}"
diff --git a/graphics/blender/HISTORY b/graphics/blender/HISTORY
index 224faec..193af03 100644
--- a/graphics/blender/HISTORY
+++ b/graphics/blender/HISTORY
@@ -1,3 +1,12 @@
+2007-12-09 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: cleaned up, PATCHLEVEL++
+ * BUILD, CONFIGURE, DEPENDS: cleaned up, added ode as opt dep,
+ fixed openal dep: openal <-> freealut (blender is
+ uncompileable with the only openal)
+ * INSTALL: removed useless stuff for .blender dir,
+ added new cool 48x48 icon
+ * FINAL: fixed message color
+
2007-09-27 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 2.45
Verified hash against blender-2.45.tar.gz.md5sum
@@ -212,4 +221,3 @@

2002-10-18 Arwed v. Merkatz <v.merkatz AT gmx.net>
* Created this spell
-
diff --git a/graphics/blender/INSTALL b/graphics/blender/INSTALL
index a6da702..07e0a24 100755
--- a/graphics/blender/INSTALL
+++ b/graphics/blender/INSTALL
@@ -11,8 +11,6 @@ install -m 644
${SOURCE_DIRECTORY}/install/linux2/plugins/sequence/*.so \
${INSTALL_ROOT}/usr/lib/blender/plugins/sequence &&
install -m 644 ${SOURCE_DIRECTORY}/install/linux2/plugins/texture/*.so \
${INSTALL_ROOT}/usr/lib/blender/plugins/texture &&
-cp -R ${SOURCE_DIRECTORY}/install/.blender \
- ${INSTALL_ROOT}/usr/share/blender &&
cp -a ${SOURCE_DIRECTORY}/release/scripts/bpydata \
${INSTALL_ROOT}/usr/share/blender &&
cp -a ${SOURCE_DIRECTORY}/release/scripts \
diff --git a/graphics/blender/PRE_BUILD b/graphics/blender/PRE_BUILD
index d0431e1..fbb00ef 100755
--- a/graphics/blender/PRE_BUILD
+++ b/graphics/blender/PRE_BUILD
@@ -1,7 +1,7 @@
default_pre_build &&
# Set Python version to the installed version, not hardcoded to 2.4
# Bug #13418
-sedit "s:2.4:$(installed_version python):" \
+sedit "s:2.4:$(installed_version python):" \
$SOURCE_DIRECTORY/config/linux2-config.py &&

cd $SOURCE_DIRECTORY &&
diff --git a/graphics/blender/blender48x48.png
b/graphics/blender/blender48x48.png
index 2556e23..1eec612 100644
Binary files a/graphics/blender/blender48x48.png and
b/graphics/blender/blender48x48.png differ
diff --git a/graphics/openexr/BUILD b/graphics/openexr/BUILD
index d4eb172..40ce9d7 100755
--- a/graphics/openexr/BUILD
+++ b/graphics/openexr/BUILD
@@ -1 +1,9 @@
-PTHREAD_LIBS='-lpthread' default_build
+if [[ $EXAMPLE == y ]]; then
+ OPTS="$OPTS --enable-imfexamples"
+fi &&
+
+if [[ $RESTEST == y ]]; then
+ OPTS="$OPTS --enable-imffuzztest"
+fi &&
+
+PTHREAD_LIBS="-lpthread" default_build
diff --git a/graphics/openexr/CONFIGURE b/graphics/openexr/CONFIGURE
new file mode 100755
index 0000000..30ec664
--- /dev/null
+++ b/graphics/openexr/CONFIGURE
@@ -0,0 +1,2 @@
+config_query EXAMPLE "Build IlmImf example program?" n &&
+config_query RESTEST "Build IlmImf damaged input resilience test?" n
diff --git a/graphics/openexr/DEPENDS b/graphics/openexr/DEPENDS
index 31efd9b..4b9bd31 100755
--- a/graphics/openexr/DEPENDS
+++ b/graphics/openexr/DEPENDS
@@ -1 +1,3 @@
-optional_depends fltk "" "" "to build 'exrdisplay' image viewer"
+depends ilmbase &&
+
+optional_depends fltk "" "" "to build 'exrdisplay' image viewer"
diff --git a/graphics/openexr/DETAILS b/graphics/openexr/DETAILS
index 117182f..9763630 100755
--- a/graphics/openexr/DETAILS
+++ b/graphics/openexr/DETAILS
@@ -1,28 +1,22 @@
SPELL=openexr
- VERSION=1.4.0a
+ VERSION=1.6.1
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE2=$SOURCE.sig
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-${VERSION%a}
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=http://savannah.nongnu.org/download/$SPELL/$SOURCE
- SOURCE2_URL[0]=http://savannah.nongnu.org/download/$SPELL/$SOURCE2
+ SOURCE2_URL[0]=$SOURCE_URL.sig
SOURCE_URL[1]=http://www.openexr.com/downloads/$SOURCE
- SOURCE_GPG="openexr.gpg:${SOURCE}.sig:UPSTREAM_KEY"
- SOURCE2_IGNORE=signature
+ SOURCE_GPG=openexr.gpg:$SOURCE2:UPSTREAM_KEY
WEB_SITE=http://www.openexr.com/
ENTERED=20030123
- PATCHLEVEL=2
LICENSE[0]=http://www.ilm.com/opensource/ilm-bsd-lic.html
KEYWORDS="graphics"
SHORT="High dynamic-range (HDR) image file format"
cat << EOF
-OpenEXR is a high dynamic-range (HDR) image file format developed by
-Industrial Light & Magic for use in computer imaging applications.
+OpenEXR is a high dynamic-range (HDR) image file format developed by
Industrial
+Light & Magic for use in computer imaging applications.

-OpenEXR has already been used by ILM on 4 major motion pictures -- Harry
-Potter and the Sorcerer's Stone, Men in Black II, Gangs of New York, and
-Signs -- and is also being used on several other movies currently in
-production.
-
-some sample images at:
-http://savannah.nongnu.org/download/openexr/OpenEXR-images.pkg/1.0/OpenEXR-images.tar.gz
(15mb)
+OpenEXR has already been used by ILM on 4 major motion pictures -- Harry
Potter
+and the Sorcerer's Stone, Men in Black II, Gangs of New York, and Signs --
+and is also being used on several other movies currently in production.
EOF
diff --git a/graphics/openexr/HISTORY b/graphics/openexr/HISTORY
index 018f78b..21dee38 100644
--- a/graphics/openexr/HISTORY
+++ b/graphics/openexr/HISTORY
@@ -1,3 +1,9 @@
+2007-12-08 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: Fixed SOURCE_URL[1]
+ converted to upstream signature checking
+ fixed long description wrap
+ updated spell to 1.6.1
+
2006-10-04 Juuso Alasuutari <iuso AT sourcemage.org>
* BUILD: Added, set PTHREAD_LIBS='-lpthread' to fix broken
libpthread conftest.
diff --git a/graphics/openexr/openexr.gpg b/graphics/openexr/openexr.gpg
deleted file mode 100644
index fa74678..0000000
Binary files a/graphics/openexr/openexr.gpg and /dev/null differ
diff --git a/graphics/yafray/BUILD b/graphics/yafray/BUILD
index 5f59954..63e10c6 100755
--- a/graphics/yafray/BUILD
+++ b/graphics/yafray/BUILD
@@ -1,4 +1,9 @@
+for i in SConstruct linux-settings.py; do
+ sedit "s:/usr/local:/usr:" $i
+done &&
+
#prevent .sconsign files from being created everywhere.
sedit "/SConscript/a\
SConsignFile()" SConstruct &&
+
scons
diff --git a/graphics/yafray/DEPENDS b/graphics/yafray/DEPENDS
index 79e1966..4b1a6de 100755
--- a/graphics/yafray/DEPENDS
+++ b/graphics/yafray/DEPENDS
@@ -1,4 +1,4 @@
-depends g++ &&
-depends scons &&
-depends zlib &&
-depends jpeg
+depends g++ &&
+depends scons &&
+depends zlib &&
+depends jpeg
diff --git a/graphics/yafray/DETAILS b/graphics/yafray/DETAILS
index aa8713e..9aaa7c9 100755
--- a/graphics/yafray/DETAILS
+++ b/graphics/yafray/DETAILS
@@ -2,14 +2,14 @@
VERSION=0.0.9
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL
-#SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=http://www.yafray.org/sec/2/downloads/$SOURCE

SOURCE_HASH=sha512:4c686d4431aef60810e7027d87f9c2b51d62391042b9d4a37d31c01ba8eca5e10796c83fd72b471d9978ae2ab314104294ea34cfe7b7b66702ac6b93983565af
WEB_SITE=http://www.yafray.org/
ENTERED=20030117
LICENSE[0]=LGPL
+ PATCHLEVEL=1
KEYWORDS="graphics"
SHORT="Yet Another Free RAYtracer"
cat << EOF
-Yet Another Free RAYtracer
+This is an advanced raytracer that uses XML.
EOF
diff --git a/graphics/yafray/HISTORY b/graphics/yafray/HISTORY
index 6a57f7d..b3b5d81 100644
--- a/graphics/yafray/HISTORY
+++ b/graphics/yafray/HISTORY
@@ -1,3 +1,7 @@
+2007-12-08 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS: cleaned up, PATCHLEVEL++
+ * BUILD, INSTALL: made it workable in blender
+
2007-03-03 Jeremy Blosser <jblosser-smgl AT firinn.org>
* INSTALL: Replace bad TRACK_ROOT usage (automated).

diff --git a/graphics/yafray/INSTALL b/graphics/yafray/INSTALL
index 562cd80..9f0c0eb 100755
--- a/graphics/yafray/INSTALL
+++ b/graphics/yafray/INSTALL
@@ -1,34 +1 @@
-#scons install
-install -m 755 src/yafray ${INSTALL_ROOT}/usr/bin/yafray &&
-install -m 644 src/gram.yafray ${INSTALL_ROOT}/etc/gram.yafray
&&
-install -m 644 src/yafraycore/libyafraycore.so
${INSTALL_ROOT}/usr/lib/libyafraycore.so &&
-install -m 644 src/interface/libyafrayplugin.so
${INSTALL_ROOT}/usr/lib/libyafrayplugin.so &&
-install -d -m 644 ${INSTALL_ROOT}/usr/lib/yafray &&
-install -m 644 src/lights/libarealight.so
${INSTALL_ROOT}/usr/lib/yafray/libarealight.so &&
-install -m 644 src/shaders/libbasicblocks.so
${INSTALL_ROOT}/usr/lib/yafray/libbasicblocks.so &&
-install -m 644 src/shaders/libbasicshaders.so
${INSTALL_ROOT}/usr/lib/yafray/libbasicshaders.so &&
-install -m 644 src/shaders/libblendershader.so
${INSTALL_ROOT}/usr/lib/yafray/libblendershader.so &&
-install -m 644 src/lights/libglobalphotonlight.so
${INSTALL_ROOT}/usr/lib/yafray/libglobalphotonlight.so &&
-install -m 644 src/backgrounds/libhdri.so
${INSTALL_ROOT}/usr/lib/yafray/libhdri.so &&
-install -m 644 src/lights/libhemilight.so
${INSTALL_ROOT}/usr/lib/yafray/libhemilight.so &&
-install -m 644 src/shaders/libmixblocks.so
${INSTALL_ROOT}/usr/lib/yafray/libmixblocks.so &&
-install -m 644 src/lights/libpathlight.so
${INSTALL_ROOT}/usr/lib/yafray/libpathlight.so &&
-install -m 644 src/lights/libphotonlight.so
${INSTALL_ROOT}/usr/lib/yafray/libphotonlight.so &&
-install -m 644 src/lights/libpointlight.so
${INSTALL_ROOT}/usr/lib/yafray/libpointlight.so &&
-install -m 644 src/backgrounds/libshaderback.so
${INSTALL_ROOT}/usr/lib/yafray/libshaderback.so &&
-install -m 644 src/lights/libsoftlight.so
${INSTALL_ROOT}/usr/lib/yafray/libsoftlight.so &&
-install -m 644 src/lights/libspherelight.so
${INSTALL_ROOT}/usr/lib/yafray/libspherelight.so &&
-install -m 644 src/lights/libspotlight.so
${INSTALL_ROOT}/usr/lib/yafray/libspotlight.so &&
-install -m 644 src/shaders/libsss.so
${INSTALL_ROOT}/usr/lib/yafray/libsss.so &&
-install -m 644 src/lights/libsunlight.so
${INSTALL_ROOT}/usr/lib/yafray/libsunlight.so &&
-install -m 644 src/backgrounds/libsunsky.so
${INSTALL_ROOT}/usr/lib/yafray/libsunsky.so &&
-install -d -m 755 ${INSTALL_ROOT}/usr/share &&
-install -d -m 755 ${INSTALL_ROOT}/usr/share/doc &&
-install -d -m 755 ${INSTALL_ROOT}/usr/share/doc/yafray &&
-install -m 644 COPYING ${INSTALL_ROOT}/usr/share/doc/yafray/COPYING
&&
-install -m 644 LICENSE ${INSTALL_ROOT}/usr/share/doc/yafray/LICENSE
&&
-install -m 644 NEWS ${INSTALL_ROOT}/usr/share/doc/yafray/NEWS
&&
-install -m 644 README ${INSTALL_ROOT}/usr/share/doc/yafray/README
&&
-install -d -m 755 ${INSTALL_ROOT}/usr/share/doc/yafray/doc
&&
-install -m 644 doc/doc.html
${INSTALL_ROOT}/usr/share/doc/yafray/doc/doc.html &&
-install -m 644 doc/modelo_noname.dia
${INSTALL_ROOT}/usr/share/doc/yafray/doc/modelo_noname.dia
+scons install
diff --git a/openexr.gpg b/openexr.gpg
new file mode 100644
index 0000000..fa74678
Binary files /dev/null and b/openexr.gpg differ




Archive powered by MHonArc 2.6.24.

Top of Page