[arch-commits] Commit in widelands/repos (10 files)

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:41:30
  Author: bpiotrowski
Revision: 257035

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 257034, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands-gcc7.patch
(from rev 257034, widelands/trunk/widelands-gcc7.patch)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 257034, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 257034, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 257034, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands-gcc7.patch
(from rev 257034, widelands/trunk/widelands-gcc7.patch)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 257034, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 257034, widelands/trunk/widelands.png)

---+
 community-staging-i686/PKGBUILD   |   59 
 community-staging-i686/widelands-gcc7.patch   |   15 ++
 community-staging-i686/widelands.desktop  |8 +++
 community-staging-x86_64/PKGBUILD |   59 
 community-staging-x86_64/widelands-gcc7.patch |   15 ++
 community-staging-x86_64/widelands.desktop|8 +++
 6 files changed, 164 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 257034, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 20:41:30 UTC (rev 257035)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=19
+_realver=build${pkgver}
+pkgrel=8
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/";
+license=('GPL')
+depends=('sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 'sdl2_gfx' 'lua51' 
'glew' 'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+replaces=('widelands-data')
+source=("https://launchpad.net/widelands/${_realver}/build${pkgver}/+download/$pkgname-$_realver-src.tar.bz2";
+$pkgname.desktop
+$pkgname.png
+widelands-gcc7.patch)
+sha512sums=('80d70542f30c47498c38c5066ecbfa094cfa16fa3c8c75a950420b334cc019766a90a9f715d326506ce425848da1d75fa6f87e33e3551019c0dd8a4ccf99d666'
+
'ef7e54ffba11a2fe54d2cafc0a12fcbe5028e861b9b980f549317b159c8532ee62423af8724b05cfd344017097e022215fa750f4ca9afffa57703d434017d727'
+
'f7db9d7584ec8431f2f1857baddeb32cd3ae182343e7f0369e61fb444514bd9c2e6a3931ae34f24cc994840dffbbe4451f33845798f3d582f41b31f451b261ac'
+
'a60c6f0309579b167664cf0c1022e6c293dad328c2698793d3bc63e880bc3933db8c708494502e898016443d4ec0deac7bd4f80d201dc681098d8197af98193d')
+
+prepare() {
+# Fix build with GCC 7 - don't turn warnings to errors
+patch -p0 -i widelands-gcc7.patch
+}
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_BASEDIR=/usr \
+-DWL_INSTALL_DATADIR=/usr/share/widelands
+make
+}
+
+package() {
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+mkdir -p $pkgdir/usr/bin
+mv 
$pkgdir/usr/{widelands,wl_map_object_info,wl_render_richtext,wl_map_info} 
$pkgdir/usr/bin
+mv $pkgdir/usr/{VERSION,ChangeLog,CREDITS} $pkgdir/usr/share/widelands
+
+mkdir -p $pkgdir/usr/share/licenses/$pkgname
+mv $pkgdir/usr/COPYING $pkgdir/usr/share/licenses/$pkgname
+
+# Install bin, icon and desktop file
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands-gcc7.patch (from rev 
257034, widelands/trunk/widelands-gcc7.patch)
===
--- community-staging-i686/widelands-gcc7.patch (rev 0)
+++ community-staging-i686/widelands-gcc7.patch 2017-09-11 20:41:30 UTC (rev 
257035)
@@ -0,0 +1,15 @@
+--- widelands-build19-src/CMakeLists.txt.orig  2017-05-21 16:53:12.517380329 
+
 widelands-build19-src/CMakeLists.txt   2017-05-21 16:53:23.590697586 
+
+@@ -176,12 +176,6 @@
+   wl_add_flag(WL_COMPILE_DIAGNOSTICS "-Wunused-macros")
+ endif()
+ 
+-# Turn some warnings into errors.
+-wl_add_flag(WL_COMP

[arch-commits] Commit in widelands/repos (10 files)

2017-08-03 Thread Felix Yan
Date: Thursday, August 3, 2017 @ 20:24:30
  Author: felixonmars
Revision: 247935

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 247934, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands-gcc7.patch
(from rev 247934, widelands/trunk/widelands-gcc7.patch)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 247934, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 247934, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 247934, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands-gcc7.patch
(from rev 247934, widelands/trunk/widelands-gcc7.patch)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 247934, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 247934, widelands/trunk/widelands.png)

---+
 community-staging-i686/PKGBUILD   |   59 
 community-staging-i686/widelands-gcc7.patch   |   15 ++
 community-staging-i686/widelands.desktop  |8 +++
 community-staging-x86_64/PKGBUILD |   59 
 community-staging-x86_64/widelands-gcc7.patch |   15 ++
 community-staging-x86_64/widelands.desktop|8 +++
 6 files changed, 164 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 247934, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-08-03 20:24:30 UTC (rev 247935)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=19
+_realver=build${pkgver}
+pkgrel=7
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/";
+license=('GPL')
+depends=('sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 'sdl2_gfx' 'lua51' 
'glew' 'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+replaces=('widelands-data')
+source=("https://launchpad.net/widelands/${_realver}/build${pkgver}/+download/$pkgname-$_realver-src.tar.bz2";
+$pkgname.desktop
+$pkgname.png
+widelands-gcc7.patch)
+sha512sums=('80d70542f30c47498c38c5066ecbfa094cfa16fa3c8c75a950420b334cc019766a90a9f715d326506ce425848da1d75fa6f87e33e3551019c0dd8a4ccf99d666'
+
'ef7e54ffba11a2fe54d2cafc0a12fcbe5028e861b9b980f549317b159c8532ee62423af8724b05cfd344017097e022215fa750f4ca9afffa57703d434017d727'
+
'f7db9d7584ec8431f2f1857baddeb32cd3ae182343e7f0369e61fb444514bd9c2e6a3931ae34f24cc994840dffbbe4451f33845798f3d582f41b31f451b261ac'
+
'a60c6f0309579b167664cf0c1022e6c293dad328c2698793d3bc63e880bc3933db8c708494502e898016443d4ec0deac7bd4f80d201dc681098d8197af98193d')
+
+prepare() {
+# Fix build with GCC 7 - don't turn warnings to errors
+patch -p0 -i widelands-gcc7.patch
+}
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_BASEDIR=/usr \
+-DWL_INSTALL_DATADIR=/usr/share/widelands
+make
+}
+
+package() {
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+mkdir -p $pkgdir/usr/bin
+mv 
$pkgdir/usr/{widelands,wl_map_object_info,wl_render_richtext,wl_map_info} 
$pkgdir/usr/bin
+mv $pkgdir/usr/{VERSION,ChangeLog,CREDITS} $pkgdir/usr/share/widelands
+
+mkdir -p $pkgdir/usr/share/licenses/$pkgname
+mv $pkgdir/usr/COPYING $pkgdir/usr/share/licenses/$pkgname
+
+# Install bin, icon and desktop file
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands-gcc7.patch (from rev 
247934, widelands/trunk/widelands-gcc7.patch)
===
--- community-staging-i686/widelands-gcc7.patch (rev 0)
+++ community-staging-i686/widelands-gcc7.patch 2017-08-03 20:24:30 UTC (rev 
247935)
@@ -0,0 +1,15 @@
+--- widelands-build19-src/CMakeLists.txt.orig  2017-05-21 16:53:12.517380329 
+
 widelands-build19-src/CMakeLists.txt   2017-05-21 16:53:23.590697586 
+
+@@ -176,12 +176,6 @@
+   wl_add_flag(WL_COMPILE_DIAGNOSTICS "-Wunused-macros")
+ endif()
+ 
+-# Turn some warnings into errors.
+-wl_add_flag(WL_COMPIL

[arch-commits] Commit in widelands/repos (10 files)

2017-05-21 Thread Antonio Rojas
Date: Sunday, May 21, 2017 @ 17:40:03
  Author: arojas
Revision: 228928

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 228927, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands-gcc7.patch
(from rev 228927, widelands/trunk/widelands-gcc7.patch)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 228927, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 228927, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 228927, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands-gcc7.patch
(from rev 228927, widelands/trunk/widelands-gcc7.patch)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 228927, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 228927, widelands/trunk/widelands.png)

---+
 community-staging-i686/PKGBUILD   |   59 
 community-staging-i686/widelands-gcc7.patch   |   15 ++
 community-staging-i686/widelands.desktop  |8 +++
 community-staging-x86_64/PKGBUILD |   59 
 community-staging-x86_64/widelands-gcc7.patch |   15 ++
 community-staging-x86_64/widelands.desktop|8 +++
 6 files changed, 164 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 228927, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-21 17:40:03 UTC (rev 228928)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=19
+_realver=build${pkgver}
+pkgrel=6
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/";
+license=('GPL')
+depends=('sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 'sdl2_gfx' 'lua51' 
'glew' 'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+replaces=('widelands-data')
+source=("https://launchpad.net/widelands/${_realver}/build${pkgver}/+download/$pkgname-$_realver-src.tar.bz2";
+$pkgname.desktop
+$pkgname.png
+widelands-gcc7.patch)
+sha512sums=('80d70542f30c47498c38c5066ecbfa094cfa16fa3c8c75a950420b334cc019766a90a9f715d326506ce425848da1d75fa6f87e33e3551019c0dd8a4ccf99d666'
+
'ef7e54ffba11a2fe54d2cafc0a12fcbe5028e861b9b980f549317b159c8532ee62423af8724b05cfd344017097e022215fa750f4ca9afffa57703d434017d727'
+
'f7db9d7584ec8431f2f1857baddeb32cd3ae182343e7f0369e61fb444514bd9c2e6a3931ae34f24cc994840dffbbe4451f33845798f3d582f41b31f451b261ac'
+
'a60c6f0309579b167664cf0c1022e6c293dad328c2698793d3bc63e880bc3933db8c708494502e898016443d4ec0deac7bd4f80d201dc681098d8197af98193d')
+
+prepare() {
+# Fix build with GCC 7 - don't turn warnings to errors
+patch -p0 -i widelands-gcc7.patch
+}
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_BASEDIR=/usr \
+-DWL_INSTALL_DATADIR=/usr/share/widelands
+make VERBOSE=1
+}
+
+package() {
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+mkdir -p $pkgdir/usr/bin
+mv 
$pkgdir/usr/{widelands,wl_map_object_info,wl_render_richtext,wl_map_info} 
$pkgdir/usr/bin
+mv $pkgdir/usr/{VERSION,ChangeLog,CREDITS} $pkgdir/usr/share/widelands
+
+mkdir -p $pkgdir/usr/share/licenses/$pkgname
+mv $pkgdir/usr/COPYING $pkgdir/usr/share/licenses/$pkgname
+
+# Install bin, icon and desktop file
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands-gcc7.patch (from rev 
228927, widelands/trunk/widelands-gcc7.patch)
===
--- community-staging-i686/widelands-gcc7.patch (rev 0)
+++ community-staging-i686/widelands-gcc7.patch 2017-05-21 17:40:03 UTC (rev 
228928)
@@ -0,0 +1,15 @@
+--- widelands-build19-src/CMakeLists.txt.orig  2017-05-21 16:53:12.517380329 
+
 widelands-build19-src/CMakeLists.txt   2017-05-21 16:53:23.590697586 
+
+@@ -176,12 +176,6 @@
+   wl_add_flag(WL_COMPILE_DIAGNOSTICS "-Wunused-macros")
+ endif()
+ 
+-# Turn some warnings into errors.
+-wl_add_flag(WL_COMPI

[arch-commits] Commit in widelands/repos (10 files)

2016-08-02 Thread Laurent Carlier
Date: Wednesday, August 3, 2016 @ 06:31:26
  Author: lcarlier
Revision: 184943

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 184942, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 184942, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 184942, widelands/trunk/widelands.png)
  widelands/repos/community-staging-i686/widelands.sh
(from rev 184942, widelands/trunk/widelands.sh)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 184942, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 184942, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 184942, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/widelands.sh
(from rev 184942, widelands/trunk/widelands.sh)

+
 community-staging-i686/PKGBUILD|   51 +++
 community-staging-i686/widelands.desktop   |8 
 community-staging-i686/widelands.sh|3 +
 community-staging-x86_64/PKGBUILD  |   51 +++
 community-staging-x86_64/widelands.desktop |8 
 community-staging-x86_64/widelands.sh  |3 +
 6 files changed, 124 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 184942, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-08-03 06:31:26 UTC (rev 184943)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=18
+_realver=build${pkgver}
+pkgrel=6
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/";
+license=('GPL')
+depends=('sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'sdl_gfx' 'lua51' 'glew' 
'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+source=("https://launchpad.net/widelands/${_realver}/build-${pkgver}/+download/$pkgname-$_realver-src.tar.bz2";
+$pkgname.desktop
+$pkgname.png
+$pkgname.sh)
+md5sums=('01efe8db8cd25ffeb4f82b8b4ab6652e'
+ '15820bf099fd6f16251fe70a75c534bb'
+ '3dfda7e9ca76ca00dd98d745d0ceb328'
+ '7cae50aba5ed0cd2cfeea79124637b46')
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. -DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_DATADIR=share/$pkgname \
+-DWL_INSTALL_BINDIR=bin
+make
+}
+
+package() {
+depends=(${depends[@]} 'widelands-data')
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+rm -r 
$pkgdir/usr/share/widelands/{campaigns,fonts,global,locale,maps,music,pics,scripting,sound,tribes,txts,worlds}
+
+# Install bin, icon and desktop file
+#install -Dm 755 src/$pkgname $pkgdir/usr/share/$pkgname/$pkgname
+#install -Dm 755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands.desktop (from rev 
184942, widelands/trunk/widelands.desktop)
===
--- community-staging-i686/widelands.desktop(rev 0)
+++ community-staging-i686/widelands.desktop2016-08-03 06:31:26 UTC (rev 
184943)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Widelands
+GenericName=Widelands
+Comment=Realtime strategy game
+Icon=widelands
+Exec=widelands
+Type=Application
+Categories=Game;StrategyGame;

Copied: widelands/repos/community-staging-i686/widelands.png (from rev 184942, 
widelands/trunk/widelands.png)
===
(Binary files differ)

Copied: widelands/repos/community-staging-i686/widelands.sh (from rev 184942, 
widelands/trunk/widelands.sh)
===
--- community-staging-i686/widelands.sh (rev 0)
+++ community-staging-i686/widelands.sh 2016-08-03 06:31:26 UTC (rev 184943)
@@ -0,0 +1,3 @@
+#!/bin/sh
+cd /usr/share/widelands
+./widelands $*

Copied: widelands/repos/community-staging-x86_64/PKGBUILD (from rev 184942, 
widelands/trunk/PKGBUILD)
===
--- 

[arch-commits] Commit in widelands/repos (10 files)

2015-12-06 Thread Allan McRae
Date: Sunday, December 6, 2015 @ 18:23:22
  Author: allan
Revision: 148970

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 148968, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 148969, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 148969, widelands/trunk/widelands.png)
  widelands/repos/community-staging-i686/widelands.sh
(from rev 148969, widelands/trunk/widelands.sh)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 148969, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 148969, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 148969, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/widelands.sh
(from rev 148969, widelands/trunk/widelands.sh)

+
 community-staging-i686/PKGBUILD|   51 +++
 community-staging-i686/widelands.desktop   |8 
 community-staging-i686/widelands.sh|3 +
 community-staging-x86_64/PKGBUILD  |   51 +++
 community-staging-x86_64/widelands.desktop |8 
 community-staging-x86_64/widelands.sh  |3 +
 6 files changed, 124 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 148968, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:23:22 UTC (rev 148970)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=18
+_realver=build${pkgver}
+pkgrel=5
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/";
+license=('GPL')
+depends=('sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'sdl_gfx' 'lua51' 'glew' 
'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+source=("https://launchpad.net/widelands/${_realver}/build-${pkgver}/+download/$pkgname-$_realver-src.tar.bz2";
+$pkgname.desktop
+$pkgname.png
+$pkgname.sh)
+md5sums=('01efe8db8cd25ffeb4f82b8b4ab6652e'
+ '15820bf099fd6f16251fe70a75c534bb'
+ '3dfda7e9ca76ca00dd98d745d0ceb328'
+ '7cae50aba5ed0cd2cfeea79124637b46')
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. -DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_DATADIR=share/$pkgname \
+-DWL_INSTALL_BINDIR=bin
+make
+}
+
+package() {
+depends=(${depends[@]} 'widelands-data')
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+rm -r 
$pkgdir/usr/share/widelands/{campaigns,fonts,global,locale,maps,music,pics,scripting,sound,tribes,txts,worlds}
+
+# Install bin, icon and desktop file
+#install -Dm 755 src/$pkgname $pkgdir/usr/share/$pkgname/$pkgname
+#install -Dm 755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands.desktop (from rev 
148969, widelands/trunk/widelands.desktop)
===
--- community-staging-i686/widelands.desktop(rev 0)
+++ community-staging-i686/widelands.desktop2015-12-06 17:23:22 UTC (rev 
148970)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Widelands
+GenericName=Widelands
+Comment=Realtime strategy game
+Icon=widelands
+Exec=widelands
+Type=Application
+Categories=Game;StrategyGame;

