mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
graphics/yafaray-blender: Added (export from Blender to Yafaray)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
bfe4e351fb
commit
da87ad250c
4 changed files with 112 additions and 0 deletions
10
graphics/yafaray-blender/README
Normal file
10
graphics/yafaray-blender/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
This package lets you export your scene from within Blender to Yafaray.
|
||||
|
||||
This script builds the Blender plugin, which is automatically installed
|
||||
in /usr/share/yafaray/blender.
|
||||
A link to the main plugin file is put in /opt/blender/script, but you can
|
||||
change this editing the BLENDER_PLUGIN_DIR variable inside the script.
|
||||
|
||||
Requires the following:
|
||||
- From Slackbuilds.org : yafaray (built with QT4 support)
|
||||
- From Slackware install disks : Python, QT4
|
19
graphics/yafaray-blender/slack-desc
Normal file
19
graphics/yafaray-blender/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|' on
|
||||
# the right side marks the last column you can put a character in. You must make
|
||||
# exactly 11 lines for the formatting to be correct. It's also customary to
|
||||
# leave one space after the ':'.
|
||||
|
||||
|----handy-ruler--------------------------------------------------------|
|
||||
yafaray-blender: YafaRay-Blender (export your scene from within Blender to Yafaray)
|
||||
yafaray-blender:
|
||||
yafaray-blender: This package lets you export your scene from within Blender to Yafaray
|
||||
yafaray-blender:
|
||||
yafaray-blender: Homepage: http://www.yafaray.org
|
||||
yafaray-blender:
|
||||
yafaray-blender:
|
||||
yafaray-blender:
|
||||
yafaray-blender:
|
||||
yafaray-blender:
|
||||
yafaray-blender:
|
73
graphics/yafaray-blender/yafaray-blender.SlackBuild
Normal file
73
graphics/yafaray-blender/yafaray-blender.SlackBuild
Normal file
|
@ -0,0 +1,73 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for yafaray
|
||||
|
||||
# Copyright (c) 2009 Alan Alberghini <414N@slacky.it>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for
|
||||
# any purpose with or without fee is hereby granted, provided that
|
||||
# the above copyright notice and this permission notice appear in all
|
||||
# copies.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED AS IS'' AND ANY EXPRESSED OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
# IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
||||
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
||||
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
# SUCH DAMAGE.
|
||||
# -----------------------------------------------------------------------------
|
||||
#
|
||||
# Build history:
|
||||
#
|
||||
# 1 - Initial release.
|
||||
|
||||
PRGNAM=yafaray-blender
|
||||
VERSION=${VERSION:-0.1.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
ARCH=noarch
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
BLENDER_PLUGIN_DIR="/opt/blender/script"
|
||||
|
||||
set e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM
|
||||
unzip "$CWD/YafaRay-blender.${VERSION}.zip"
|
||||
cd $PRGNAM
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
mkdir -p ${PKG}/usr/share/yafaray/blender ${PKG}/${BLENDER_PLUGIN_DIR}
|
||||
cp -t ${PKG}/usr/share/yafaray/blender *.py
|
||||
|
||||
# This link is needed to install the plugin system-wide
|
||||
ln -sf /usr/share/yafaray/blender/yafaray_ui.py ${PKG}/${BLENDER_PLUGIN_DIR}
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
graphics/yafaray-blender/yafaray-blender.info
Normal file
10
graphics/yafaray-blender/yafaray-blender.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="yafaray-blender"
|
||||
VERSION="0.1.1"
|
||||
HOMEPAGE="http://www.yafaray.org"
|
||||
DOWNLOAD="http://static.yafaray.org/sources/YafaRay-blender.0.1.1.zip"
|
||||
MD5SUM="d7e7f86b9e90e7f960707ebaea1843ab"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Alan Alberghini"
|
||||
EMAIL="414N@slacky.it"
|
||||
APPROVED="dsomero"
|
Loading…
Reference in a new issue