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

2017-05-21 Thread Antonio Rojas
Date: Sunday, May 21, 2017 @ 09:26:33
  Author: arojas
Revision: 228900

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

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

+
 community-staging-i686/PKGBUILD|   73 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   73 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 152 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 228899, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-21 09:26:33 UTC (rev 228900)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=12
+pkgdesc="A multilayer and overlappable GUI System"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'ogre')
+optdepends=('ogre: for the ogre plugin and some exaples')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS "")' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=TRUE
+
+  make
+  make api-docs
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+
+  # make demos work
+  install -Dm775 lib/libCommon.so ${pkgdir}/usr/lib/libCommon.so
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc="Documentation for mygui"
+  depends=()
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 228899, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2017-05-21 09:26:33 UTC (rev 
228900)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually"
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 228899, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-21 09:26:33 UTC (rev 228900)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=12
+pkgdesc="A multilayer and overlappable GUI System"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'ogre')
+optdepends=('ogre: for the ogre plugin and some exaples')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 

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

2017-01-02 Thread Bartłomiej Piotrowski
Date: Monday, January 2, 2017 @ 09:12:53
  Author: bpiotrowski
Revision: 204207

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

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

+
 community-staging-i686/PKGBUILD|   73 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   73 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 152 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 204206, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-02 09:12:53 UTC (rev 204207)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=10
+pkgdesc="A multilayer and overlappable GUI System"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'ogre')
+optdepends=('ogre: for the ogre plugin and some exaples')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS "")' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=TRUE
+
+  make
+  make api-docs
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+
+  # make demos work
+  install -Dm775 lib/libCommon.so ${pkgdir}/usr/lib/libCommon.so
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc="Documentation for mygui"
+  depends=()
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 204206, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2017-01-02 09:12:53 UTC (rev 
204207)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually"
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 204206, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-02 09:12:53 UTC (rev 204207)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=10
+pkgdesc="A multilayer and overlappable GUI System"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'ogre')
+optdepends=('ogre: for the ogre plugin and some exaples')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 

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

2016-10-09 Thread Bartłomiej Piotrowski
Date: Sunday, October 9, 2016 @ 22:45:34
  Author: bpiotrowski
Revision: 191762

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

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

+
 community-staging-i686/PKGBUILD|   73 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   73 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 152 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 191761, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-09 22:45:34 UTC (rev 191762)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=9
+pkgdesc="A multilayer and overlappable GUI System"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'ogre')
+optdepends=('ogre: for the ogre plugin and some exaples')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS "")' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=TRUE
+
+  make
+  make api-docs
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+
+  # make demos work
+  install -Dm775 lib/libCommon.so ${pkgdir}/usr/lib/libCommon.so
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc="Documentation for mygui"
+  depends=()
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 191761, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2016-10-09 22:45:34 UTC (rev 
191762)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually"
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 191761, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-09 22:45:34 UTC (rev 191762)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=9
+pkgdesc="A multilayer and overlappable GUI System"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'ogre')
+optdepends=('ogre: for the ogre plugin and some exaples')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 

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

2016-08-22 Thread Sven-Hendrik Haase
Date: Monday, August 22, 2016 @ 12:56:12
  Author: svenstaro
Revision: 187305

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

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

+
 community-staging-i686/PKGBUILD|   72 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   72 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 150 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 187304, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-08-22 12:56:12 UTC (rev 187305)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=7
+pkgdesc="A multilayer and overlappable GUI System for OGRE"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS "")' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=TRUE
+
+  make
+  make api-docs
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  make DESTDIR="$pkgdir" install
+
+  # make demos work
+  install -Dm775 lib/libCommon.so ${pkgdir}/usr/lib/libCommon.so
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc="Documentation for mygui"
+  depends=()
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 187304, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2016-08-22 12:56:12 UTC (rev 
187305)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually"
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 187304, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-08-22 12:56:12 UTC (rev 187305)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=7
+pkgdesc="A multilayer and overlappable GUI System for OGRE"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i 

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

