libraries/ogre: Added (Object-Oriented Graphics Rendering Engine)

Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
Roberto Metere 2012-04-29 20:53:25 -04:00 committed by Erik Hanson
parent 5496784ac9
commit 29be76243a
4 changed files with 193 additions and 0 deletions

34
libraries/ogre/README Normal file
View file

@ -0,0 +1,34 @@
OGRE (Object-Oriented Graphics Rendering Engine) is a scene-oriented,
flexible 3D engine written in C++ designed to make it easier and more
intuitive for developers to produce applications utilising
hardware-accelerated 3D graphics. The class library abstracts all
the details of using the underlying system libraries like Direct3D
and OpenGL and provides an interface based on world objects and
other intuitive classes.
SlackBuild of ogre is customizable with the following shell variables:
OGRE_BUILD_COMPONENT_PAGING
OGRE_BUILD_COMPONENT_PROPERTY
OGRE_BUILD_COMPONENT_RTSHADERS
OGRE_BUILD_COMPONENT_TERRAIN
OGRE_BUILD_PLUGIN_BSP
OGRE_BUILD_PLUGIN_PCZ
OGRE_BUILD_RENDERSYSTEM_GL
OGRE_BUILD_SAMPLES
OGRE_BUILD_TESTS
OGRE_BUILD_TOOLS
OGRE_INSTALL_DOCS
OGRE_STATIC
OGRE_CONFIG_THREADS
OGRE_CONFIG_THREAD_PROVIDER
OGRE_DEPENDENCIES_DIR
All the above can be ON/OFF except the last three definitions.
For example, in order to build samples too, launch from super user:
OGRE_BUILD_SAMPLES=ON ./ogre.SlackBuild
Optional dependencies available at SlackBuilds.org: zziplib, FreeImage, tbb, cppunit, ois
Optional dependencies NOT (yet) available at SlackBuilds.org: cg, opengles, POCO

View file

@ -0,0 +1,130 @@
#!/bin/sh
# Slackware build script for ogre
# Copyright (c) 2011, Written by Roberto Metere <roberto@metere.it>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS 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 COPYRIGHT
# OWNER OR 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.
PRGNAM=ogre
VERSION=${VERSION:-1.7.4}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
SRCNAM="${PRGNAM}_src_v${VERSION//./-}"
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
# Not really required
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
# cmake options
OGRE_BUILD_COMPONENT_PAGING=${OGRE_BUILD_COMPONENT_PAGING:-ON}
OGRE_BUILD_COMPONENT_PROPERTY=${OGRE_BUILD_COMPONENT_PROPERTY:-ON}
OGRE_BUILD_COMPONENT_RTSHADERS=${OGRE_BUILD_COMPONENT_RTSHADERS:-ON}
OGRE_BUILD_COMPONENT_TERRAIN=${OGRE_BUILD_COMPONENT_TERRAIN:-ON}
OGRE_BUILD_PLUGIN_BSP=${OGRE_BUILD_PLUGIN_BSP:-ON}
OGRE_BUILD_PLUGIN_PCZ=${OGRE_BUILD_PLUGIN_PCZ:-ON}
OGRE_BUILD_RENDERSYSTEM_GL=${OGRE_BUILD_RENDERSYSTEM_GL:-ON}
OGRE_BUILD_SAMPLES=${OGRE_BUILD_SAMPLES:-OFF}
OGRE_BUILD_TESTS=${OGRE_BUILD_TESTS:-OFF}
OGRE_BUILD_TOOLS=${OGRE_BUILD_TOOLS:-ON}
OGRE_CONFIG_THREADS=${OGRE_CONFIG_THREADS:-2}
OGRE_CONFIG_THREAD_PROVIDER=${OGRE_CONFIG_THREAD_PROVIDER:-boost}
OGRE_DEPENDENCIES_DIR=${OGRE_DEPENDENCIES_DIR:-}
OGRE_INSTALL_DOCS=${OGRE_INSTALL_DOCS:-ON}
OGRE_STATIC=${OGRE_STATIC:-OFF}
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $SRCNAM
tar xvf $CWD/$SRCNAM.tar.bz2
cd $SRCNAM
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 build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DOGRE_LIB_DIRECTORY=/usr/lib${LIBDIRSUFFIX} \
-DOGRE_BUILD_COMPONENT_PAGING=$OGRE_BUILD_COMPONENT_PAGING \
-DOGRE_BUILD_COMPONENT_PROPERTY=$OGRE_BUILD_COMPONENT_PROPERTY \
-DOGRE_BUILD_COMPONENT_RTSHADERS=$OGRE_BUILD_COMPONENT_RTSHADERS \
-DOGRE_BUILD_COMPONENT_TERRAIN=$OGRE_BUILD_COMPONENT_TERRAIN \
-DOGRE_BUILD_PLUGIN_BSP=$OGRE_BUILD_PLUGIN_BSP \
-DOGRE_BUILD_PLUGIN_PCZ=$OGRE_BUILD_PLUGIN_PCZ \
-DOGRE_BUILD_RENDERSYSTEM_GL=$OGRE_BUILD_RENDERSYSTEM_GL \
-DOGRE_BUILD_SAMPLES=$OGRE_BUILD_SAMPLES \
-DOGRE_INSTALL_SAMPLES=$OGRE_BUILD_SAMPLES \
-DOGRE_BUILD_TESTS=$OGRE_BUILD_TESTS \
-DOGRE_BUILD_TOOLS=$OGRE_BUILD_TOOLS \
-DOGRE_INSTALL_TOOLS=$OGRE_BUILD_TOOLS \
-DOGRE_CONFIG_THREADS=$OGRE_CONFIG_THREADS \
-DOGRE_CONFIG_THREAD_PROVIDER=$OGRE_CONFIG_THREAD_PROVIDER \
-DOGRE_DEPENDENCIES_DIR=$OGRE_DEPENDENCIES_DIR \
-DOGRE_STATIC=$OGRE_STATIC \
../
make
make install DESTDIR=$PKG
cd -
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS BUGS BuildingOgre.txt COPYING README $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
libraries/ogre/ogre.info Normal file
View file

@ -0,0 +1,10 @@
PRGNAM="ogre"
VERSION="1.7.4"
HOMEPAGE="http://www.ogre3d.org/"
DOWNLOAD="https://sourceforge.net/projects/ogre/files/ogre/1.7/ogre_src_v1-7-4.tar.bz2"
MD5SUM="654e8bd9bc178bdb32bcb21b077eab20"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Roberto Metere"
EMAIL="roberto@metere.it"
APPROVED="dsomero"

19
libraries/ogre/slack-desc Normal file
View 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------------------------------------------------------|
ogre: ogre (Object-Oriented Graphics Rendering Engine)
ogre:
ogre: OGRE is a scene-oriented, flexible 3D engine written in C++ designed
ogre: to make it easier and more intuitive for developers to produce
ogre: applications utilising hardware-accelerated 3D graphics.
ogre:
ogre: Homepage: http://www.ogre3d.org/
ogre:
ogre:
ogre:
ogre: