[arch-commits] Commit in blender/repos (6 files)

Sven-Hendrik Haase svenstaro at nymeria.archlinux.org
Thu Jul 11 21:37:38 UTC 2013


    Date: Thursday, July 11, 2013 @ 23:37:38
  Author: svenstaro
Revision: 93899

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  blender/repos/community-staging-i686/
  blender/repos/community-staging-i686/PKGBUILD
    (from rev 93898, blender/trunk/PKGBUILD)
  blender/repos/community-staging-i686/blender.install
    (from rev 93898, blender/trunk/blender.install)
  blender/repos/community-staging-x86_64/
  blender/repos/community-staging-x86_64/PKGBUILD
    (from rev 93898, blender/trunk/PKGBUILD)
  blender/repos/community-staging-x86_64/blender.install
    (from rev 93898, blender/trunk/blender.install)

------------------------------------------+
 community-staging-i686/PKGBUILD          |   78 +++++++++++++++++++++++++++++
 community-staging-i686/blender.install   |   13 ++++
 community-staging-x86_64/PKGBUILD        |   78 +++++++++++++++++++++++++++++
 community-staging-x86_64/blender.install |   13 ++++
 4 files changed, 182 insertions(+)

Copied: blender/repos/community-staging-i686/PKGBUILD (from rev 93898, blender/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2013-07-11 21:37:38 UTC (rev 93899)
@@ -0,0 +1,78 @@
+# $Id$
+# Contributor: John Sowiak <john at archlinux.org>
+# Contributor: tobias <tobias at archlinux.org>
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+# Sometimes blender.org takes some time to release patch releases and because Arch users
+# are impatient, we sometimes need to build from svn directly.
+
+_svnrev=58181
+
+pkgname=blender
+pkgver=2.68
+[[ -n $_svnrev ]] && pkgver=2.68.$_svnrev
+pkgrel=1
+epoch=8
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.blender.org"
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils'
+         'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew'
+         'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada'
+         'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage')
+makedepends=('cmake' 'boost' 'cuda' 'subversion' 'mesa')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+install=blender.install
+if [[ -z $_svnrev ]]; then
+  source=(http://download.blender.org/source/$pkgname-$pkgver.tar.gz)
+  md5sums=('a1b6fc1bf7f95ae9d6508f94832042b7')
+else
+  source=("${pkgname}-${pkgver}::svn+https://svn.blender.org/svnroot/bf-blender/trunk/blender#revision=${_svnrev}")
+  true && md5sums=('SKIP')
+fi
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  mkdir build
+  cd build
+
+  [[ $CARCH == i686 ]] && ENABLESSE2="-DSUPPORT_SSE2_BUILD=OFF"
+  [[ $CARCH == i686 ]] && BUILDCUDA="OFF" || BUILDCUDA="ON"
+
+  cmake .. \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DWITH_INSTALL_PORTABLE=OFF \
+    -DWITH_PYTHON_INSTALL=OFF \
+    -DWITH_OPENCOLLADA=ON \
+    -DOPENIMAGEIO_ROOT_DIR=/usr \
+    -DWITH_GAMEENGINE=ON \
+    -DWITH_JACK=ON \
+    -DWITH_PLAYER=ON \
+    -DWITH_CODEC_FFMPEG=ON \
+    -DWITH_CODEC_SNDFILE=ON \
+    -DWITH_CYCLES=ON \
+    -DWITH_CYCLES_CUDA_BINARIES=$BUILDCUDA \
+    -DWITH_CYCLES_OSL=ON \
+    -DCUDA_TOOLKIT_ROOT_DIR=/opt/cuda/ \
+    -DWITH_FFTW3=ON \
+    -DWITH_MOD_OCEANSIM=ON \
+    -DPYTHON_VERSION=3.3 \
+    -DPYTHON_LIBPATH=/usr/lib \
+    -DPYTHON_LIBRARY=python3.3m \
+    -DPYTHON_INCLUDE_DIRS=/usr/include/python3.3m \
+    -DOPENJPEG_INCLUDE_DIR=/usr/include/openjpeg-1.5 \
+    $ENABLESSE2
+    # Remove the openjpeg line once blender accepts my patch
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make DESTDIR="${pkgdir}" install
+  python -m compileall "${pkgdir}/usr/share/blender"
+}

