libraries/ogre: Updated for version 1.9.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Roberto Metere 2014-11-12 08:19:36 +07:00 committed by Willy Sudiarto Raharjo
parent a548727b29
commit 9e5935df98
3 changed files with 14 additions and 13 deletions

View file

@ -29,6 +29,6 @@ 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 are zziplib, FreeImage, tbb, cppunit and ois
Optional dependencies available at SlackBuilds.org: zziplib, FreeImage, tbb, cppunit, ois
Optional dependencies NOT (yet) available at SBo: cg, opengles, POCO
Optional dependencies NOT (yet) available at SlackBuilds.org: cg, opengles, POCO

View file

@ -25,11 +25,12 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=ogre
VERSION=${VERSION:-1.8.1}
VERSION=${VERSION:-1.9}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
SRCNAM="${PRGNAM}_src_v${VERSION//./-}"
SRCNAM="sinbad-ogre-dd4dd5572adc" # This is just temporary
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@ -86,15 +87,15 @@ tar xvf $CWD/$SRCNAM.tar.bz2
cd $SRCNAM
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -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 {} \;
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -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_LIB_DIRECTORY=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 \
@ -116,7 +117,7 @@ cd build
make install DESTDIR=$PKG
cd -
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
find $PKG -print0 | xargs -0 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
@ -127,4 +128,4 @@ 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}
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}

View file

@ -1,8 +1,8 @@
PRGNAM="ogre"
VERSION="1.8.1"
VERSION="1.9"
HOMEPAGE="http://www.ogre3d.org/"
DOWNLOAD="https://sourceforge.net/projects/ogre/files/ogre/1.8/1.8.1/ogre_src_v1-8-1.tar.bz2"
MD5SUM="b85e3dcf370a46b3a8624d4fdd722d39"
DOWNLOAD="https://bitbucket.org/sinbad/ogre/get/v1-9.tar.bz2"
MD5SUM="9f3a9a22217eb411cac7778ccac6f796"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""