Copied: widelands/repos/community-staging-i686/widelands.png (from rev 148969, 
widelands/trunk/widelands.png)
===
(Binary files differ)

Copied: widelands/repos/community-staging-i686/widelands.sh (from rev 148969, 
widelands/trunk/widelands.sh)
===
--- community-staging-i686/widelands.sh (rev 0)
+++ community-staging-i686/widelands.sh 2015-12-06 17:23:22 UTC (rev 148970)
@@ -0,0 +1,3 @@
+#!/bin/sh
+cd /usr/share/widelands
+./widelands $*

Copied: widelands/repos/community-staging-x86_64/PKGBUILD (from rev 148969, 
widelands/trunk/PKGBUILD)
===
--- comm

[arch-commits] Commit in widelands/repos (10 files)

2015-09-28 Thread Evangelos Foutras
Date: Monday, September 28, 2015 @ 23:31:35
  Author: foutrelis
Revision: 142162

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 142161, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 142161, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 142161, widelands/trunk/widelands.png)
  widelands/repos/community-staging-i686/widelands.sh
(from rev 142161, widelands/trunk/widelands.sh)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 142161, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 142161, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 142161, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/widelands.sh
(from rev 142161, widelands/trunk/widelands.sh)

+
 community-staging-i686/PKGBUILD|   51 +++
 community-staging-i686/widelands.desktop   |8 
 community-staging-i686/widelands.sh|3 +
 community-staging-x86_64/PKGBUILD  |   51 +++
 community-staging-x86_64/widelands.desktop |8 
 community-staging-x86_64/widelands.sh  |3 +
 6 files changed, 124 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 142161, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-28 21:31:35 UTC (rev 142162)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=18
