[arch-commits] Commit in gemrb/repos (8 files)

Lukas Jirkovsky stativ at archlinux.org
Mon Feb 23 21:30:37 UTC 2015


    Date: Monday, February 23, 2015 @ 22:30:37
  Author: stativ
Revision: 128155

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

Added:
  gemrb/repos/community-i686/PKGBUILD
    (from rev 128154, gemrb/trunk/PKGBUILD)
  gemrb/repos/community-i686/gemrb.install
    (from rev 128154, gemrb/trunk/gemrb.install)
  gemrb/repos/community-x86_64/PKGBUILD
    (from rev 128154, gemrb/trunk/PKGBUILD)
  gemrb/repos/community-x86_64/gemrb.install
    (from rev 128154, gemrb/trunk/gemrb.install)
Deleted:
  gemrb/repos/community-i686/PKGBUILD
  gemrb/repos/community-i686/gemrb.install
  gemrb/repos/community-x86_64/PKGBUILD
  gemrb/repos/community-x86_64/gemrb.install

--------------------------------+
 /PKGBUILD                      |   78 +++++++++++++++++++++++++++++++++++++++
 /gemrb.install                 |   48 ++++++++++++++++++++++++
 community-i686/PKGBUILD        |   43 ---------------------
 community-i686/gemrb.install   |   24 ------------
 community-x86_64/PKGBUILD      |   43 ---------------------
 community-x86_64/gemrb.install |   24 ------------
 6 files changed, 126 insertions(+), 134 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2015-02-23 21:30:32 UTC (rev 128154)
+++ community-i686/PKGBUILD	2015-02-23 21:30:37 UTC (rev 128155)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
-pkgname=gemrb
-pkgver=0.8.1
-pkgrel=1
-pkgdesc="OSS implementation of Bioware's Infinity Engine which supports eg. Baldur's Gate"
-arch=('i686' 'x86_64')
-url="http://www.gemrb.org/"
-license=('GPL')
-depends=('python2' 'openal' 'libpng' 'sdl_mixer' 'freetype2')
-# optionally it is possible to build vlc plugin too
-# for future reference: there is also and experimental SDL2/OpenGL renderer
-makedepends=('cmake')
-# i686 build breaks because of the stack protector
-[ $CARCH=="i686" ] && options=('!buildflags')
-install=gemrb.install
-source=("http://downloads.sourceforge.net/sourceforge/gemrb/$pkgname-$pkgver.tar.gz")
-md5sums=('5e7d727f336caf91657375595982c063')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  if [ ! -d "$srcdir/build" ] ; then
-    mkdir "$srcdir/build"
-  fi
-  cd "$srcdir/build"
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
-        -DCMAKE_BUILD_TYPE=Release \
-        ../$pkgname-$pkgver
-
-  # fix the dirs not being properly set by cmake (bug #269)
-  echo '#define PLUGINDIR "/usr/lib/gemrb/plugins"
-  #define SYSCONFDIR "/etc/gemrb"' >> config.h
-
-  make
-}
-
-package() {
-  cd "$srcdir"/build
-  make DESTDIR="$pkgdir" install
-}
-

Copied: gemrb/repos/community-i686/PKGBUILD (from rev 128154, gemrb/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2015-02-23 21:30:37 UTC (rev 128155)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
+pkgname=gemrb
+pkgver=0.8.2
+pkgrel=1
+pkgdesc="OSS implementation of Bioware's Infinity Engine which supports eg. Baldur's Gate"
+arch=('i686' 'x86_64')
+url="http://www.gemrb.org/"
+license=('GPL')
+depends=('python2' 'openal' 'libpng' 'sdl_mixer' 'freetype2')
+# optionally it is possible to build vlc plugin too
+# for future reference: there is also and experimental SDL2/OpenGL renderer
+makedepends=('cmake')
+# i686 build breaks because of the stack protector
+[ $CARCH=="i686" ] && options=('!buildflags')
+install=gemrb.install
+source=("http://downloads.sourceforge.net/sourceforge/gemrb/$pkgname-$pkgver.tar.gz")
+md5sums=('5ed52dda83f8cc4e1e2f2acdeae65d74')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  if [ ! -d "$srcdir/build" ] ; then
+    mkdir "$srcdir/build"
+  fi
+  cd "$srcdir/build"
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+        -DCMAKE_BUILD_TYPE=Release \
+        ../$pkgname-$pkgver
+
+  make
+}
+
+package() {
+  cd "$srcdir"/build
+  make DESTDIR="$pkgdir" install
+}
+

Deleted: community-i686/gemrb.install
===================================================================
--- community-i686/gemrb.install	2015-02-23 21:30:32 UTC (rev 128154)
+++ community-i686/gemrb.install	2015-02-23 21:30:37 UTC (rev 128155)
@@ -1,24 +0,0 @@
-post_install() {
-  cat << EOF
-
-Installing the games
---------------------
-	1. Install the game(s) (eg using wine or Unshield)
-	2. Copy /etc/gemrb/GemRB.cfg.sample to ~/.gemrb/gemrb.cfg or to /etc/gemrb/gemrb.cfg
-	3. Edit gemrb.cfg, mainly to set up the path to the game's data files. It is crucial to get this right.
-	4. Now You can start the game by executing "gemrb" at the command line prompt
-
-EOF
-
-gtk-update-icon-cache -f /usr/share/icons/hicolor/
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  echo "Don't forget to remove game data files."
-  post_install
-}
-