2015-12-22 Thread Evangelos Foutras
Date: Tuesday, December 22, 2015 @ 12:54:43
  Author: foutrelis
Revision: 154191

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

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

+
 community-staging-i686/PKGBUILD|   72 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   72 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 150 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 154190, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-22 11:54:43 UTC (rev 154191)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=6
+pkgdesc="A multilayer and overlappable GUI System for OGRE"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS "")' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=TRUE
+
+  make
+  make api-docs
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  make DESTDIR="$pkgdir" install
+
+  # make demos work
+  install -Dm775 lib/libCommon.so ${pkgdir}/usr/lib/libCommon.so
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc="Documentation for mygui"
+  depends=()
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 154190, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2015-12-22 11:54:43 UTC (rev 
154191)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually"
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 154190, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-22 11:54:43 UTC (rev 154191)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=6
+pkgdesc="A multilayer and overlappable GUI System for OGRE"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i 

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

2015-12-07 Thread Felix Yan
Date: Monday, December 7, 2015 @ 09:32:48
  Author: fyan
Revision: 149761

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

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

+
 community-staging-i686/PKGBUILD|   72 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   72 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 150 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 149760, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-07 08:32:48 UTC (rev 149761)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=5
+pkgdesc="A multilayer and overlappable GUI System for OGRE"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS "")' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=TRUE
+
+  make
+  make api-docs
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  make DESTDIR="$pkgdir" install
+
+  # make demos work
+  install -Dm775 lib/libCommon.so ${pkgdir}/usr/lib/libCommon.so
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc="Documentation for mygui"
+  depends=()
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 149760, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2015-12-07 08:32:48 UTC (rev 
149761)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually"
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 149760, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-07 08:32:48 UTC (rev 149761)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=5
+pkgdesc="A multilayer and overlappable GUI System for OGRE"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i 

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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 09:40:26
  Author: fyan
Revision: 144418

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

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

+
 community-staging-i686/PKGBUILD|   72 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   72 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 150 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 144417, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 07:40:26 UTC (rev 144418)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=4
+pkgdesc="A multilayer and overlappable GUI System for OGRE"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS "")' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=TRUE
+
+  make
+  make api-docs
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  make DESTDIR="$pkgdir" install
+
+  # make demos work
+  install -Dm775 lib/libCommon.so ${pkgdir}/usr/lib/libCommon.so
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc="Documentation for mygui"
+  depends=()
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 144417, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2015-10-20 07:40:26 UTC (rev 
144418)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually"
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 144417, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 07:40:26 UTC (rev 144418)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=4
+pkgdesc="A multilayer and overlappable GUI System for OGRE"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i 

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

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 23:40:44
  Author: svenstaro
Revision: 132007

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

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