+_realver=build${pkgver}
+pkgrel=4
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/";
+license=('GPL')
+depends=('sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'sdl_gfx' 'lua51' 'glew' 
'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+source=("https://launchpad.net/widelands/${_realver}/build-${pkgver}/+download/$pkgname-$_realver-src.tar.bz2";
+$pkgname.desktop
+$pkgname.png
+$pkgname.sh)
+md5sums=('01efe8db8cd25ffeb4f82b8b4ab6652e'
+ '15820bf099fd6f16251fe70a75c534bb'
+ '3dfda7e9ca76ca00dd98d745d0ceb328'
+ '7cae50aba5ed0cd2cfeea79124637b46')
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. -DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_DATADIR=share/$pkgname \
+-DWL_INSTALL_BINDIR=bin
+make
+}
+
+package() {
+depends=(${depends[@]} 'widelands-data')
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+rm -r 
$pkgdir/usr/share/widelands/{campaigns,fonts,global,locale,maps,music,pics,scripting,sound,tribes,txts,worlds}
+
+# Install bin, icon and desktop file
+#install -Dm 755 src/$pkgname $pkgdir/usr/share/$pkgname/$pkgname
+#install -Dm 755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands.desktop (from rev 
142161, widelands/trunk/widelands.desktop)
===
--- community-staging-i686/widelands.desktop(rev 0)
+++ community-staging-i686/widelands.desktop2015-09-28 21:31:35 UTC (rev 
142162)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Widelands
+GenericName=Widelands
+Comment=Realtime strategy game
+Icon=widelands
+Exec=widelands
+Type=Application
+Categories=Game;StrategyGame;