Copied: blender/repos/community-staging-i686/blender.install (from rev 93898, blender/trunk/blender.install)
===================================================================
--- community-staging-i686/blender.install	                        (rev 0)
+++ community-staging-i686/blender.install	2013-07-11 21:37:38 UTC (rev 93899)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+  update-mime-database usr/share/mime &> /dev/null
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: blender/repos/community-staging-x86_64/PKGBUILD (from rev 93898, blender/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2013-07-11 21:37:38 UTC (rev 93899)
@@ -0,0 +1,78 @@
+# $Id$
+# Contributor: John Sowiak <john at archlinux.org>
+# Contributor: tobias <tobias at archlinux.org>
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+# Sometimes blender.org takes some time to release patch releases and because Arch users
+# are impatient, we sometimes need to build from svn directly.
+
+_svnrev=58181
+
+pkgname=blender
+pkgver=2.68
+[[ -n $_svnrev ]] && pkgver=2.68.$_svnrev
+pkgrel=1
+epoch=8
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.blender.org"
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils'
+         'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew'
+         'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada'
+         'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage')
+makedepends=('cmake' 'boost' 'cuda' 'subversion' 'mesa')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+install=blender.install
+if [[ -z $_svnrev ]]; then
+  source=(http://download.blender.org/source/$pkgname-$pkgver.tar.gz)
+  md5sums=('a1b6fc1bf7f95ae9d6508f94832042b7')
+else
+  source=("${pkgname}-${pkgver}::svn+https://svn.blender.org/svnroot/bf-blender/trunk/blender#revision=${_svnrev}")
+  true && md5sums=('SKIP')
+fi
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  mkdir build
+  cd build
+
+  [[ $CARCH == i686 ]] && ENABLESSE2="-DSUPPORT_SSE2_BUILD=OFF"
+  [[ $CARCH == i686 ]] && BUILDCUDA="OFF" || BUILDCUDA="ON"
+
+  cmake .. \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DWITH_INSTALL_PORTABLE=OFF \
+    -DWITH_PYTHON_INSTALL=OFF \
+    -DWITH_OPENCOLLADA=ON \
+    -DOPENIMAGEIO_ROOT_DIR=/usr \
+    -DWITH_GAMEENGINE=ON \
+    -DWITH_JACK=ON \
+    -DWITH_PLAYER=ON \
+    -DWITH_CODEC_FFMPEG=ON \
+    -DWITH_CODEC_SNDFILE=ON \
+    -DWITH_CYCLES=ON \
+    -DWITH_CYCLES_CUDA_BINARIES=$BUILDCUDA \
+    -DWITH_CYCLES_OSL=ON \
+    -DCUDA_TOOLKIT_ROOT_DIR=/opt/cuda/ \
+    -DWITH_FFTW3=ON \
+    -DWITH_MOD_OCEANSIM=ON \
+    -DPYTHON_VERSION=3.3 \
+    -DPYTHON_LIBPATH=/usr/lib \
+    -DPYTHON_LIBRARY=python3.3m \
+    -DPYTHON_INCLUDE_DIRS=/usr/include/python3.3m \
+    -DOPENJPEG_INCLUDE_DIR=/usr/include/openjpeg-1.5 \
+    $ENABLESSE2
+    # Remove the openjpeg line once blender accepts my patch
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make DESTDIR="${pkgdir}" install
+  python -m compileall "${pkgdir}/usr/share/blender"
+}

Copied: blender/repos/community-staging-x86_64/blender.install (from rev 93898, blender/trunk/blender.install)
===================================================================
--- community-staging-x86_64/blender.install	                        (rev 0)
+++ community-staging-x86_64/blender.install	2013-07-11 21:37:38 UTC (rev 93899)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+  update-mime-database usr/share/mime &> /dev/null
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}




More information about the arch-commits mailing list