+
 community-staging-i686/PKGBUILD|   71 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   71 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 148 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 132006, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 21:40:44 UTC (rev 132007)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=2
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]]  rm -rf build
+  mkdir build  cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=TRUE
+
+  make
+  make api-docs
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  make DESTDIR=$pkgdir install
+
+  # make demos work
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc=Documentation for mygui
+  depends=()
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 132006, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2015-04-22 21:40:44 UTC (rev 
132007)
@@ -0,0 +1,3 @@
+post_install() {
+echo To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 132006, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-22 21:40:44 UTC (rev 132007)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=2
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 

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

2014-11-04 Thread Evangelos Foutras
Date: Wednesday, November 5, 2014 @ 00:22:43
  Author: foutrelis
Revision: 121898

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

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

+
 community-staging-i686/PKGBUILD|   71 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   71 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 148 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 121897, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-11-04 23:22:43 UTC (rev 121898)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.1
+pkgrel=2
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('43948f1c593d9a90ed4768a5baaa06f3')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]]  rm -rf build
+  mkdir build  cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=TRUE
+
+  make
+  make api-docs
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  make DESTDIR=$pkgdir install
+
+  # make demos work
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc=Documentation for mygui
+  depends=()
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 121897, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2014-11-04 23:22:43 UTC (rev 
121898)
@@ -0,0 +1,3 @@
+post_install() {
+echo To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 121897, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-11-04 23:22:43 UTC (rev 121898)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.1
+pkgrel=2
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('43948f1c593d9a90ed4768a5baaa06f3')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 

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

2014-08-14 Thread Sven-Hendrik Haase
Date: Friday, August 15, 2014 @ 02:00:13
  Author: svenstaro
Revision: 117408

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

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

+
 community-staging-i686/PKGBUILD|   71 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   71 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 148 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 117407, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-08-15 00:00:13 UTC (rev 117408)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.0
+pkgrel=8
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip;)
+md5sums=('7c20486a0db82f497d8b7c5300613b61')
+
+build() {
+  cd $srcdir/MyGUI_$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]]  rm -rf build
+  mkdir build  cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=TRUE
+
+  make
+  make api-docs
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/MyGUI_$pkgver/build
+  
+  make DESTDIR=$pkgdir install
+
+  # make demos work
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc=Documentation for mygui
+  depends=()
+
+  cd $srcdir/MyGUI_$pkgver/build
+  
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 117407, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2014-08-15 00:00:13 UTC (rev 
117408)
@@ -0,0 +1,3 @@
+post_install() {
+echo To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 117407, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-08-15 00:00:13 UTC (rev 117408)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.0
+pkgrel=8
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip;)
+md5sums=('7c20486a0db82f497d8b7c5300613b61')
+
+build() {
+  cd $srcdir/MyGUI_$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean 

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

2013-12-02 Thread Jelle van der Waa
Date: Monday, December 2, 2013 @ 11:57:13
  Author: jelle
Revision: 101851

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

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

+
 community-staging-i686/PKGBUILD|   82 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   82 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 170 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 101850, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-02 10:57:13 UTC (rev 101851)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.0
+pkgrel=8
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip;)
+md5sums=('7c20486a0db82f497d8b7c5300613b61')
+
+build() {
+  cd $srcdir/MyGUI_$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]]  rm -rf build
+  mkdir build  cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release # set=Debug for debugging version
+# -DFREETYPE_INCLUDE_DIRS=/usr/include/freetype2/ \
+#-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+
+  # compile
+  make
+
+  # generate docs
+  if [[ $(which dot)  $(which doxygen) ]]; then
+make api-docs 2/dev/null
+  fi
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/MyGUI_$pkgver
+  
+  cd build
+
+  # install the whole bunch
+  make DESTDIR=$pkgdir install
+
+  # make demos work
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc=Documentation for mygui
+  depends=()
+
+  cd $srcdir/MyGUI_$pkgver
+  
+  cd build
+
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 101850, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2013-12-02 10:57:13 UTC (rev 
101851)
@@ -0,0 +1,3 @@
+post_install() {
+echo To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 101850, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-12-02 10:57:13 UTC (rev 101851)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.0
+pkgrel=8
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip;)
+md5sums=('7c20486a0db82f497d8b7c5300613b61')
+
+build() {
+  cd $srcdir/MyGUI_$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 

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

2013-07-10 Thread Sven-Hendrik Haase
Date: Wednesday, July 10, 2013 @ 18:58:56
  Author: svenstaro
Revision: 93827

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

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

+
 community-staging-i686/PKGBUILD|   79 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   79 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 164 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 93826, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-07-10 16:58:56 UTC (rev 93827)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.0
+pkgrel=6
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip;)
+md5sums=('7c20486a0db82f497d8b7c5300613b61')
+
+build() {
+  cd $srcdir/MyGUI_$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]]  rm -rf build
+  mkdir build  cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DCMAKE_BUILD_TYPE=Release # set=Debug for debugging version
+
+  # compile
+  make
+
+  # generate docs
+  if [[ $(which dot)  $(which doxygen) ]]; then
+make api-docs 2/dev/null
+  fi
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/MyGUI_$pkgver
+  
+  cd build
+
+  # install the whole bunch
+  make DESTDIR=$pkgdir install
+
+  # make demos work
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc=Documentation for mygui
+  depends=()
+
+  cd $srcdir/MyGUI_$pkgver
+  
+  cd build
+
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 93826, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2013-07-10 16:58:56 UTC (rev 
93827)
@@ -0,0 +1,3 @@
+post_install() {
+echo To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 93826, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-07-10 16:58:56 UTC (rev 93827)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.0
+pkgrel=6
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip;)
+md5sums=('7c20486a0db82f497d8b7c5300613b61')
+
+build() {
+  cd $srcdir/MyGUI_$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 

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

2013-03-28 Thread Sven-Hendrik Haase
Date: Friday, March 29, 2013 @ 01:19:40
  Author: svenstaro
Revision: 87248

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

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

+
 community-staging-i686/PKGBUILD|   79 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   79 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 164 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 87247, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-03-29 00:19:40 UTC (rev 87248)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.0
+pkgrel=5
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip;)
+md5sums=('7c20486a0db82f497d8b7c5300613b61')
+
+build() {
+  cd $srcdir/MyGUI_$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]]  rm -rf build
+  mkdir build  cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DCMAKE_BUILD_TYPE=Release # set=Debug for debugging version
+
+  # compile
+  make
+
+  # generate docs
+  if [[ $(which dot)  $(which doxygen) ]]; then
+make api-docs 2/dev/null
+  fi
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/MyGUI_$pkgver
+  
+  cd build
+
+  # install the whole bunch
+  make DESTDIR=$pkgdir install
+
+  # make demos work
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc=Documentation for mygui
+  depends=()
+
+  cd $srcdir/MyGUI_$pkgver
+  
+  cd build
+
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 87247, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2013-03-29 00:19:40 UTC (rev 
87248)
@@ -0,0 +1,3 @@
+post_install() {
+echo To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 87247, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-03-29 00:19:40 UTC (rev 87248)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.0
+pkgrel=5
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip;)
+md5sums=('7c20486a0db82f497d8b7c5300613b61')
+
+build() {
+  cd $srcdir/MyGUI_$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 

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

2013-01-25 Thread Sven-Hendrik Haase
Date: Saturday, January 26, 2013 @ 08:28:04
  Author: svenstaro
Revision: 82976

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

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

+
 community-staging-i686/PKGBUILD|   79 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   79 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 164 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 82975, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-01-26 07:28:04 UTC (rev 82976)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.0
+pkgrel=4
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip;)
+md5sums=('7c20486a0db82f497d8b7c5300613b61')
+
+build() {
+  cd $srcdir/MyGUI_$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]]  rm -rf build
+  mkdir build  cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DCMAKE_BUILD_TYPE=Release # set=Debug for debugging version
+
+  # compile
+  make
+
+  # generate docs
+  if [[ $(which dot)  $(which doxygen) ]]; then
+make api-docs 2/dev/null
+  fi
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/MyGUI_$pkgver
+  
+  cd build
+
+  # install the whole bunch
+  make DESTDIR=$pkgdir install
+
+  # make demos work
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc=Documentation for mygui
+  depends=()
+
+  cd $srcdir/MyGUI_$pkgver
+  
+  cd build
+
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 82975, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2013-01-26 07:28:04 UTC (rev 
82976)
@@ -0,0 +1,3 @@
+post_install() {
+echo To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 82975, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-01-26 07:28:04 UTC (rev 82976)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrew Belitsky belitsk...@gmail.com
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.0
+pkgrel=4
+pkgdesc=A multilayer and overlappable GUI System for OGRE
+arch=('i686' 'x86_64')
+url=http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=(http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip;)
+md5sums=('7c20486a0db82f497d8b7c5300613b61')
+
+build() {
+  cd $srcdir/MyGUI_$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:bin:../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:bin:../opt/MYGUI:' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS )' CMakeLists.txt
+  sed -i