Copied: widelands/repos/community-staging-i686/widelands.png (from rev 142161, 
widelands/trunk/widelands.png)
===
(Binary files differ)

Copied: widelands/repos/community-staging-i686/widelands.sh (from rev 142161, 
widelands/trunk/widelands.sh)
===
--- community-staging-i686/widelands.sh (rev 0)
+++ community-staging-i686/widelands.sh 2015-09-28 21:31:35 UTC (rev 142162)
@@ -0,0 +1,3 @@
+#!/bin/sh
+cd /usr/share/widelands
+./widelands $*

Copied: widelands/repos/community-staging-x86_64/PKGBUILD (from rev 142161, 
widelands/trunk/PKGBUILD)
===
--

[arch-commits] Commit in widelands/repos (10 files)

2015-01-31 Thread Andreas Radke
Date: Saturday, January 31, 2015 @ 20:58:30
  Author: andyrtr
Revision: 126864

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 126863, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 126863, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 126863, widelands/trunk/widelands.png)
  widelands/repos/community-staging-i686/widelands.sh
(from rev 126863, widelands/trunk/widelands.sh)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 126863, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 126863, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 126863, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/widelands.sh
(from rev 126863, widelands/trunk/widelands.sh)

+
 community-staging-i686/PKGBUILD|   51 +++
 community-staging-i686/widelands.desktop   |8 
 community-staging-i686/widelands.sh|3 +
 community-staging-x86_64/PKGBUILD  |   51 +++
 community-staging-x86_64/widelands.desktop |8 
 community-staging-x86_64/widelands.sh  |3 +
 6 files changed, 124 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 126863, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-01-31 19:58:30 UTC (rev 126864)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=18
