[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2020-04-27 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 27, 2020 @ 20:41:05
  Author: svenstaro
Revision: 621939

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 621938, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 621938, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  115 +++--
 ogre.install |6 +-
 2 files changed, 67 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-27 20:40:50 UTC (rev 621938)
+++ PKGBUILD2020-04-27 20:41:05 UTC (rev 621939)
@@ -1,51 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=ogre
-pkgver=1.12.6
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'git' 'mono')
-install=ogre.install
-replaces=('ogre-docs')
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
-
"git+https://github.com/ocornut/imgui.git#commit=688cf868ea83db6c2958dd6bf7a20d471d00940b;)
-optdepends=('cppunit: unit testing'
-'python: python bindings')
-sha512sums=('2d62f86a94b5b066abc53ecfb7d98381fd684c180c630b99b58cf486069d2407c6c9e2c35f2baf315ba9bd887d6f507c8cc6663a50c97c4ee63f454e33e0450d'
-'SKIP')
-
-prepare() {
-  mkdir ogre-${pkgver}/build
-
-  cp -r "${srcdir}"/imgui ogre-${pkgver}/Components/Overlay/src/
-}
-
-build() {
-  cd ogre-${pkgver}/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package() {
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR="${pkgdir}" install
-
-  mv "${pkgdir}"/usr/bin/SampleBrowser "${pkgdir}"/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 621938, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-27 20:41:05 UTC (rev 621939)
@@ -0,0 +1,64 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ogre
+pkgver=2.1
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'rapidjson'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 
'cppunit')
+install=ogre.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre-next/archive/${pkgver}.tar.gz;)
+optdepends=('python: python bindings')
+sha512sums=('9802e3bf20ddb09453524d1ddafa7a2083dfd0e609563f478fe31b087dd06d463f69800b9c6485cb3db92d98f282ef67ace3e272c1ef531e982ea9f719617fb5')
+
+prepare() {
+  mkdir ogre-next-${pkgver}/build
+}
+
+build() {
+  cd ogre-next-${pkgver}/build
+
+  cmake .. \
+-GNinja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_CONFIG_ENABLE_JSON=TRUE \
+-DOGRE_CONFIG_THREADS=1 \
+-DOGRE_CONFIG_THREAD_PROVIDER="std" \
+-DOGRE_BUILD_COMPONENT_PLANAR_REFLECTIONS=ON \
+-DOGRE_USE_BOOST=TRUE \
+-DOGRE_BUILD_TESTS=TRUE \
+-DOGRE_INSTALL_SAMPLES_SOURCE=TRUE
+
+  ninja
+  ninja OgreDoc
+  # All of these are broken
+  # -DOGRE_BUILD_COMPONENT_TERRAIN=ON \
+  # -DOGRE_BUILD_COMPONENT_VOLUME=ON \
+  # -DOGRE_BUILD_COMPONENT_PAGING=ON \
+  # -DOGRE_BUILD_COMPONENT_PROPERTY=ON \
+  # -DOGRE_BUILD_COMPONENT_RTSHADERSYSTEM=ON \
+  # -DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
+}
+
+check() {
+  cd ogre-next-${pkgver}/build
+
+  # Upstream pls
+  # ninja test
+}
+
+package() {
+  cd ogre-next-${pkgver}/build
+
+  DESTDIR="${pkgdir}" ninja install
+
+  mkdir -p "${pkgdir}"/opt/ogre/samples
+  mv "${pkgdir}"/usr/bin/Sample_* "${pkgdir}"/opt/ogre/samples
+  mv "${pkgdir}"/usr/bin/Test_* "${pkgdir}"/opt/ogre/samples
+  install -Dm644 ../Docs/License.html 
"${pkgdir}"/usr/share/licenses/${pkgname}/License.html
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: ogre.install
===
--- ogre.install2020-04-27 20:40:50 UTC (rev 621938)
+++ ogre.install2020-04-27 20:41:05 UTC (rev 621939)
@@ -1,3 +0,0 @@
-post_install() {
-echo "To view the OGRE samples just run OgreSampleBrowser"
-}

Copied: ogre/repos/community-x86_64/ogre.install (from rev 621938, 
ogre/trunk/ogre.install)

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2020-04-26 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, April 26, 2020 @ 20:43:58
  Author: svenstaro
Revision: 621672

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 621671, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 621671, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  102 -
 ogre.install |6 +--
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-26 20:43:48 UTC (rev 621671)
+++ PKGBUILD2020-04-26 20:43:58 UTC (rev 621672)
@@ -1,51 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=ogre
-pkgver=1.12.5
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'git' 'mono')
-install=ogre.install
-replaces=('ogre-docs')
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
-
"git+https://github.com/ocornut/imgui.git#commit=688cf868ea83db6c2958dd6bf7a20d471d00940b;)
-optdepends=('cppunit: unit testing'
-'python: python bindings')
-sha512sums=('c7037c6224a2c3eff9aa0c07455b5f2bec6c74e57a42de897df07088819f50d26931d9ca7b10d1685c4202bf86056bd153a33e65409019737a7d36cda046c607'
-'SKIP')
-
-prepare() {
-  mkdir ogre-${pkgver}/build
-
-  cp -r "${srcdir}"/imgui ogre-${pkgver}/Components/Overlay/src/
-}
-
-build() {
-  cd ogre-${pkgver}/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package() {
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR="${pkgdir}" install
-
-  mv "${pkgdir}"/usr/bin/SampleBrowser "${pkgdir}"/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 621671, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-26 20:43:58 UTC (rev 621672)
@@ -0,0 +1,51 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ogre
+pkgver=1.12.6
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'git' 'mono')
+install=ogre.install
+replaces=('ogre-docs')
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
+
"git+https://github.com/ocornut/imgui.git#commit=688cf868ea83db6c2958dd6bf7a20d471d00940b;)
+optdepends=('cppunit: unit testing'
+'python: python bindings')
+sha512sums=('2d62f86a94b5b066abc53ecfb7d98381fd684c180c630b99b58cf486069d2407c6c9e2c35f2baf315ba9bd887d6f507c8cc6663a50c97c4ee63f454e33e0450d'
+'SKIP')
+
+prepare() {
+  mkdir ogre-${pkgver}/build
+
+  cp -r "${srcdir}"/imgui ogre-${pkgver}/Components/Overlay/src/
+}
+
+build() {
+  cd ogre-${pkgver}/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package() {
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}"/usr/bin/SampleBrowser "${pkgdir}"/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: ogre.install
===
--- ogre.install2020-04-26 20:43:48 UTC (rev 621671)
+++ ogre.install2020-04-26 20:43:58 UTC (rev 621672)
@@ -1,3 +0,0 @@
-post_install() {
-echo "To view the OGRE samples just run OgreSampleBrowser"
-}

Copied: ogre/repos/community-x86_64/ogre.install (from rev 621671, 
ogre/trunk/ogre.install)
===
--- ogre.install(rev 0)
+++ ogre.install2020-04-26 20:43:58 UTC (rev 621672)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the OGRE samples just run OgreSampleBrowser"
+}


[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2020-02-17 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 18, 2020 @ 01:31:41
  Author: svenstaro
Revision: 575653

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 575652, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 575652, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  102 -
 ogre.install |6 +--
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-18 01:31:34 UTC (rev 575652)
+++ PKGBUILD2020-02-18 01:31:41 UTC (rev 575653)
@@ -1,51 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=ogre
-pkgver=1.12.4
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'git')
-install=ogre.install
-replaces=('ogre-docs')
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
-
"git+https://github.com/ocornut/imgui.git#commit=688cf868ea83db6c2958dd6bf7a20d471d00940b;)
-optdepends=('cppunit: unit testing'
-'python: python bindings')
-sha512sums=('46406be3b57bd1aea8f657802e2d63f777dd4a723b291c5bb6c8f9eac62ba27fe18d43260093f1120ce75fc32997feb72b10388e8983b9c9d2b7cdb15231cdd8'
-'SKIP')
-
-prepare() {
-  mkdir ogre-${pkgver}/build
-
-  cp -r "$srcdir"/imgui ogre-${pkgver}/Components/Overlay/src/
-}
-
-build() {
-  cd ogre-${pkgver}/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package() {
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 575652, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-18 01:31:41 UTC (rev 575653)
@@ -0,0 +1,51 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ogre
+pkgver=1.12.5
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'git' 'mono')
+install=ogre.install
+replaces=('ogre-docs')
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
+
"git+https://github.com/ocornut/imgui.git#commit=688cf868ea83db6c2958dd6bf7a20d471d00940b;)
+optdepends=('cppunit: unit testing'
+'python: python bindings')
+sha512sums=('c7037c6224a2c3eff9aa0c07455b5f2bec6c74e57a42de897df07088819f50d26931d9ca7b10d1685c4202bf86056bd153a33e65409019737a7d36cda046c607'
+'SKIP')
+
+prepare() {
+  mkdir ogre-${pkgver}/build
+
+  cp -r "${srcdir}"/imgui ogre-${pkgver}/Components/Overlay/src/
+}
+
+build() {
+  cd ogre-${pkgver}/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package() {
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}"/usr/bin/SampleBrowser "${pkgdir}"/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: ogre.install
===
--- ogre.install2020-02-18 01:31:34 UTC (rev 575652)
+++ ogre.install2020-02-18 01:31:41 UTC (rev 575653)
@@ -1,3 +0,0 @@
-post_install() {
-echo "To view the OGRE samples just run OgreSampleBrowser"
-}

Copied: ogre/repos/community-x86_64/ogre.install (from rev 575652, 
ogre/trunk/ogre.install)
===
--- ogre.install(rev 0)
+++ ogre.install2020-02-18 01:31:41 UTC (rev 575653)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the OGRE samples just run OgreSampleBrowser"
+}


[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2020-01-23 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, January 24, 2020 @ 00:29:08
  Author: svenstaro
Revision: 555272

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 555271, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 555271, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  102 -
 ogre.install |6 +--
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-24 00:28:59 UTC (rev 555271)
+++ PKGBUILD2020-01-24 00:29:08 UTC (rev 555272)
@@ -1,51 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=ogre
-pkgver=1.12.3
-pkgrel=2
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'git')
-install=ogre.install
-replaces=('ogre-docs')
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
-
"git+https://github.com/ocornut/imgui.git#commit=688cf868ea83db6c2958dd6bf7a20d471d00940b;)
-optdepends=('cppunit: unit testing'
-'python: python bindings')
-sha512sums=('1381b342e763f006952e8b2cf70e129f0e4ac399495450a72b2d9a97f39fd4346897b83e9acaa47611c1d5c8565cc6b5b5f1b516078a8904afa1c9e73188b586'
-'SKIP')
-
-prepare() {
-  mkdir ogre-${pkgver}/build
-
-  cp -r "$srcdir"/imgui ogre-${pkgver}/Components/Overlay/src/
-}
-
-build() {
-  cd ogre-${pkgver}/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package() {
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 555271, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-24 00:29:08 UTC (rev 555272)
@@ -0,0 +1,51 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ogre
+pkgver=1.12.4
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'git')
+install=ogre.install
+replaces=('ogre-docs')
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
+
"git+https://github.com/ocornut/imgui.git#commit=688cf868ea83db6c2958dd6bf7a20d471d00940b;)
+optdepends=('cppunit: unit testing'
+'python: python bindings')
+sha512sums=('46406be3b57bd1aea8f657802e2d63f777dd4a723b291c5bb6c8f9eac62ba27fe18d43260093f1120ce75fc32997feb72b10388e8983b9c9d2b7cdb15231cdd8'
+'SKIP')
+
+prepare() {
+  mkdir ogre-${pkgver}/build
+
+  cp -r "$srcdir"/imgui ogre-${pkgver}/Components/Overlay/src/
+}
+
+build() {
+  cd ogre-${pkgver}/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package() {
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: ogre.install
===
--- ogre.install2020-01-24 00:28:59 UTC (rev 555271)
+++ ogre.install2020-01-24 00:29:08 UTC (rev 555272)
@@ -1,3 +0,0 @@
-post_install() {
-echo "To view the OGRE samples just run OgreSampleBrowser"
-}

Copied: ogre/repos/community-x86_64/ogre.install (from rev 555271, 
ogre/trunk/ogre.install)
===
--- ogre.install(rev 0)
+++ ogre.install2020-01-24 00:29:08 UTC (rev 555272)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the OGRE samples just run OgreSampleBrowser"
+}


[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2019-11-09 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, November 9, 2019 @ 14:22:58
  Author: svenstaro
Revision: 524831

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 524830, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 524830, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  118 -
 ogre.install |6 +-
 2 files changed, 54 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-09 14:22:47 UTC (rev 524830)
+++ PKGBUILD2019-11-09 14:22:58 UTC (rev 524831)
@@ -1,67 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.12.2
-pkgrel=2
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('557a9ca85f5ac5a41ff7ef06622723e04b008f3e9dc90d44b13ed05f34b5bf23cf9a1959d94d34a12dc0750eeb3b4550d62ba5102379d1b2825753b2b0a836d7')
-
-prepare() {
-  mkdir ogre-${pkgver}/build
-}
-
-build() {
-  cd ogre-${pkgver}/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'python: python bindings'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 524830, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-11-09 14:22:58 UTC (rev 524831)
@@ -0,0 +1,51 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ogre
+pkgver=1.12.3
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'git')
+install=ogre.install
+replaces=('ogre-docs')
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
+
"git+https://github.com/ocornut/imgui.git#commit=688cf868ea83db6c2958dd6bf7a20d471d00940b;)
+optdepends=('cppunit: unit testing'
+'python: python bindings')
+sha512sums=('1381b342e763f006952e8b2cf70e129f0e4ac399495450a72b2d9a97f39fd4346897b83e9acaa47611c1d5c8565cc6b5b5f1b516078a8904afa1c9e73188b586'
+'SKIP')
+
+prepare() {
+  mkdir ogre-${pkgver}/build
+
+  cp -r "$srcdir"/imgui ogre-${pkgver}/Components/Overlay/src/
+}
+
+build() {
+  cd ogre-${pkgver}/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package() {
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: ogre.install
===
--- ogre.install2019-11-09 14:22:47 UTC (rev 524830)
+++ ogre.install2019-11-09 14:22:58 UTC (rev 524831)
@@ -1,3 +0,0 @@
-post_install() {
-echo "To view the OGRE samples just run OgreSampleBrowser"
-}

Copied: ogre/repos/community-x86_64/ogre.install (from rev 524830, 
ogre/trunk/ogre.install)
===
--- ogre.install 

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2019-09-27 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 27, 2019 @ 12:30:02
  Author: svenstaro
Revision: 511913

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 511912, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 511912, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  134 -
 ogre.install |6 +-
 2 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 12:29:54 UTC (rev 511912)
+++ PKGBUILD2019-09-27 12:30:02 UTC (rev 511913)
@@ -1,67 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.12.1
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('0b60fb3e6fd165fc5164472a42b1f0c7cf9fa5e899bb224cb91709633b106c2c01d82f941186c498fb6d9738ba4ece616ecd246bb9fe93b90ae6d03ae0618d23')
-
-prepare() {
-  mkdir ogre-${pkgver}/build
-}
-
-build() {
-  cd ogre-${pkgver}/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'python: python bindings'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 511912, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 12:30:02 UTC (rev 511913)
@@ -0,0 +1,67 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.12.2
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('557a9ca85f5ac5a41ff7ef06622723e04b008f3e9dc90d44b13ed05f34b5bf23cf9a1959d94d34a12dc0750eeb3b4550d62ba5102379d1b2825753b2b0a836d7')
+
+prepare() {
+  mkdir ogre-${pkgver}/build
+}
+
+build() {
+  cd ogre-${pkgver}/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'python: python bindings'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc="Documentation for ogre"
+  depends=()
+
+  cd ogre-${pkgver}/build
+
+  # move docs into this package
+  install -dm755 ${pkgdir}/usr/share/doc
+  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
+
+  # symlink for docs
+  install -dm755 ${pkgdir}/usr/share/OGRE/
+  cd ${pkgdir}/usr/share
+  ln -s /usr/share/doc/OGRE/ OGRE/docs
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: ogre.install
===
--- ogre.install2019-09-27 12:29:54 UTC (rev 511912)
+++ ogre.install2019-09-27 

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2019-06-28 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, June 28, 2019 @ 10:58:27
  Author: svenstaro
Revision: 485656

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 485655, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 485655, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  134 -
 ogre.install |6 +-
 2 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-28 10:58:19 UTC (rev 485655)
+++ PKGBUILD2019-06-28 10:58:27 UTC (rev 485656)
@@ -1,67 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.12.0
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('8df74f9d0e97bab0a3a9db8cb101935bcd46c1382ee7fcf82cb16191c66430f32bb34947ce63be9e668cdc8e3c89d945306f3e1509d86d5380827bc583397cb9')
-
-prepare() {
-  mkdir ogre-${pkgver}/build
-}
-
-build() {
-  cd ogre-${pkgver}/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'python: python bindings'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 485655, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-28 10:58:27 UTC (rev 485656)
@@ -0,0 +1,67 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.12.1
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('0b60fb3e6fd165fc5164472a42b1f0c7cf9fa5e899bb224cb91709633b106c2c01d82f941186c498fb6d9738ba4ece616ecd246bb9fe93b90ae6d03ae0618d23')
+
+prepare() {
+  mkdir ogre-${pkgver}/build
+}
+
+build() {
+  cd ogre-${pkgver}/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'python: python bindings'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc="Documentation for ogre"
+  depends=()
+
+  cd ogre-${pkgver}/build
+
+  # move docs into this package
+  install -dm755 ${pkgdir}/usr/share/doc
+  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
+
+  # symlink for docs
+  install -dm755 ${pkgdir}/usr/share/OGRE/
+  cd ${pkgdir}/usr/share
+  ln -s /usr/share/doc/OGRE/ OGRE/docs
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: ogre.install
===
--- ogre.install2019-06-28 10:58:19 UTC (rev 485655)
+++ ogre.install2019-06-28 10:58:27 UTC (rev 

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2019-05-13 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, May 13, 2019 @ 14:41:20
  Author: svenstaro
Revision: 467141

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 467140, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 467140, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  137 +++--
 ogre.install |6 +-
 2 files changed, 70 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-13 14:41:07 UTC (rev 467140)
+++ PKGBUILD2019-05-13 14:41:20 UTC (rev 467141)
@@ -1,70 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.11.5
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('d2b91d53734f031fd40dd0ed96bd1a7a7a826ac094ec0b7b03648daccd856ebef9d89854c1df64270375a5af7a8a6079b9223ffcee53ee38e62405492aec2206')
-
-prepare() {
-  mkdir ogre-${pkgver}/build
-}
-
-build() {
-  cd ogre-${pkgver}/build
-
-  export JAVA_HOME=/usr/lib/jvm/default
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'python: python bindings'
-  'java-environment: jni bindings'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 467140, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-13 14:41:20 UTC (rev 467141)
@@ -0,0 +1,67 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.12.0
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('8df74f9d0e97bab0a3a9db8cb101935bcd46c1382ee7fcf82cb16191c66430f32bb34947ce63be9e668cdc8e3c89d945306f3e1509d86d5380827bc583397cb9')
+
+prepare() {
+  mkdir ogre-${pkgver}/build
+}
+
+build() {
+  cd ogre-${pkgver}/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'python: python bindings'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc="Documentation for ogre"
+  depends=()
+
+  cd ogre-${pkgver}/build
+
+  # move docs into this package
+  install -dm755 ${pkgdir}/usr/share/doc
+  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
+
+  # symlink for docs
+  install -dm755 ${pkgdir}/usr/share/OGRE/
+  cd ${pkgdir}/usr/share
+  ln -s /usr/share/doc/OGRE/ OGRE/docs
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: ogre.install
===
--- 

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2018-12-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 22, 2018 @ 04:13:22
  Author: svenstaro
Revision: 417497

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 417496, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 417496, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  139 -
 ogre.install |6 +-
 2 files changed, 73 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 04:13:17 UTC (rev 417496)
+++ PKGBUILD2018-12-22 04:13:22 UTC (rev 417497)
@@ -1,69 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.11.4
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('d27a6968c871df2b43abeaa44c2016364cd8fc5de8da7bcf65687f0071b913c28e07f3db68a23d5c4af9e7d8fa6dfa353a22620fcc68b9b18956d5640c3a5789')
-
-build() {
-  cd ogre-${pkgver}
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  export JAVA_HOME=/usr/lib/jvm/default
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'python: python bindings'
-  'java-environment: jni bindings'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 417496, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 04:13:22 UTC (rev 417497)
@@ -0,0 +1,70 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.11.5
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('d2b91d53734f031fd40dd0ed96bd1a7a7a826ac094ec0b7b03648daccd856ebef9d89854c1df64270375a5af7a8a6079b9223ffcee53ee38e62405492aec2206')
+
+prepare() {
+  mkdir ogre-${pkgver}/build
+}
+
+build() {
+  cd ogre-${pkgver}/build
+
+  export JAVA_HOME=/usr/lib/jvm/default
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'python: python bindings'
+  'java-environment: jni bindings'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc="Documentation for ogre"
+  depends=()
+
+  cd ogre-${pkgver}/build
+
+  # move docs into this package
+  install -dm755 ${pkgdir}/usr/share/doc
+  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
+
+  # symlink for docs
+  install -dm755 ${pkgdir}/usr/share/OGRE/
+  cd ${pkgdir}/usr/share
+  ln -s /usr/share/doc/OGRE/ OGRE/docs
+}

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2018-12-09 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 9, 2018 @ 17:36:02
  Author: svenstaro
Revision: 413043

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 413042, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 413042, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  138 -
 ogre.install |6 +-
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-09 17:35:51 UTC (rev 413042)
+++ PKGBUILD2018-12-09 17:36:02 UTC (rev 413043)
@@ -1,69 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.11.2
-pkgrel=2
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('81f40b4bd25ac91db3dca205f1b9c12e9120706626d81dff70b2b8836d8dbffe49e7d102528630d4c6b730834c50745de9c03fab354826f813d3479c2f7097fc')
-
-build() {
-  cd ogre-${pkgver}
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  export JAVA_HOME=/usr/lib/jvm/default
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'python: python bindings'
-  'java-environment: jni bindings'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 413042, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-09 17:36:02 UTC (rev 413043)
@@ -0,0 +1,69 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.11.4
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('d27a6968c871df2b43abeaa44c2016364cd8fc5de8da7bcf65687f0071b913c28e07f3db68a23d5c4af9e7d8fa6dfa353a22620fcc68b9b18956d5640c3a5789')
+
+build() {
+  cd ogre-${pkgver}
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export JAVA_HOME=/usr/lib/jvm/default
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'python: python bindings'
+  'java-environment: jni bindings'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc="Documentation for ogre"
+  depends=()
+
+  cd ogre-${pkgver}/build
+
+  # move docs into this package
+  install -dm755 ${pkgdir}/usr/share/doc
+  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
+
+  # symlink for docs
+  install -dm755 ${pkgdir}/usr/share/OGRE/
+  cd ${pkgdir}/usr/share
+  ln -s /usr/share/doc/OGRE/ 

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2018-10-10 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, October 10, 2018 @ 18:24:42
  Author: svenstaro
Revision: 392115

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 392114, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 392114, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  139 -
 ogre.install |6 +-
 2 files changed, 72 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-10 18:24:33 UTC (rev 392114)
+++ PKGBUILD2018-10-10 18:24:42 UTC (rev 392115)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.11.1
-pkgrel=3
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('10b70913a67ea7ee22ce6743b7d03abbf3eb271414b75b35eed50ad2affa85def33dfc4ba11d66e417d451674ee220efda9ef0c1fd19ad63390b4c2d762850c8')
-
-build() {
-  cd ogre-${pkgver}
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  export JAVA_HOME=/usr/lib/jvm/default
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'python: python bindings'
-  'java-environment: jni bindings'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 392114, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-10 18:24:42 UTC (rev 392115)
@@ -0,0 +1,69 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.11.2
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('81f40b4bd25ac91db3dca205f1b9c12e9120706626d81dff70b2b8836d8dbffe49e7d102528630d4c6b730834c50745de9c03fab354826f813d3479c2f7097fc')
+
+build() {
+  cd ogre-${pkgver}
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export JAVA_HOME=/usr/lib/jvm/default
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'python: python bindings'
+  'java-environment: jni bindings'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc="Documentation for ogre"
+  depends=()
+
+  cd ogre-${pkgver}/build
+
+  # move docs into this package
+  install -dm755 ${pkgdir}/usr/share/doc
+  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
+
+  # symlink for docs
+  install -dm755 ${pkgdir}/usr/share/OGRE/
+  cd ${pkgdir}/usr/share
+  ln -s 

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2018-07-17 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, July 18, 2018 @ 00:45:08
  Author: svenstaro
Revision: 361191

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 361190, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 361190, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  147 +++--
 ogre.install |6 +-
 2 files changed, 73 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-18 00:45:01 UTC (rev 361190)
+++ PKGBUILD2018-07-18 00:45:08 UTC (rev 361191)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.11.0
-pkgrel=2
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('e5d8051299d41d273f8372953d4479802a3ce3e9c5dd25a6a10422559d765dc94ac28f57477a2225581c271fdbfbd5b3359a2a163dd38ee65d01514e7b4a4d42')
-
-prepare() {
-  cd ogre-${pkgver}
-
-  # sed -i "s/dist-packages/site-packages/" Components/Python/CMakeLists.txt
-}
-
-build() {
-  cd ogre-${pkgver}
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  export JAVA_HOME=/usr/lib/jvm/default
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOpenGL_GL_PREFERENCE=GLVND \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'python: python bindings'
-  'java-environment: jni bindings'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 361190, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-18 00:45:08 UTC (rev 361191)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.11.1
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('10b70913a67ea7ee22ce6743b7d03abbf3eb271414b75b35eed50ad2affa85def33dfc4ba11d66e417d451674ee220efda9ef0c1fd19ad63390b4c2d762850c8')
+
+build() {
+  cd ogre-${pkgver}
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export JAVA_HOME=/usr/lib/jvm/default
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'python: python bindings'
+  'java-environment: jni bindings'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc="Documentation for ogre"
+  depends=()
+
+  cd ogre-${pkgver}/build
+
+  # move docs into this package
+  install -dm755 ${pkgdir}/usr/share/doc
+  mv 

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2018-06-09 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, June 9, 2018 @ 10:35:05
  Author: svenstaro
Revision: 342160

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 342159, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 342159, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  151 +
 ogre.install |6 +-
 2 files changed, 80 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-09 10:34:56 UTC (rev 342159)
+++ PKGBUILD2018-06-09 10:35:05 UTC (rev 342160)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.11.0
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('e5d8051299d41d273f8372953d4479802a3ce3e9c5dd25a6a10422559d765dc94ac28f57477a2225581c271fdbfbd5b3359a2a163dd38ee65d01514e7b4a4d42')
-
-prepare() {
-  cd ogre-${pkgver}
-
-  # sed -i "s/dist-packages/site-packages/" Components/Python/CMakeLists.txt
-}
-
-build() {
-  cd ogre-${pkgver}
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  export JAVA_HOME=/usr/lib/jvm/default
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'python: python bindings'
-  'java-environment: jni bindings'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 342159, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-09 10:35:05 UTC (rev 342160)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.11.0
+pkgrel=2
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('e5d8051299d41d273f8372953d4479802a3ce3e9c5dd25a6a10422559d765dc94ac28f57477a2225581c271fdbfbd5b3359a2a163dd38ee65d01514e7b4a4d42')
+
+prepare() {
+  cd ogre-${pkgver}
+
+  # sed -i "s/dist-packages/site-packages/" Components/Python/CMakeLists.txt
+}
+
+build() {
+  cd ogre-${pkgver}
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export JAVA_HOME=/usr/lib/jvm/default
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOpenGL_GL_PREFERENCE=GLVND \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'python: python bindings'
+  'java-environment: jni bindings'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc="Documentation for ogre"
+  depends=()
+
+  cd ogre-${pkgver}/build
+
+  # move docs into this package
+  install -dm755 

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2018-05-04 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, May 4, 2018 @ 23:03:35
  Author: svenstaro
Revision: 318967

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 318966, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 318966, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  152 +++--
 ogre.install |6 +-
 2 files changed, 77 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-05-04 23:03:20 UTC (rev 318966)
+++ PKGBUILD2018-05-04 23:03:35 UTC (rev 318967)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.10.11
-pkgrel=4
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('2dfedd6f0a0de1a8c687c001439138b233200ca11e5c9940debf43d8a0380ca6472e0b5f4d599f0e22ca2049d0a5d34066ef41b6bc4912130694fa5d851fc900')
-
-prepare() {
-  cd ogre-${pkgver}
-
-  sed -i "s/dist-packages/site-packages/" Components/Python/CMakeLists.txt
-}
-
-build() {
-  cd ogre-${pkgver}
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_INSTALL_SAMPLES=TRUE \
--DOGRE_INSTALL_DOCS=TRUE \
--DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
--DCMAKE_BUILD_TYPE=Release
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'intel-tbb: better threading support'
-  'poco: portability'
-  'python: python bindings'
-  'boost: for developing using ogre'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 318966, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-05-04 23:03:35 UTC (rev 318967)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.11.0
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('e5d8051299d41d273f8372953d4479802a3ce3e9c5dd25a6a10422559d765dc94ac28f57477a2225581c271fdbfbd5b3359a2a163dd38ee65d01514e7b4a4d42')
+
+prepare() {
+  cd ogre-${pkgver}
+
+  # sed -i "s/dist-packages/site-packages/" Components/Python/CMakeLists.txt
+}
+
+build() {
+  cd ogre-${pkgver}
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  export JAVA_HOME=/usr/lib/jvm/default
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'python: python bindings'
+  'java-environment: jni bindings'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2018-03-16 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 16, 2018 @ 07:03:01
  Author: svenstaro
Revision: 308778

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 308777, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 308777, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  150 +
 ogre.install |6 +-
 2 files changed, 81 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-16 07:02:55 UTC (rev 308777)
+++ PKGBUILD2018-03-16 07:03:01 UTC (rev 308778)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.10.11
-pkgrel=3
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('2dfedd6f0a0de1a8c687c001439138b233200ca11e5c9940debf43d8a0380ca6472e0b5f4d599f0e22ca2049d0a5d34066ef41b6bc4912130694fa5d851fc900')
-
-build() {
-  cd ogre-${pkgver}
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_INSTALL_SAMPLES=TRUE \
--DOGRE_INSTALL_DOCS=TRUE \
--DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
--DCMAKE_BUILD_TYPE=Release
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'intel-tbb: better threading support'
-  'poco: portability'
-  'python: python bindings'
-  'boost: for developing using ogre'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 308777, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-16 07:03:01 UTC (rev 308778)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.10.11
+pkgrel=4
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('2dfedd6f0a0de1a8c687c001439138b233200ca11e5c9940debf43d8a0380ca6472e0b5f4d599f0e22ca2049d0a5d34066ef41b6bc4912130694fa5d851fc900')
+
+prepare() {
+  cd ogre-${pkgver}
+
+  sed -i "s/dist-packages/site-packages/" Components/Python/CMakeLists.txt
+}
+
+build() {
+  cd ogre-${pkgver}
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_INSTALL_SAMPLES=TRUE \
+-DOGRE_INSTALL_DOCS=TRUE \
+-DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'intel-tbb: better threading support'
+  'poco: portability'
+  'python: python bindings'
+  'boost: for developing using ogre'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv 

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2018-01-29 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, January 29, 2018 @ 20:32:22
  Author: svenstaro
Revision: 287891

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 287890, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 287890, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  153 ++---
 ogre.install |7 +-
 2 files changed, 75 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 20:32:03 UTC (rev 287890)
+++ PKGBUILD2018-01-29 20:32:22 UTC (rev 287891)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.10.11
-pkgrel=2
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('2dfedd6f0a0de1a8c687c001439138b233200ca11e5c9940debf43d8a0380ca6472e0b5f4d599f0e22ca2049d0a5d34066ef41b6bc4912130694fa5d851fc900')
-
-build() {
-  cd ogre-${pkgver}
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_INSTALL_SAMPLES=TRUE \
--DOGRE_INSTALL_DOCS=TRUE \
--DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
--DCMAKE_BUILD_TYPE=Release
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'intel-tbb: better threading support'
-  'poco: portability'
-  'python: python bindings'
-  'boost: for developing using ogre'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  # fix up samples
-  install -dm775 -o root -g users ${pkgdir}/opt/OGRE/samples/
-  mv ${pkgdir}/usr/share/OGRE/*.cfg ${pkgdir}/opt/OGRE/samples/
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/opt/OGRE/samples/
-
-  # make sample launcher
-  echo "#!/bin/bash" > ${pkgdir}/usr/bin/OgreSampleBrowser
-  echo "cd /opt/OGRE/samples && ./SampleBrowser" >> 
${pkgdir}/usr/bin/OgreSampleBrowser
-  chmod +x ${pkgdir}/usr/bin/OgreSampleBrowser
-
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 287890, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 20:32:22 UTC (rev 287891)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.10.11
+pkgrel=3
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('2dfedd6f0a0de1a8c687c001439138b233200ca11e5c9940debf43d8a0380ca6472e0b5f4d599f0e22ca2049d0a5d34066ef41b6bc4912130694fa5d851fc900')
+
+build() {
+  cd ogre-${pkgver}
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_INSTALL_SAMPLES=TRUE \
+-DOGRE_INSTALL_DOCS=TRUE \
+-DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'intel-tbb: better threading support'
+  'poco: portability'
+  'python: python bindings'
+  'boost: for developing using ogre'
+  'ogre-docs: documentation')
+
+  cd 

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2018-01-02 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, January 2, 2018 @ 08:13:28
  Author: svenstaro
Revision: 277670

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 277669, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 277669, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  162 -
 ogre.install |8 +-
 2 files changed, 85 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-02 08:13:04 UTC (rev 277669)
+++ PKGBUILD2018-01-02 08:13:28 UTC (rev 277670)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.10.10
-pkgrel=2
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('a4fefec10625afd32a48486cbf8c14dac201459e1f18febc6e645bd09741cb280503b25163939d2f3dd2f59a51cea9d6f32a949096812702df4b4b55ad9c169d')
-
-build() {
-  cd ogre-${pkgver}
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_INSTALL_SAMPLES=TRUE \
--DOGRE_INSTALL_DOCS=TRUE \
--DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
--DCMAKE_BUILD_TYPE=Release
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'intel-tbb: better threading support'
-  'poco: portability'
-  'python: python bindings'
-  'boost: for developing using ogre'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  # fix up samples
-  install -dm775 -o root -g users ${pkgdir}/opt/OGRE/samples/
-  mv ${pkgdir}/usr/share/OGRE/*.cfg ${pkgdir}/opt/OGRE/samples/
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/opt/OGRE/samples/
-
-  # make sample launcher
-  echo "#!/bin/bash" > ${pkgdir}/usr/bin/OgreSampleBrowser
-  echo "cd /opt/OGRE/samples && ./SampleBrowser" >> 
${pkgdir}/usr/bin/OgreSampleBrowser
-  chmod +x ${pkgdir}/usr/bin/OgreSampleBrowser
-
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 277669, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-02 08:13:28 UTC (rev 277670)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.10.11
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('2dfedd6f0a0de1a8c687c001439138b233200ca11e5c9940debf43d8a0380ca6472e0b5f4d599f0e22ca2049d0a5d34066ef41b6bc4912130694fa5d851fc900')
+
+build() {
+  cd ogre-${pkgver}
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_INSTALL_SAMPLES=TRUE \
+-DOGRE_INSTALL_DOCS=TRUE \
+-DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'intel-tbb: better threading support'
+  'poco: portability'
+  'python: python bindings'
+  'boost: for developing using ogre'
+  'ogre-docs: documentation')
+
+  cd 

[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2017-12-03 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 3, 2017 @ 20:57:52
  Author: svenstaro
Revision: 272044

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 272043, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 272043, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  162 -
 ogre.install |8 +-
 2 files changed, 85 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 20:57:43 UTC (rev 272043)
+++ PKGBUILD2017-12-03 20:57:52 UTC (rev 272044)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.10.8
-pkgrel=2
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('i686' 'x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
-install=ogre.install
-source=("hg+http://bitbucket.org/sinbad/ogre#tag=v${pkgver//./-};)
-sha512sums=('SKIP')
-
-build() {
-  cd ogre
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_INSTALL_SAMPLES=TRUE \
--DOGRE_INSTALL_DOCS=TRUE \
--DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
--DCMAKE_BUILD_TYPE=Release
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'intel-tbb: better threading support'
-  'poco: portability'
-  'python: python bindings'
-  'boost: for developing using ogre'
-  'ogre-docs: documentation')
-
-  cd ogre/build
-
-  make DESTDIR=${pkgdir} install
-
-  # fix up samples
-  install -dm775 -o root -g users ${pkgdir}/opt/OGRE/samples/
-  mv ${pkgdir}/usr/share/OGRE/*.cfg ${pkgdir}/opt/OGRE/samples/
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/opt/OGRE/samples/
-
-  # make sample launcher
-  echo "#!/bin/bash" > ${pkgdir}/usr/bin/OgreSampleBrowser
-  echo "cd /opt/OGRE/samples && ./SampleBrowser" >> 
${pkgdir}/usr/bin/OgreSampleBrowser
-  chmod +x ${pkgdir}/usr/bin/OgreSampleBrowser
-
-  install -Dm644 ../COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 272043, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 20:57:52 UTC (rev 272044)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.10.10
+pkgrel=2
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('a4fefec10625afd32a48486cbf8c14dac201459e1f18febc6e645bd09741cb280503b25163939d2f3dd2f59a51cea9d6f32a949096812702df4b4b55ad9c169d')
+
+build() {
+  cd ogre-${pkgver}
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_INSTALL_SAMPLES=TRUE \
+-DOGRE_INSTALL_DOCS=TRUE \
+-DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'intel-tbb: better threading support'
+  'poco: portability'
+  'python: python bindings'
+  'boost: for developing using ogre'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  # fix up samples
+  install -dm775 -o root -g users ${pkgdir}/opt/OGRE/samples/
+  mv