Copied: gemrb/repos/community-i686/gemrb.install (from rev 128154, gemrb/trunk/gemrb.install)
===================================================================
--- community-i686/gemrb.install	                        (rev 0)
+++ community-i686/gemrb.install	2015-02-23 21:30:37 UTC (rev 128155)
@@ -0,0 +1,24 @@
+post_install() {
+  cat << EOF
+
+Installing the games
+--------------------
+	1. Install the game(s) (eg using wine or Unshield)
+	2. Copy /etc/gemrb/GemRB.cfg.sample to ~/.gemrb/gemrb.cfg or to /etc/gemrb/gemrb.cfg
+	3. Edit gemrb.cfg, mainly to set up the path to the game's data files. It is crucial to get this right.
+	4. Now You can start the game by executing "gemrb" at the command line prompt
+
+EOF
+
+gtk-update-icon-cache -f /usr/share/icons/hicolor/
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  echo "Don't forget to remove game data files."
+  post_install
+}
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2015-02-23 21:30:32 UTC (rev 128154)
+++ community-x86_64/PKGBUILD	2015-02-23 21:30:37 UTC (rev 128155)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
-pkgname=gemrb
-pkgver=0.8.1
-pkgrel=1
-pkgdesc="OSS implementation of Bioware's Infinity Engine which supports eg. Baldur's Gate"
-arch=('i686' 'x86_64')
-url="http://www.gemrb.org/"
-license=('GPL')
-depends=('python2' 'openal' 'libpng' 'sdl_mixer' 'freetype2')
-# optionally it is possible to build vlc plugin too
-# for future reference: there is also and experimental SDL2/OpenGL renderer
-makedepends=('cmake')
-# i686 build breaks because of the stack protector
-[ $CARCH=="i686" ] && options=('!buildflags')
-install=gemrb.install
-source=("http://downloads.sourceforge.net/sourceforge/gemrb/$pkgname-$pkgver.tar.gz")
-md5sums=('5e7d727f336caf91657375595982c063')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  if [ ! -d "$srcdir/build" ] ; then
-    mkdir "$srcdir/build"
-  fi
-  cd "$srcdir/build"
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
-        -DCMAKE_BUILD_TYPE=Release \
-        ../$pkgname-$pkgver
-
-  # fix the dirs not being properly set by cmake (bug #269)
-  echo '#define PLUGINDIR "/usr/lib/gemrb/plugins"
-  #define SYSCONFDIR "/etc/gemrb"' >> config.h
-
-  make
-}
-
-package() {
-  cd "$srcdir"/build
-  make DESTDIR="$pkgdir" install
-}
-

Copied: gemrb/repos/community-x86_64/PKGBUILD (from rev 128154, gemrb/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2015-02-23 21:30:37 UTC (rev 128155)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
+pkgname=gemrb
+pkgver=0.8.2
+pkgrel=1
+pkgdesc="OSS implementation of Bioware's Infinity Engine which supports eg. Baldur's Gate"
+arch=('i686' 'x86_64')
+url="http://www.gemrb.org/"
+license=('GPL')
+depends=('python2' 'openal' 'libpng' 'sdl_mixer' 'freetype2')
+# optionally it is possible to build vlc plugin too
+# for future reference: there is also and experimental SDL2/OpenGL renderer
+makedepends=('cmake')
+# i686 build breaks because of the stack protector
+[ $CARCH=="i686" ] && options=('!buildflags')
+install=gemrb.install
+source=("http://downloads.sourceforge.net/sourceforge/gemrb/$pkgname-$pkgver.tar.gz")
+md5sums=('5ed52dda83f8cc4e1e2f2acdeae65d74')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  if [ ! -d "$srcdir/build" ] ; then
+    mkdir "$srcdir/build"
+  fi
+  cd "$srcdir/build"
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+        -DCMAKE_BUILD_TYPE=Release \
+        ../$pkgname-$pkgver
+
+  make
+}
+
+package() {
+  cd "$srcdir"/build
+  make DESTDIR="$pkgdir" install
+}
+

Deleted: community-x86_64/gemrb.install
===================================================================
--- community-x86_64/gemrb.install	2015-02-23 21:30:32 UTC (rev 128154)
+++ community-x86_64/gemrb.install	2015-02-23 21:30:37 UTC (rev 128155)
@@ -1,24 +0,0 @@
-post_install() {
-  cat << EOF
-
-Installing the games
---------------------
-	1. Install the game(s) (eg using wine or Unshield)
-	2. Copy /etc/gemrb/GemRB.cfg.sample to ~/.gemrb/gemrb.cfg or to /etc/gemrb/gemrb.cfg
-	3. Edit gemrb.cfg, mainly to set up the path to the game's data files. It is crucial to get this right.
-	4. Now You can start the game by executing "gemrb" at the command line prompt
-
-EOF
-
-gtk-update-icon-cache -f /usr/share/icons/hicolor/
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  echo "Don't forget to remove game data files."
-  post_install
-}
-

Copied: gemrb/repos/community-x86_64/gemrb.install (from rev 128154, gemrb/trunk/gemrb.install)
===================================================================
--- community-x86_64/gemrb.install	                        (rev 0)
+++ community-x86_64/gemrb.install	2015-02-23 21:30:37 UTC (rev 128155)
@@ -0,0 +1,24 @@
+post_install() {
+  cat << EOF
+
+Installing the games
+--------------------
+	1. Install the game(s) (eg using wine or Unshield)
+	2. Copy /etc/gemrb/GemRB.cfg.sample to ~/.gemrb/gemrb.cfg or to /etc/gemrb/gemrb.cfg
+	3. Edit gemrb.cfg, mainly to set up the path to the game's data files. It is crucial to get this right.
+	4. Now You can start the game by executing "gemrb" at the command line prompt
+
+EOF
+
+gtk-update-icon-cache -f /usr/share/icons/hicolor/
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  echo "Don't forget to remove game data files."
+  post_install
+}
+



More information about the arch-commits mailing list