+_realver=build${pkgver}
+pkgrel=3
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/";
+license=('GPL')
+depends=('sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'sdl_gfx' 'lua51' 'glew' 
'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+source=("https://launchpad.net/widelands/${_realver}/build-${pkgver}/+download/$pkgname-$_realver-src.tar.bz2";
+$pkgname.desktop
+$pkgname.png
+$pkgname.sh)
+md5sums=('01efe8db8cd25ffeb4f82b8b4ab6652e'
+ '15820bf099fd6f16251fe70a75c534bb'
+ '3dfda7e9ca76ca00dd98d745d0ceb328'
+ '7cae50aba5ed0cd2cfeea79124637b46')
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. -DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_DATADIR=share/$pkgname \
+-DWL_INSTALL_BINDIR=bin
+make
+}
+
+package() {
+depends=(${depends[@]} 'widelands-data')
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+rm -r 
$pkgdir/usr/share/widelands/{campaigns,fonts,global,locale,maps,music,pics,scripting,sound,tribes,txts,worlds}
+
+# Install bin, icon and desktop file
+#install -Dm 755 src/$pkgname $pkgdir/usr/share/$pkgname/$pkgname
+#install -Dm 755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands.desktop (from rev 
126863, widelands/trunk/widelands.desktop)
===
--- community-staging-i686/widelands.desktop(rev 0)
+++ community-staging-i686/widelands.desktop2015-01-31 19:58:30 UTC (rev 
126864)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Widelands
+GenericName=Widelands
+Comment=Realtime strategy game
+Icon=widelands
+Exec=widelands
+Type=Application
+Categories=Game;StrategyGame;

Copied: widelands/repos/community-staging-i686/widelands.png (from rev 126863, 
widelands/trunk/widelands.png)
===
(Binary files differ)

Copied: widelands/repos/community-staging-i686/widelands.sh (from rev 126863, 
widelands/trunk/widelands.sh)
===
--- community-staging-i686/widelands.sh (rev 0)
+++ community-staging-i686/widelands.sh 2015-01-31 19:58:30 UTC (rev 126864)
@@ -0,0 +1,3 @@
+#!/bin/sh
+cd /usr/share/widelands
+./widelands $*

Copied: widelands/repos/community-staging-x86_64/PKGBUILD (from rev 126863, 
widelands/trunk/PKGBUILD)
===
--- 

[arch-commits] Commit in widelands/repos (10 files)

2013-11-27 Thread Sven-Hendrik Haase
Date: Wednesday, November 27, 2013 @ 17:48:17
  Author: svenstaro
Revision: 101552

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 101551, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 101551, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 101551, widelands/trunk/widelands.png)
  widelands/repos/community-staging-i686/widelands.sh
(from rev 101551, widelands/trunk/widelands.sh)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 101551, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 101551, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 101551, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/widelands.sh
(from rev 101551, widelands/trunk/widelands.sh)

+
 community-staging-i686/PKGBUILD|   54 +++
 community-staging-i686/widelands.desktop   |8 
 community-staging-i686/widelands.sh|3 +
 community-staging-x86_64/PKGBUILD  |   54 +++
 community-staging-x86_64/widelands.desktop |8 
 community-staging-x86_64/widelands.sh  |3 +
 6 files changed, 130 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 101551, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-11-27 16:48:17 UTC (rev 101552)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=17
+_realver=build17
+pkgrel=11
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/";
+license=('GPL')
+depends=('sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'sdl_gfx' 'lua51' 'glew' 
'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+source=("https://launchpad.net/widelands/build17/build-17/+download/$pkgname-$_realver-src.tar.bz2";
+$pkgname.desktop
+$pkgname.png
+$pkgname.sh)
+md5sums=('bdc9bc0aa631af1aa7fb450507611a58'
+ '15820bf099fd6f16251fe70a75c534bb'
+ '3dfda7e9ca76ca00dd98d745d0ceb328'
+ '7cae50aba5ed0cd2cfeea79124637b46')
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+sed -i "1 i #include " src/main.cc
+sed -i "/Boost_USE_STATIC_LIBS/d" CMakeLists.txt
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. -DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_DATADIR=share/$pkgname \
+-DWL_INSTALL_BINDIR=bin
+make
+}
+
+package() {
+depends=(${depends[@]} 'widelands-data')
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+rm -r 
$pkgdir/usr/share/widelands/{campaigns,fonts,global,locale,maps,music,pics,scripting,sound,tribes,txts,worlds}
+
+# Install bin, icon and desktop file
+#install -Dm 755 src/$pkgname $pkgdir/usr/share/$pkgname/$pkgname
+#install -Dm 755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands.desktop (from rev 
101551, widelands/trunk/widelands.desktop)
===
--- community-staging-i686/widelands.desktop(rev 0)
+++ community-staging-i686/widelands.desktop2013-11-27 16:48:17 UTC (rev 
101552)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Widelands
+GenericName=Widelands
+Comment=Realtime strategy game
+Icon=widelands
+Exec=widelands
+Type=Application
+Categories=Game;StrategyGame;

Copied: widelands/repos/community-staging-i686/widelands.png (from rev 101551, 
widelands/trunk/widelands.png)
===
(Binary files differ)

Copied: widelands/repos/community-staging-i686/widelands.sh (from rev 101551, 
widelands/trunk/widelands.sh)
===
--- community-staging-i686/widelands.sh (rev 0)
+++ community-staging-i686/widelands.sh 2013-11-27 16:48:17 UTC (rev 101552)
@@ -0,0 +1,3 @@
+#!/bin/sh
+cd /usr/share/widelands
+./widelands $*

Copied: widelands/repos/community-staging-x86_64/PKGBUILD (from rev 101551, 
widelands/trunk

[arch-commits] Commit in widelands/repos (10 files)

2013-11-13 Thread Jan Steffens
Date: Wednesday, November 13, 2013 @ 13:46:30
  Author: heftig
Revision: 100930

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 100929, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 100929, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 100929, widelands/trunk/widelands.png)
  widelands/repos/community-staging-i686/widelands.sh
(from rev 100929, widelands/trunk/widelands.sh)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 100929, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 100929, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 100929, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/widelands.sh
(from rev 100929, widelands/trunk/widelands.sh)

+
 community-staging-i686/PKGBUILD|   54 +++
 community-staging-i686/widelands.desktop   |8 
 community-staging-i686/widelands.sh|3 +
 community-staging-x86_64/PKGBUILD  |   54 +++
 community-staging-x86_64/widelands.desktop |8 
 community-staging-x86_64/widelands.sh  |3 +
 6 files changed, 130 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 100929, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-11-13 12:46:30 UTC (rev 100930)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=17
+_realver=build17
+pkgrel=10
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/";
+license=('GPL')
+depends=('sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'sdl_gfx' 'lua51' 'glew' 
'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+source=("https://launchpad.net/widelands/build17/build-17/+download/$pkgname-$_realver-src.tar.bz2";
+$pkgname.desktop
+$pkgname.png
+$pkgname.sh)
+md5sums=('bdc9bc0aa631af1aa7fb450507611a58'
+ '15820bf099fd6f16251fe70a75c534bb'
+ '3dfda7e9ca76ca00dd98d745d0ceb328'
+ '7cae50aba5ed0cd2cfeea79124637b46')
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+sed -i "1 i #include " src/main.cc
+sed -i "/Boost_USE_STATIC_LIBS/d" CMakeLists.txt
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. -DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_DATADIR=share/$pkgname \
+-DWL_INSTALL_BINDIR=bin
+make
+}
+
+package() {
+depends=(${depends[@]} 'widelands-data')
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+rm -r 
$pkgdir/usr/share/widelands/{campaigns,fonts,global,locale,maps,music,pics,scripting,sound,tribes,txts,worlds}
+
+# Install bin, icon and desktop file
+#install -Dm 755 src/$pkgname $pkgdir/usr/share/$pkgname/$pkgname
+#install -Dm 755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands.desktop (from rev 
100929, widelands/trunk/widelands.desktop)
===
--- community-staging-i686/widelands.desktop(rev 0)
+++ community-staging-i686/widelands.desktop2013-11-13 12:46:30 UTC (rev 
100930)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Widelands
+GenericName=Widelands
+Comment=Realtime strategy game
+Icon=widelands
+Exec=widelands
+Type=Application
+Categories=Game;StrategyGame;

Copied: widelands/repos/community-staging-i686/widelands.png (from rev 100929, 
widelands/trunk/widelands.png)
===
(Binary files differ)

Copied: widelands/repos/community-staging-i686/widelands.sh (from rev 100929, 
widelands/trunk/widelands.sh)
===
--- community-staging-i686/widelands.sh (rev 0)
+++ community-staging-i686/widelands.sh 2013-11-13 12:46:30 UTC (rev 100930)
@@ -0,0 +1,3 @@
+#!/bin/sh
+cd /usr/share/widelands
+./widelands $*

Copied: widelands/repos/community-staging-x86_64/PKGBUILD (from rev 100929, 
widelands/trunk/PK

[arch-commits] Commit in widelands/repos (10 files)

2013-07-25 Thread Sven-Hendrik Haase
Date: Thursday, July 25, 2013 @ 23:25:14
  Author: svenstaro
Revision: 94499

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 94498, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 94498, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 94498, widelands/trunk/widelands.png)
  widelands/repos/community-staging-i686/widelands.sh
(from rev 94498, widelands/trunk/widelands.sh)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 94498, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 94498, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 94498, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/widelands.sh
(from rev 94498, widelands/trunk/widelands.sh)

+
 community-staging-i686/PKGBUILD|   54 +++
 community-staging-i686/widelands.desktop   |8 
 community-staging-i686/widelands.sh|3 +
 community-staging-x86_64/PKGBUILD  |   54 +++
 community-staging-x86_64/widelands.desktop |8 
 community-staging-x86_64/widelands.sh  |3 +
 6 files changed, 130 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 94498, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-07-25 21:25:14 UTC (rev 94499)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=17
+_realver=build17
+pkgrel=9
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/";
+license=('GPL')
+depends=('sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'sdl_gfx' 'lua51' 'glew' 
'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+source=("https://launchpad.net/widelands/build17/build-17/+download/$pkgname-$_realver-src.tar.bz2";
+$pkgname.desktop
+$pkgname.png
+$pkgname.sh)
+md5sums=('bdc9bc0aa631af1aa7fb450507611a58'
+ '15820bf099fd6f16251fe70a75c534bb'
+ '3dfda7e9ca76ca00dd98d745d0ceb328'
+ '7cae50aba5ed0cd2cfeea79124637b46')
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+sed -i "1 i #include " src/main.cc
+sed -i "/Boost_USE_STATIC_LIBS/d" CMakeLists.txt
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. -DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_DATADIR=share/$pkgname \
+-DWL_INSTALL_BINDIR=bin
+make
+}
+
+package() {
+depends=(${depends[@]} 'widelands-data')
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+rm -r 
$pkgdir/usr/share/widelands/{campaigns,fonts,global,locale,maps,music,pics,scripting,sound,tribes,txts,worlds}
+
+# Install bin, icon and desktop file
+#install -Dm 755 src/$pkgname $pkgdir/usr/share/$pkgname/$pkgname
+#install -Dm 755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands.desktop (from rev 
94498, widelands/trunk/widelands.desktop)
===
--- community-staging-i686/widelands.desktop(rev 0)
+++ community-staging-i686/widelands.desktop2013-07-25 21:25:14 UTC (rev 
94499)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Widelands
+GenericName=Widelands
+Comment=Realtime strategy game
+Icon=widelands
+Exec=widelands
+Type=Application
+Categories=Game;StrategyGame;

Copied: widelands/repos/community-staging-i686/widelands.png (from rev 94498, 
widelands/trunk/widelands.png)
===
(Binary files differ)

Copied: widelands/repos/community-staging-i686/widelands.sh (from rev 94498, 
widelands/trunk/widelands.sh)
===
--- community-staging-i686/widelands.sh (rev 0)
+++ community-staging-i686/widelands.sh 2013-07-25 21:25:14 UTC (rev 94499)
@@ -0,0 +1,3 @@
+#!/bin/sh
+cd /usr/share/widelands
+./widelands $*

Copied: widelands/repos/community-staging-x86_64/PKGBUILD (from rev 94498, 
widelands/trunk/PKGBUILD)