[arch-commits] Commit in (5 files)

2012-11-17 Thread Jan Steffens
Date: Saturday, November 17, 2012 @ 03:53:44
  Author: heftig
Revision: 171321

Add check (makedep for pulse 3)

Added:
  check/
  check/repos/
  check/trunk/
  check/trunk/PKGBUILD
  check/trunk/check.install

---+
 PKGBUILD  |   31 +++
 check.install |   20 
 2 files changed, 51 insertions(+)

Added: check/trunk/PKGBUILD
===
--- check/trunk/PKGBUILD(rev 0)
+++ check/trunk/PKGBUILD2012-11-17 08:53:44 UTC (rev 171321)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Jeremy Cowgar jer...@cowgar.com
+
+pkgname=check
+pkgver=0.9.9
+pkgrel=1
+pkgdesc=A unit testing framework for C
+arch=('i686' 'x86_64')
+url=http://check.sourceforge.net/;
+license=('LGPL')
+options=('!libtool')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('f3702f2fcfc19ce3f62dca66c241a168')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # get rid of the package's info directory,
+  # install-info adds entries for us at install-time
+  rm $pkgdir/usr/share/info/dir
+}


Property changes on: check/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: check/trunk/check.install
===
--- check/trunk/check.install   (rev 0)
+++ check/trunk/check.install   2012-11-17 08:53:44 UTC (rev 171321)
@@ -0,0 +1,20 @@
+_infodir=/usr/share/info
+_filelist=(check.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${_filelist[@]}; do
+install-info $_infodir/$file $_infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${_filelist[@]}; do
+install-info --delete $_infodir/$file $_infodir/dir 2 /dev/null
+  done
+}



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

2012-11-17 Thread Jan Steffens
Date: Saturday, November 17, 2012 @ 03:55:42
  Author: heftig
Revision: 171322

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

Added:
  check/repos/extra-i686/
  check/repos/extra-i686/PKGBUILD
(from rev 171321, check/trunk/PKGBUILD)
  check/repos/extra-i686/check.install
(from rev 171321, check/trunk/check.install)
  check/repos/extra-x86_64/
  check/repos/extra-x86_64/PKGBUILD
(from rev 171321, check/trunk/PKGBUILD)
  check/repos/extra-x86_64/check.install
(from rev 171321, check/trunk/check.install)

+
 extra-i686/PKGBUILD|   31 +++
 extra-i686/check.install   |   20 
 extra-x86_64/PKGBUILD  |   31 +++
 extra-x86_64/check.install |   20 
 4 files changed, 102 insertions(+)

Copied: check/repos/extra-i686/PKGBUILD (from rev 171321, check/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-11-17 08:55:42 UTC (rev 171322)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Jeremy Cowgar jer...@cowgar.com
+
+pkgname=check
+pkgver=0.9.9
+pkgrel=1
+pkgdesc=A unit testing framework for C
+arch=('i686' 'x86_64')
+url=http://check.sourceforge.net/;
+license=('LGPL')
+options=('!libtool')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('f3702f2fcfc19ce3f62dca66c241a168')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # get rid of the package's info directory,
+  # install-info adds entries for us at install-time
+  rm $pkgdir/usr/share/info/dir
+}

Copied: check/repos/extra-i686/check.install (from rev 171321, 
check/trunk/check.install)
===
--- extra-i686/check.install(rev 0)
+++ extra-i686/check.install2012-11-17 08:55:42 UTC (rev 171322)
@@ -0,0 +1,20 @@
+_infodir=/usr/share/info
+_filelist=(check.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${_filelist[@]}; do
+install-info $_infodir/$file $_infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${_filelist[@]}; do
+install-info --delete $_infodir/$file $_infodir/dir 2 /dev/null
+  done
+}

Copied: check/repos/extra-x86_64/PKGBUILD (from rev 171321, 
check/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-11-17 08:55:42 UTC (rev 171322)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Jeremy Cowgar jer...@cowgar.com
+
+pkgname=check
+pkgver=0.9.9
+pkgrel=1
+pkgdesc=A unit testing framework for C
+arch=('i686' 'x86_64')
+url=http://check.sourceforge.net/;
+license=('LGPL')
+options=('!libtool')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('f3702f2fcfc19ce3f62dca66c241a168')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # get rid of the package's info directory,
+  # install-info adds entries for us at install-time
+  rm $pkgdir/usr/share/info/dir
+}

Copied: check/repos/extra-x86_64/check.install (from rev 171321, 
check/trunk/check.install)
===
--- extra-x86_64/check.install  (rev 0)
+++ extra-x86_64/check.install  2012-11-17 08:55:42 UTC (rev 171322)
@@ -0,0 +1,20 @@
+_infodir=/usr/share/info
+_filelist=(check.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${_filelist[@]}; do
+install-info $_infodir/$file $_infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${_filelist[@]}; do
+install-info --delete $_infodir/$file $_infodir/dir 2 /dev/null
+  done
+}



[arch-commits] Commit in pulseaudio/trunk (PKGBUILD)

2012-11-17 Thread Jan Steffens
Date: Saturday, November 17, 2012 @ 04:10:50
  Author: heftig
Revision: 171323

2.99.2 (3.0 RC2)

Modified:
  pulseaudio/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 08:55:42 UTC (rev 171322)
+++ PKGBUILD2012-11-17 09:10:50 UTC (rev 171323)
@@ -7,19 +7,19 @@
 pkgbase=pulseaudio
 pkgname=(pulseaudio libpulse)
 pkgdesc=A featureful, general-purpose sound server
-pkgver=2.1
+pkgver=2.99.2
 pkgrel=1
 arch=(i686 x86_64)
 url=http://www.freedesktop.org/wiki/Software/PulseAudio;
 license=(GPL LGPL)
 makedepends=(libasyncns libcap attr libxtst libsm libsamplerate libtool rtkit
- speex tdb udev dbus-core avahi bluez gconf intltool jack
+ speex tdb udev dbus-core avahi bluez gconf intltool jack sbc
  lirc-utils openssl fftw orc json-c gtk2 webrtc-audio-processing
- systemd)
+ systemd check)
 options=(!emptydirs !libtool)
 
source=(http://freedesktop.org/software/$pkgbase/releases/$pkgbase-$pkgver.tar.xz
 pulseaudio.xinit)
-sha256sums=('ef6b347bf47abfb98080795f1583018ac959b4aeb4df916b879f9e1eaba0ca7f'
+sha256sums=('e28d19610344f80bf73a1ae5ce64828c1c489fb47b9923c7e06519b43b1339d9'
 'a0db6cdc74fbf0ca10e2343c08e1e228f109221c6c0ff91b0bfade5c4bdf03cf')
 
 build() {
@@ -44,9 +44,10 @@
 
 package_pulseaudio() {
   depends=(libpulse=$pkgver-$pkgrel rtkit libltdl speex tdb udev fftw orc
-   libsamplerate webrtc-audio-processing libsystemd)
+   libsamplerate webrtc-audio-processing systemd)
   optdepends=('avahi: zeroconf support'
   'bluez: bluetooth support'
+  'sbc: bluetooth support'
   'gconf: configuration through gconf (paprefs)'
   'jack: jack support'
   'lirc-utils: infra-red support'



[arch-commits] Commit in kdegames-kdiamond/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:11:50
  Author: andrea
Revision: 171324

KDE 4.10 beta1 - fixes

Added:
  kdegames-kdiamond/kde-unstable/kdegames-kdiamond.install
Modified:
  kdegames-kdiamond/kde-unstable/PKGBUILD

---+
 PKGBUILD  |3 ++-
 kdegames-kdiamond.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:10:50 UTC (rev 171323)
+++ PKGBUILD2012-11-17 09:11:50 UTC (rev 171324)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kdiamond-${pkgver}.tar.xz;)
 sha1sums=('054bdda050ee60bc475a9f95ad92fab8f60d77f7')
 

Added: kdegames-kdiamond.install
===
--- kdegames-kdiamond.install   (rev 0)
+++ kdegames-kdiamond.install   2012-11-17 09:11:50 UTC (rev 171324)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kfourinline/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:11:54
  Author: andrea
Revision: 171325

KDE 4.10 beta1 - fixes

Added:
  kdegames-kfourinline/kde-unstable/kdegames-kfourinline.install
Modified:
  kdegames-kfourinline/kde-unstable/PKGBUILD

--+
 PKGBUILD |3 ++-
 kdegames-kfourinline.install |   12 
 2 files changed, 14 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:11:50 UTC (rev 171324)
+++ PKGBUILD2012-11-17 09:11:54 UTC (rev 171325)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kfourinline-${pkgver}.tar.xz;)
 sha1sums=('6512cbdd437dc498e1de5305ef262ab5d6a10463')
 

Added: kdegames-kfourinline.install
===
--- kdegames-kfourinline.install(rev 0)
+++ kdegames-kfourinline.install2012-11-17 09:11:54 UTC (rev 171325)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kgoldrunner/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:11:57
  Author: andrea
Revision: 171326

KDE 4.10 beta1 - fixes

Added:
  kdegames-kgoldrunner/kde-unstable/kdegames-kgoldrunner.install
Modified:
  kdegames-kgoldrunner/kde-unstable/PKGBUILD

--+
 PKGBUILD |3 ++-
 kdegames-kgoldrunner.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:11:54 UTC (rev 171325)
+++ PKGBUILD2012-11-17 09:11:57 UTC (rev 171326)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kgoldrunner-${pkgver}.tar.xz;)
 sha1sums=('3b4b78694ab4be2cbc1b7e7da55be0bd0ee0fe03')
 

Added: kdegames-kgoldrunner.install
===
--- kdegames-kgoldrunner.install(rev 0)
+++ kdegames-kgoldrunner.install2012-11-17 09:11:57 UTC (rev 171326)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kigo/kde-unstable (PKGBUILD kdegames-kigo.install)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:01
  Author: andrea
Revision: 171327

KDE 4.10 beta1 - fixes

Added:
  kdegames-kigo/kde-unstable/kdegames-kigo.install
Modified:
  kdegames-kigo/kde-unstable/PKGBUILD

---+
 PKGBUILD  |3 ++-
 kdegames-kigo.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:11:57 UTC (rev 171326)
+++ PKGBUILD2012-11-17 09:12:01 UTC (rev 171327)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 source=(http://download.kde.org/unstable/${pkgver}/src/kigo-${pkgver}.tar.xz;)
 sha1sums=('b19b2f147bb5bccae5f88f6eba7940fc95e693f8')
 

Added: kdegames-kigo.install
===
--- kdegames-kigo.install   (rev 0)
+++ kdegames-kigo.install   2012-11-17 09:12:01 UTC (rev 171327)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-killbots/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:04
  Author: andrea
Revision: 171328

KDE 4.10 beta1 - fixes

Added:
  kdegames-killbots/kde-unstable/kdegames-killbots.install
Modified:
  kdegames-killbots/kde-unstable/PKGBUILD

---+
 PKGBUILD  |3 ++-
 kdegames-killbots.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:01 UTC (rev 171327)
+++ PKGBUILD2012-11-17 09:12:04 UTC (rev 171328)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/killbots-${pkgver}.tar.xz;)
 sha1sums=('403e36ec16722d985bc5f58ecb2e28dcb83007f3')
 

Added: kdegames-killbots.install
===
--- kdegames-killbots.install   (rev 0)
+++ kdegames-killbots.install   2012-11-17 09:12:04 UTC (rev 171328)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kiriki/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:08
  Author: andrea
Revision: 171329

KDE 4.10 beta1 - fixes

Added:
  kdegames-kiriki/kde-unstable/kdegames-kiriki.install
Modified:
  kdegames-kiriki/kde-unstable/PKGBUILD

-+
 PKGBUILD|3 ++-
 kdegames-kiriki.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:04 UTC (rev 171328)
+++ PKGBUILD2012-11-17 09:12:08 UTC (rev 171329)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kiriki-${pkgver}.tar.xz;)
 sha1sums=('c0502c16e074a1347b6a698d22a51c8a48f93b69')
 

Added: kdegames-kiriki.install
===
--- kdegames-kiriki.install (rev 0)
+++ kdegames-kiriki.install 2012-11-17 09:12:08 UTC (rev 171329)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kjumpingcube/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:13
  Author: andrea
Revision: 171330

KDE 4.10 beta1 - fixes

Added:
  kdegames-kjumpingcube/kde-unstable/kdegames-kjumpingcube.install
Modified:
  kdegames-kjumpingcube/kde-unstable/PKGBUILD

---+
 PKGBUILD  |3 ++-
 kdegames-kjumpingcube.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:08 UTC (rev 171329)
+++ PKGBUILD2012-11-17 09:12:13 UTC (rev 171330)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kjumpingcube-${pkgver}.tar.xz;)
 sha1sums=('961bfa473f600230b5318988fc79c954c9d0de22')
 

Added: kdegames-kjumpingcube.install
===
--- kdegames-kjumpingcube.install   (rev 0)
+++ kdegames-kjumpingcube.install   2012-11-17 09:12:13 UTC (rev 171330)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-klickety/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:16
  Author: andrea
Revision: 171331

KDE 4.10 beta1 - fixes

Added:
  kdegames-klickety/kde-unstable/kdegames-klickety.install
Modified:
  kdegames-klickety/kde-unstable/PKGBUILD

---+
 PKGBUILD  |3 ++-
 kdegames-klickety.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:13 UTC (rev 171330)
+++ PKGBUILD2012-11-17 09:12:16 UTC (rev 171331)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/klickety-${pkgver}.tar.xz;)
 sha1sums=('32393e1e3277536a62688c1e960977eb5a33f43d')
 

Added: kdegames-klickety.install
===
--- kdegames-klickety.install   (rev 0)
+++ kdegames-klickety.install   2012-11-17 09:12:16 UTC (rev 171331)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-klines/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:20
  Author: andrea
Revision: 171332

KDE 4.10 beta1 - fixes

Added:
  kdegames-klines/kde-unstable/kdegames-klines.install
Modified:
  kdegames-klines/kde-unstable/PKGBUILD

-+
 PKGBUILD|3 ++-
 kdegames-klines.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:16 UTC (rev 171331)
+++ PKGBUILD2012-11-17 09:12:20 UTC (rev 171332)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/klines-${pkgver}.tar.xz;)
 sha1sums=('0773efb8ca8cf9fbf6359e09e66bec86fbc29ec8')
 

Added: kdegames-klines.install
===
--- kdegames-klines.install (rev 0)
+++ kdegames-klines.install 2012-11-17 09:12:20 UTC (rev 171332)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kmahjongg/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:24
  Author: andrea
Revision: 171333

KDE 4.10 beta1 - fixes

Added:
  kdegames-kmahjongg/kde-unstable/kdegames-kmahjongg.install
Modified:
  kdegames-kmahjongg/kde-unstable/PKGBUILD

+
 PKGBUILD   |3 ++-
 kdegames-kmahjongg.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:20 UTC (rev 171332)
+++ PKGBUILD2012-11-17 09:12:24 UTC (rev 171333)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkmahjongg' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kmahjongg-${pkgver}.tar.xz;)
 sha1sums=('ec723bc34ba6f2f6081edfa9ed3cd79266d901cb')
 

Added: kdegames-kmahjongg.install
===
--- kdegames-kmahjongg.install  (rev 0)
+++ kdegames-kmahjongg.install  2012-11-17 09:12:24 UTC (rev 171333)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kmines/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:28
  Author: andrea
Revision: 171334

KDE 4.10 beta1 - fixes

Added:
  kdegames-kmines/kde-unstable/kdegames-kmines.install
Modified:
  kdegames-kmines/kde-unstable/PKGBUILD

-+
 PKGBUILD|3 ++-
 kdegames-kmines.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:24 UTC (rev 171333)
+++ PKGBUILD2012-11-17 09:12:28 UTC (rev 171334)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kmines-${pkgver}.tar.xz;)
 sha1sums=('a433c87f8694b58a98142225b45dafa40ddcb911')
 

Added: kdegames-kmines.install
===
--- kdegames-kmines.install (rev 0)
+++ kdegames-kmines.install 2012-11-17 09:12:28 UTC (rev 171334)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-knavalbattle/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:32
  Author: andrea
Revision: 171335

KDE 4.10 beta1 - fixes

Added:
  kdegames-knavalbattle/kde-unstable/kdegames-knavalbattle.install
Modified:
  kdegames-knavalbattle/kde-unstable/PKGBUILD

---+
 PKGBUILD  |3 ++-
 kdegames-knavalbattle.install |   12 
 2 files changed, 14 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:28 UTC (rev 171334)
+++ PKGBUILD2012-11-17 09:12:32 UTC (rev 171335)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/knavalbattle-${pkgver}.tar.xz;)
 sha1sums=('cbe7b3cc2599a8078f7c4d241746ded1795f5b91')
 

Added: kdegames-knavalbattle.install
===
--- kdegames-knavalbattle.install   (rev 0)
+++ kdegames-knavalbattle.install   2012-11-17 09:12:32 UTC (rev 171335)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-knetwalk/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:36
  Author: andrea
Revision: 171336

KDE 4.10 beta1 - fixes

Added:
  kdegames-knetwalk/kde-unstable/kdegames-knetwalk.install
Modified:
  kdegames-knetwalk/kde-unstable/PKGBUILD

---+
 PKGBUILD  |3 ++-
 kdegames-knetwalk.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:32 UTC (rev 171335)
+++ PKGBUILD2012-11-17 09:12:36 UTC (rev 171336)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/knetwalk-${pkgver}.tar.xz;)
 sha1sums=('54638b39f2f23f231b5a533bbf3deb82b25bc93b')
 

Added: kdegames-knetwalk.install
===
--- kdegames-knetwalk.install   (rev 0)
+++ kdegames-knetwalk.install   2012-11-17 09:12:36 UTC (rev 171336)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2012-11-17 Thread Jan Steffens
Date: Saturday, November 17, 2012 @ 04:12:40
  Author: heftig
Revision: 171337

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

Added:
  pulseaudio/repos/testing-i686/
  pulseaudio/repos/testing-i686/PKGBUILD
(from rev 171330, pulseaudio/trunk/PKGBUILD)
  pulseaudio/repos/testing-i686/pulseaudio.install
(from rev 171330, pulseaudio/trunk/pulseaudio.install)
  pulseaudio/repos/testing-i686/pulseaudio.xinit
(from rev 171330, pulseaudio/trunk/pulseaudio.xinit)
  pulseaudio/repos/testing-x86_64/
  pulseaudio/repos/testing-x86_64/PKGBUILD
(from rev 171334, pulseaudio/trunk/PKGBUILD)
  pulseaudio/repos/testing-x86_64/pulseaudio.install
(from rev 171334, pulseaudio/trunk/pulseaudio.install)
  pulseaudio/repos/testing-x86_64/pulseaudio.xinit
(from rev 171334, pulseaudio/trunk/pulseaudio.xinit)

---+
 testing-i686/PKGBUILD |  120 
 testing-i686/pulseaudio.install   |   19 +
 testing-i686/pulseaudio.xinit |   12 +++
 testing-x86_64/PKGBUILD   |  120 
 testing-x86_64/pulseaudio.install |   19 +
 testing-x86_64/pulseaudio.xinit   |   12 +++
 6 files changed, 302 insertions(+)

Copied: pulseaudio/repos/testing-i686/PKGBUILD (from rev 171330, 
pulseaudio/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-11-17 09:12:40 UTC (rev 171337)
@@ -0,0 +1,120 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Corrado Primier ba...@aur.archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgbase=pulseaudio
+pkgname=(pulseaudio libpulse)
+pkgdesc=A featureful, general-purpose sound server
+pkgver=2.99.2
+pkgrel=1
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/PulseAudio;
+license=(GPL LGPL)
+makedepends=(libasyncns libcap attr libxtst libsm libsamplerate libtool rtkit
+ speex tdb udev dbus-core avahi bluez gconf intltool jack sbc
+ lirc-utils openssl fftw orc json-c gtk2 webrtc-audio-processing
+ systemd check)
+options=(!emptydirs !libtool)
+source=(http://freedesktop.org/software/$pkgbase/releases/$pkgbase-$pkgver.tar.xz
+pulseaudio.xinit)
+sha256sums=('e28d19610344f80bf73a1ae5ce64828c1c489fb47b9923c7e06519b43b1339d9'
+'a0db6cdc74fbf0ca10e2343c08e1e228f109221c6c0ff91b0bfade5c4bdf03cf')
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--with-udev-rules-dir=/usr/lib/udev/rules.d \
+--with-database=tdb \
+--disable-hal \
+--disable-tcpwrap \
+--disable-rpath \
+--disable-default-build-tests
+
+  # fight unused direct deps
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package_pulseaudio() {
+  depends=(libpulse=$pkgver-$pkgrel rtkit libltdl speex tdb udev fftw orc
+   libsamplerate webrtc-audio-processing systemd)
+  optdepends=('avahi: zeroconf support'
+  'bluez: bluetooth support'
+  'sbc: bluetooth support'
+  'gconf: configuration through gconf (paprefs)'
+  'jack: jack support'
+  'lirc-utils: infra-red support'
+  'openssl: RAOP support'
+  'python2-pyqt: Equalizer GUI (qpaeq)')
+  backup=(etc/pulse/{daemon.conf,default.pa,system.pa})
+  install=pulseaudio.install
+
+  cd $pkgbase-$pkgver
+  make -j1 DESTDIR=$pkgdir install
+
+  # Speed up pulseaudio shutdown
+  # Lower resample quality, saves CPU
+  sed -e '/exit-idle-time/iexit-idle-time=0' \
+  -e '/resample-method/iresample-method=speex-float-0' \
+  -i $pkgdir/etc/pulse/daemon.conf
+
+  # Disable cork-request module, can result in e.g. media players unpausing
+  # when there's a Skype call incoming
+  sed -e 's|/usr/bin/pactl load-module module-x11-cork-request|#|' \
+  -i $pkgdir/usr/bin/start-pulseaudio-x11
+
+  # Make ConsoleKit optional
+  sed -e $'/load-module module-console-kit/{i.nofail\n;a.fail\n;}' \
+  -i $pkgdir/etc/pulse/default.pa
+
+  # Python fix
+  sed -i '1s:python$:2:' $pkgdir/usr/bin/qpaeq
+
+  install -Dm755 $srcdir/pulseaudio.xinit 
$pkgdir/etc/X11/xinit/xinitrc.d/pulseaudio
+
+  rm $pkgdir/etc/dbus-1/system.d/pulseaudio-system.conf
+
+### Split libpulse
+
+  mkdir -p 
$srcdir/libpulse/{etc/pulse,usr/{bin,lib/pulseaudio,share/man/man{1,5}}}
+
+  mv {$pkgdir,$srcdir/libpulse}/etc/pulse/client.conf
+
+  mv $pkgdir/usr/bin/pa{cat,ctl,dsp,mon,play,rec,record} \
+ $srcdir/libpulse/usr/bin
+
+  mv $pkgdir/usr/lib/libpulse{,-simple,-mainloop-glib}.so* \
+ $srcdir/libpulse/usr/lib
+
+  mv $pkgdir/usr/lib/pulseaudio/libpulsedsp.so \
+ $pkgdir/usr/lib/pulseaudio/libpulsecommon-*.so \
+ 

[arch-commits] Commit in kdegames-kolf/kde-unstable (PKGBUILD kdegames-kolf.install)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:40
  Author: andrea
Revision: 171338

KDE 4.10 beta1 - fixes

Added:
  kdegames-kolf/kde-unstable/kdegames-kolf.install
Modified:
  kdegames-kolf/kde-unstable/PKGBUILD

---+
 PKGBUILD  |3 ++-
 kdegames-kolf.install |   12 
 2 files changed, 14 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:40 UTC (rev 171337)
+++ PKGBUILD2012-11-17 09:12:40 UTC (rev 171338)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 source=(http://download.kde.org/unstable/${pkgver}/src/kolf-${pkgver}.tar.xz;)
 sha1sums=('4083457d9d3331e554b3ea391bcd37ce7eea973f')
 

Added: kdegames-kolf.install
===
--- kdegames-kolf.install   (rev 0)
+++ kdegames-kolf.install   2012-11-17 09:12:40 UTC (rev 171338)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kollision/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:44
  Author: andrea
Revision: 171339

KDE 4.10 beta1 - fixes

Added:
  kdegames-kollision/kde-unstable/kdegames-kollision.install
Modified:
  kdegames-kollision/kde-unstable/PKGBUILD

+
 PKGBUILD   |3 ++-
 kdegames-kollision.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:40 UTC (rev 171338)
+++ PKGBUILD2012-11-17 09:12:44 UTC (rev 171339)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kollision-${pkgver}.tar.xz;)
 sha1sums=('f07924e70eb07b56d34ecee5061831466bea9618')
 

Added: kdegames-kollision.install
===
--- kdegames-kollision.install  (rev 0)
+++ kdegames-kollision.install  2012-11-17 09:12:44 UTC (rev 171339)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-konquest/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:48
  Author: andrea
Revision: 171340

KDE 4.10 beta1 - fixes

Added:
  kdegames-konquest/kde-unstable/kdegames-konquest.install
Modified:
  kdegames-konquest/kde-unstable/PKGBUILD

---+
 PKGBUILD  |3 ++-
 kdegames-konquest.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:44 UTC (rev 171339)
+++ PKGBUILD2012-11-17 09:12:48 UTC (rev 171340)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/konquest-${pkgver}.tar.xz;)
 sha1sums=('46334547e2dc0606b05930293037ba0006ecc05b')
 

Added: kdegames-konquest.install
===
--- kdegames-konquest.install   (rev 0)
+++ kdegames-konquest.install   2012-11-17 09:12:48 UTC (rev 171340)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kpatience/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:52
  Author: andrea
Revision: 171341

KDE 4.10 beta1 - fixes

Added:
  kdegames-kpatience/kde-unstable/kdegames-kpatience.install
Modified:
  kdegames-kpatience/kde-unstable/PKGBUILD

+
 PKGBUILD   |3 ++-
 kdegames-kpatience.install |   13 +
 2 files changed, 15 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:48 UTC (rev 171340)
+++ PKGBUILD2012-11-17 09:12:52 UTC (rev 171341)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 source=(http://download.kde.org/unstable/${pkgver}/src/kpat-${pkgver}.tar.xz;)
 sha1sums=('2ee0773fd86fd6321714be1d583e4d25a3589a44')
 

Added: kdegames-kpatience.install
===
--- kdegames-kpatience.install  (rev 0)
+++ kdegames-kpatience.install  2012-11-17 09:12:52 UTC (rev 171341)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-desktop-database -q
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kreversi/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:12:56
  Author: andrea
Revision: 171342

KDE 4.10 beta1 - fixes

Added:
  kdegames-kreversi/kde-unstable/kdegames-kreversi.install
Modified:
  kdegames-kreversi/kde-unstable/PKGBUILD

---+
 PKGBUILD  |3 ++-
 kdegames-kreversi.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:52 UTC (rev 171341)
+++ PKGBUILD2012-11-17 09:12:56 UTC (rev 171342)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kreversi-${pkgver}.tar.xz;)
 sha1sums=('3c33f7b7d2ddc246d7a304b7a1893bd3a17ace58')
 

Added: kdegames-kreversi.install
===
--- kdegames-kreversi.install   (rev 0)
+++ kdegames-kreversi.install   2012-11-17 09:12:56 UTC (rev 171342)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kshisen/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:13:01
  Author: andrea
Revision: 171343

KDE 4.10 beta1 - fixes

Added:
  kdegames-kshisen/kde-unstable/kdegames-kshisen.install
Modified:
  kdegames-kshisen/kde-unstable/PKGBUILD

--+
 PKGBUILD |3 ++-
 kdegames-kshisen.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:12:56 UTC (rev 171342)
+++ PKGBUILD2012-11-17 09:13:01 UTC (rev 171343)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames' 'libkmahjongg')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kshisen-${pkgver}.tar.xz;)
 sha1sums=('c29e40eab8424139421560bd4c38c90c2c044eb5')
 

Added: kdegames-kshisen.install
===
--- kdegames-kshisen.install(rev 0)
+++ kdegames-kshisen.install2012-11-17 09:13:01 UTC (rev 171343)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-ksirk/kde-unstable (PKGBUILD kdegames-ksirk.install)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:13:05
  Author: andrea
Revision: 171344

KDE 4.10 beta1 - fixes

Added:
  kdegames-ksirk/kde-unstable/kdegames-ksirk.install
Modified:
  kdegames-ksirk/kde-unstable/PKGBUILD

+
 PKGBUILD   |3 ++-
 kdegames-ksirk.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:13:01 UTC (rev 171343)
+++ PKGBUILD2012-11-17 09:13:05 UTC (rev 171344)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/ksirk-${pkgver}.tar.xz;)
 sha1sums=('9689540da05872676f10ba81d06d19149eabb643')
 

Added: kdegames-ksirk.install
===
--- kdegames-ksirk.install  (rev 0)
+++ kdegames-ksirk.install  2012-11-17 09:13:05 UTC (rev 171344)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-ksnakeduel/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:13:10
  Author: andrea
Revision: 171345

KDE 4.10 beta1 - fixes

Added:
  kdegames-ksnakeduel/kde-unstable/kdegames-ksnakeduel.install
Modified:
  kdegames-ksnakeduel/kde-unstable/PKGBUILD

-+
 PKGBUILD|3 ++-
 kdegames-ksnakeduel.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:13:05 UTC (rev 171344)
+++ PKGBUILD2012-11-17 09:13:10 UTC (rev 171345)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/ksnakeduel-${pkgver}.tar.xz;)
 sha1sums=('46b7e6e3810487d5c7669653e1c9eb5ff372fd19')
 

Added: kdegames-ksnakeduel.install
===
--- kdegames-ksnakeduel.install (rev 0)
+++ kdegames-ksnakeduel.install 2012-11-17 09:13:10 UTC (rev 171345)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kspaceduel/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:13:14
  Author: andrea
Revision: 171346

KDE 4.10 beta1 - fixes

Added:
  kdegames-kspaceduel/kde-unstable/kdegames-kspaceduel.install
Modified:
  kdegames-kspaceduel/kde-unstable/PKGBUILD

-+
 PKGBUILD|3 ++-
 kdegames-kspaceduel.install |   12 
 2 files changed, 14 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:13:10 UTC (rev 171345)
+++ PKGBUILD2012-11-17 09:13:14 UTC (rev 171346)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kspaceduel-${pkgver}.tar.xz;)
 sha1sums=('44ed8e2d47db3e6eebd3e843a33ef484fe8f69c6')
 

Added: kdegames-kspaceduel.install
===
--- kdegames-kspaceduel.install (rev 0)
+++ kdegames-kspaceduel.install 2012-11-17 09:13:14 UTC (rev 171346)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-ksquares/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:13:18
  Author: andrea
Revision: 171347

KDE 4.10 beta1 - fixes

Added:
  kdegames-ksquares/kde-unstable/kdegames-ksquares.install
Modified:
  kdegames-ksquares/kde-unstable/PKGBUILD

---+
 PKGBUILD  |3 ++-
 kdegames-ksquares.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:13:14 UTC (rev 171346)
+++ PKGBUILD2012-11-17 09:13:18 UTC (rev 171347)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/ksquares-${pkgver}.tar.xz;)
 sha1sums=('2fe82e3abc870eb7a66e62e94b343de1d4a71b84')
 

Added: kdegames-ksquares.install
===
--- kdegames-ksquares.install   (rev 0)
+++ kdegames-ksquares.install   2012-11-17 09:13:18 UTC (rev 171347)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-ksudoku/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:13:22
  Author: andrea
Revision: 171348

KDE 4.10 beta1 - fixes

Modified:
  kdegames-ksudoku/kde-unstable/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:13:18 UTC (rev 171347)
+++ PKGBUILD2012-11-17 09:13:22 UTC (rev 171348)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4' 'mesa')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/ksudoku-${pkgver}.tar.xz;)
 sha1sums=('332821c53f1f08f2dbaf03fdf0588879725d628b')
 



[arch-commits] Commit in kdegames-ktuberling/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:13:26
  Author: andrea
Revision: 171349

KDE 4.10 beta1 - fixes

Added:
  kdegames-ktuberling/kde-unstable/kdegames-ktuberling.install
Modified:
  kdegames-ktuberling/kde-unstable/PKGBUILD

-+
 PKGBUILD|3 ++-
 kdegames-ktuberling.install |   12 
 2 files changed, 14 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:13:22 UTC (rev 171348)
+++ PKGBUILD2012-11-17 09:13:26 UTC (rev 171349)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/ktuberling-${pkgver}.tar.xz;)
 sha1sums=('a3045890cf761f8e9ea6bd22699281f614468d83')
 

Added: kdegames-ktuberling.install
===
--- kdegames-ktuberling.install (rev 0)
+++ kdegames-ktuberling.install 2012-11-17 09:13:26 UTC (rev 171349)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-kubrick/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:13:30
  Author: andrea
Revision: 171350

KDE 4.10 beta1 - fixes

Added:
  kdegames-kubrick/kde-unstable/kdegames-kubrick.install
Modified:
  kdegames-kubrick/kde-unstable/PKGBUILD

--+
 PKGBUILD |   15 ---
 kdegames-kubrick.install |   11 +++
 2 files changed, 19 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:13:26 UTC (rev 171349)
+++ PKGBUILD2012-11-17 09:13:30 UTC (rev 171350)
@@ -1,23 +1,24 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kubrik
+pkgname=kdeedu-kubrick
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=Based on the famous Rubik's Cube
-url=http://kde.org/applications/games/kubrik/;
+url=http://kde.org/applications/games/kubrick/;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/unstable/${pkgver}/src/kubrik-${pkgver}.tar.xz;)
-sha1sums=('822b8f7266f7bd8170db1c02510480bb98d03e6f')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4' 'mesa')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/kubrick-${pkgver}.tar.xz;)
+sha1sums=('c553b86fcb78b1c182945ab75bc85391b4dca593')
 
 build() {
   mkdir build
   cd build
-  cmake ../kubrik-${pkgver} \
+  cmake ../kubrick-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr
   make

Added: kdegames-kubrick.install
===
--- kdegames-kubrick.install(rev 0)
+++ kdegames-kubrick.install2012-11-17 09:13:30 UTC (rev 171350)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-lskat/kde-unstable (PKGBUILD kdegames-lskat.install)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:13:34
  Author: andrea
Revision: 171351

KDE 4.10 beta1 - fixes

Added:
  kdegames-lskat/kde-unstable/kdegames-lskat.install
Modified:
  kdegames-lskat/kde-unstable/PKGBUILD

+
 PKGBUILD   |3 ++-
 kdegames-lskat.install |   12 
 2 files changed, 14 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:13:30 UTC (rev 171350)
+++ PKGBUILD2012-11-17 09:13:34 UTC (rev 171351)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/lskat-${pkgver}.tar.xz;)
 sha1sums=('7de09b0e2678f6f5a95e72049d3ba5438e3c6b2d')
 

Added: kdegames-lskat.install
===
--- kdegames-lskat.install  (rev 0)
+++ kdegames-lskat.install  2012-11-17 09:13:34 UTC (rev 171351)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-palapeli/kde-unstable (2 files)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:13:37
  Author: andrea
Revision: 171352

KDE 4.10 beta1 - fixes

Added:
  kdegames-palapeli/kde-unstable/kdegames-palapeli.install
Modified:
  kdegames-palapeli/kde-unstable/PKGBUILD

---+
 PKGBUILD  |1 +
 kdegames-palapeli.install |   13 +
 2 files changed, 14 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:13:34 UTC (rev 171351)
+++ PKGBUILD2012-11-17 09:13:37 UTC (rev 171352)
@@ -11,6 +11,7 @@
 groups=('kde' 'kdegames')
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/palapeli-${pkgver}.tar.xz;)
 sha1sums=('be62e6e82f7c5b2f3f8c4a6cee895170a4c49bc4')
 

Added: kdegames-palapeli.install
===
--- kdegames-palapeli.install   (rev 0)
+++ kdegames-palapeli.install   2012-11-17 09:13:37 UTC (rev 171352)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-desktop-database -q
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-picmi/kde-unstable (PKGBUILD kdegames-picmi.install)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 04:13:42
  Author: andrea
Revision: 171353

KDE 4.10 beta1 - fixes

Added:
  kdegames-picmi/kde-unstable/kdegames-picmi.install
Modified:
  kdegames-picmi/kde-unstable/PKGBUILD

+
 PKGBUILD   |3 ++-
 kdegames-picmi.install |   11 +++
 2 files changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:13:37 UTC (rev 171352)
+++ PKGBUILD2012-11-17 09:13:42 UTC (rev 171353)
@@ -9,8 +9,9 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegames')
-depends=('kdebase-runtime')
+depends=('kdebase-runtime' 'libkdegames')
 makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/picmi-${pkgver}.tar.xz;)
 sha1sums=('03b8385e5b1de2c6fb51c9cf40e3a1473eb21db9')
 

Added: kdegames-picmi.install
===
--- kdegames-picmi.install  (rev 0)
+++ kdegames-picmi.install  2012-11-17 09:13:42 UTC (rev 171353)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in easytag/trunk (3 files)

2012-11-17 Thread Eric BĂ©langer
Date: Saturday, November 17, 2012 @ 04:20:22
  Author: eric
Revision: 171354

upgpkg: easytag 2.1.7-3

Add libmp4v2 support (close FS#31290)

Added:
  easytag/trunk/easytag-2.1.7-new_libmp4v2.patch
Modified:
  easytag/trunk/PKGBUILD
  easytag/trunk/easytag.install

--+
 PKGBUILD |   16 -
 easytag-2.1.7-new_libmp4v2.patch |  535 +
 easytag.install  |2 
 3 files changed, 545 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:13:42 UTC (rev 171353)
+++ PKGBUILD2012-11-17 09:20:22 UTC (rev 171354)
@@ -6,23 +6,25 @@
 
 pkgname=easytag
 pkgver=2.1.7
-pkgrel=2
+pkgrel=3
 pkgdesc=Utility for viewing, editing and writing ID3 tags of your MP3 files
 arch=('i686' 'x86_64')
 license=('GPL')
 url='http://easytag.sourceforge.net/'
-depends=('id3lib' 'libid3tag' 'gtk2' 'libvorbis' 'flac' 'speex' 'wavpack' 
'desktop-file-utils')
+depends=('id3lib' 'libid3tag' 'gtk2' 'libvorbis' 'flac' 'speex' 'wavpack' 
'libmp4v2' 'desktop-file-utils')
 install=${pkgname}.install
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('9df3e800d80e754670642f2ba5e03539')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
 easytag-2.1.7-new_libmp4v2.patch)
+md5sums=('9df3e800d80e754670642f2ba5e03539'
+ '0d01887de463585d944777b638a28c85')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p0 -i ${srcdir}/easytag-2.1.7-new_libmp4v2.patch
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
 }

Added: easytag-2.1.7-new_libmp4v2.patch
===
--- easytag-2.1.7-new_libmp4v2.patch(rev 0)
+++ easytag-2.1.7-new_libmp4v2.patch2012-11-17 09:20:22 UTC (rev 171354)
@@ -0,0 +1,535 @@
+Compability with libmp4v2.so.2 (upstream revision r479)
+
+http://bugs.gentoo.org/409281
+
+--- src/mp4_header.c
 src/mp4_header.c
+@@ -204,7 +204,7 @@
+ /* Get size of file */
+ ETFileInfo-size = Get_File_Size(filename);
+ 
+-if ((file = MP4Read(filename, 0)) == MP4_INVALID_FILE_HANDLE )
++if ((file = MP4Read(filename)) == MP4_INVALID_FILE_HANDLE )
+ {
+ gchar *filename_utf8 = filename_to_display(filename);
+ //g_print(_(ERROR while opening file: '%s' 
(%s).),filename_utf8,g_strerror(errno));
+@@ -218,7 +218,7 @@
+ {
+ gchar *filename_utf8 = filename_to_display(filename);
+ Log_Print(LOG_ERROR,_(ERROR while opening file: '%s' 
(%s).),filename_utf8,(Contains no audio track));
+-MP4Close(file);
++MP4Close(file, 0);
+ g_free(filename_utf8);
+ return FALSE;
+ }
+@@ -243,7 +243,7 @@
+ ETFileInfo-mode = MP4GetTrackAudioChannels(file, trackId);
+ ETFileInfo-duration = MP4ConvertFromTrackDuration(file, trackId, 
MP4GetTrackDuration(file, trackId), MP4_SECS_TIME_SCALE);
+ 
+-MP4Close(file);
++MP4Close(file, 0);
+ return TRUE;
+ }
+ 
+--- src/mp4_tag.c
 src/mp4_tag.c
+@@ -80,15 +80,9 @@
+ {
+ FILE   *file;
+ MP4FileHandle mp4file = NULL;
+-uint16_t track, track_total;
+-uint16_t disk, disktotal;
+-u_int8_t *coverArt;
+-u_int32_t coverSize;
+ Picture *prev_pic = NULL;
+-#ifdef NEWMP4
+ gint pic_num;
+-#endif
+-
++
+ if (!filename || !FileTag)
+ return FALSE;
+ 
+@@ -102,7 +96,7 @@
+ fclose(file); // We close it cause mp4 opens/closes file itself
+ 
+ /* Get data from tag */
+-mp4file = MP4Read(filename, 0);
++mp4file = MP4Read(filename);
+ if (mp4file == MP4_INVALID_FILE_HANDLE)
+ {
+ gchar *filename_utf8 = filename_to_display(filename);
+@@ -111,109 +105,134 @@
+ return FALSE;
+ }
+ 
++const MP4Tags* tags = MP4TagsAlloc();
++MP4TagsFetch(tags, mp4file);
++
+ /* TODO Add error detection */
+ 
+ /*
+  * Title *
+  */
+-MP4GetMetadataName(mp4file, FileTag-title);
++if (tags-name)
++{
++FileTag-title = Try_To_Validate_Utf8_String(tags-name);
++}
+ 
+ /**
+  * Artist *
+  **/
+-MP4GetMetadataArtist(mp4file, FileTag-artist);
++if (tags-artist)
++{
++FileTag-artist = Try_To_Validate_Utf8_String(tags-artist);
++}
++
++/
++ * Album Artist *
++ /
++if (tags-albumArtist)
++{
++FileTag-album_artist = 
Try_To_Validate_Utf8_String(tags-albumArtist);
++}
+ 
+ /*
+  * Album *
+  */
+-MP4GetMetadataAlbum(mp4file, FileTag-album);
++if (tags-album)
++{
++FileTag-album = 

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

2012-11-17 Thread Eric BĂ©langer
Date: Saturday, November 17, 2012 @ 04:20:41
  Author: eric
Revision: 171355

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

Added:
  easytag/repos/extra-i686/PKGBUILD
(from rev 171354, easytag/trunk/PKGBUILD)
  easytag/repos/extra-i686/easytag-2.1.7-new_libmp4v2.patch
(from rev 171354, easytag/trunk/easytag-2.1.7-new_libmp4v2.patch)
  easytag/repos/extra-i686/easytag.install
(from rev 171354, easytag/trunk/easytag.install)
  easytag/repos/extra-x86_64/PKGBUILD
(from rev 171354, easytag/trunk/PKGBUILD)
  easytag/repos/extra-x86_64/easytag-2.1.7-new_libmp4v2.patch
(from rev 171354, easytag/trunk/easytag-2.1.7-new_libmp4v2.patch)
  easytag/repos/extra-x86_64/easytag.install
(from rev 171354, easytag/trunk/easytag.install)
Deleted:
  easytag/repos/extra-i686/PKGBUILD
  easytag/repos/extra-i686/easytag.install
  easytag/repos/extra-x86_64/PKGBUILD
  easytag/repos/extra-x86_64/easytag.install

---+
 extra-i686/PKGBUILD   |   58 +-
 extra-i686/easytag-2.1.7-new_libmp4v2.patch   |  535 
 extra-i686/easytag.install|   22 
 extra-x86_64/PKGBUILD |   58 +-
 extra-x86_64/easytag-2.1.7-new_libmp4v2.patch |  535 
 extra-x86_64/easytag.install  |   22 
 6 files changed, 1152 insertions(+), 78 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 171354:171355 to see the changes.


[arch-commits] Commit in gsl/trunk (PKGBUILD)

2012-11-17 Thread Eric BĂ©langer
Date: Saturday, November 17, 2012 @ 04:32:12
  Author: eric
Revision: 171356

Add check function (close FS#30184)

Modified:
  gsl/trunk/PKGBUILD

--+
 PKGBUILD |   11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:20:41 UTC (rev 171355)
+++ PKGBUILD2012-11-17 09:32:12 UTC (rev 171356)
@@ -19,12 +19,17 @@
 build() {
 unset LDFLAGS
 
-cd ${srcdir}/${pkgname}-${pkgver}
+cd ${srcdir}/${pkgname}-${pkgver}
 ./configure --prefix=/usr
 make
 }
 
+check() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make check
+}
+
 package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
 }



[arch-commits] Commit in gsl/repos/extra-i686 (4 files)

2012-11-17 Thread Eric BĂ©langer
Date: Saturday, November 17, 2012 @ 04:32:34
  Author: eric
Revision: 171357

archrelease: copy trunk to extra-i686

Added:
  gsl/repos/extra-i686/PKGBUILD
(from rev 171356, gsl/trunk/PKGBUILD)
  gsl/repos/extra-i686/gsl.install
(from rev 171356, gsl/trunk/gsl.install)
Deleted:
  gsl/repos/extra-i686/PKGBUILD
  gsl/repos/extra-i686/gsl.install

-+
 PKGBUILD|   65 +++---
 gsl.install |   42 ++---
 2 files changed, 56 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-11-17 09:32:12 UTC (rev 171356)
+++ PKGBUILD2012-11-17 09:32:34 UTC (rev 171357)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: Juergen Hoetzel juergen.archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=gsl
-pkgver=1.15
-pkgrel=2
-pkgdesc=The GNU Scientific Library (GSL) is a modern numerical library for C 
and C++ programmers
-url=http://www.gnu.org/software/gsl/gsl.html;
-source=(http://ftp.belnet.be/mirror/ftp.gnu.org/gnu/gsl/$pkgname-$pkgver.tar.gz;)
-install=gsl.install
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('glibc' 'bash')
-options=('!libtool')
-sha1sums=('d914f84b39a5274b0a589d9b83a66f44cd17ca8e')
-
-build() {
-unset LDFLAGS
-
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: gsl/repos/extra-i686/PKGBUILD (from rev 171356, gsl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-11-17 09:32:34 UTC (rev 171357)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Juergen Hoetzel juergen.archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=gsl
+pkgver=1.15
+pkgrel=2
+pkgdesc=The GNU Scientific Library (GSL) is a modern numerical library for C 
and C++ programmers
+url=http://www.gnu.org/software/gsl/gsl.html;
+source=(http://ftp.belnet.be/mirror/ftp.gnu.org/gnu/gsl/$pkgname-$pkgver.tar.gz;)
+install=gsl.install
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('glibc' 'bash')
+options=('!libtool')
+sha1sums=('d914f84b39a5274b0a589d9b83a66f44cd17ca8e')
+
+build() {
+unset LDFLAGS
+
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: gsl.install
===
--- gsl.install 2012-11-17 09:32:12 UTC (rev 171356)
+++ gsl.install 2012-11-17 09:32:34 UTC (rev 171357)
@@ -1,21 +0,0 @@
-  infodir=/usr/share/info
-  filelist=(gsl-ref.info.gz)
-
-  post_install() {
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2 /dev/null
-  done
-
-  }
-
-  post_upgrade() {
-post_install $1
-  }
-
-  pre_remove() {
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2 /dev/null
-  done
-
-  }
-

Copied: gsl/repos/extra-i686/gsl.install (from rev 171356, 
gsl/trunk/gsl.install)
===
--- gsl.install (rev 0)
+++ gsl.install 2012-11-17 09:32:34 UTC (rev 171357)
@@ -0,0 +1,21 @@
+  infodir=/usr/share/info
+  filelist=(gsl-ref.info.gz)
+
+  post_install() {
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2 /dev/null
+  done
+
+  }
+
+  post_upgrade() {
+post_install $1
+  }
+
+  pre_remove() {
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2 /dev/null
+  done
+
+  }
+



[arch-commits] Commit in gsl/repos/extra-x86_64 (4 files)

2012-11-17 Thread Eric BĂ©langer
Date: Saturday, November 17, 2012 @ 04:32:49
  Author: eric
Revision: 171358

archrelease: copy trunk to extra-x86_64

Added:
  gsl/repos/extra-x86_64/PKGBUILD
(from rev 171357, gsl/trunk/PKGBUILD)
  gsl/repos/extra-x86_64/gsl.install
(from rev 171357, gsl/trunk/gsl.install)
Deleted:
  gsl/repos/extra-x86_64/PKGBUILD
  gsl/repos/extra-x86_64/gsl.install

-+
 PKGBUILD|   65 +++---
 gsl.install |   42 ++---
 2 files changed, 56 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-11-17 09:32:34 UTC (rev 171357)
+++ PKGBUILD2012-11-17 09:32:49 UTC (rev 171358)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: Juergen Hoetzel juergen.archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=gsl
-pkgver=1.15
-pkgrel=2
-pkgdesc=The GNU Scientific Library (GSL) is a modern numerical library for C 
and C++ programmers
-url=http://www.gnu.org/software/gsl/gsl.html;
-source=(http://ftp.belnet.be/mirror/ftp.gnu.org/gnu/gsl/$pkgname-$pkgver.tar.gz;)
-install=gsl.install
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('glibc' 'bash')
-options=('!libtool')
-sha1sums=('d914f84b39a5274b0a589d9b83a66f44cd17ca8e')
-
-build() {
-unset LDFLAGS
-
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: gsl/repos/extra-x86_64/PKGBUILD (from rev 171357, gsl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-11-17 09:32:49 UTC (rev 171358)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Juergen Hoetzel juergen.archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=gsl
+pkgver=1.15
+pkgrel=2
+pkgdesc=The GNU Scientific Library (GSL) is a modern numerical library for C 
and C++ programmers
+url=http://www.gnu.org/software/gsl/gsl.html;
+source=(http://ftp.belnet.be/mirror/ftp.gnu.org/gnu/gsl/$pkgname-$pkgver.tar.gz;)
+install=gsl.install
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('glibc' 'bash')
+options=('!libtool')
+sha1sums=('d914f84b39a5274b0a589d9b83a66f44cd17ca8e')
+
+build() {
+unset LDFLAGS
+
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: gsl.install
===
--- gsl.install 2012-11-17 09:32:34 UTC (rev 171357)
+++ gsl.install 2012-11-17 09:32:49 UTC (rev 171358)
@@ -1,21 +0,0 @@
-  infodir=/usr/share/info
-  filelist=(gsl-ref.info.gz)
-
-  post_install() {
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2 /dev/null
-  done
-
-  }
-
-  post_upgrade() {
-post_install $1
-  }
-
-  pre_remove() {
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2 /dev/null
-  done
-
-  }
-

Copied: gsl/repos/extra-x86_64/gsl.install (from rev 171357, 
gsl/trunk/gsl.install)
===
--- gsl.install (rev 0)
+++ gsl.install 2012-11-17 09:32:49 UTC (rev 171358)
@@ -0,0 +1,21 @@
+  infodir=/usr/share/info
+  filelist=(gsl-ref.info.gz)
+
+  post_install() {
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2 /dev/null
+  done
+
+  }
+
+  post_upgrade() {
+post_install $1
+  }
+
+  pre_remove() {
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2 /dev/null
+  done
+
+  }
+



[arch-commits] Commit in libreoffice/trunk (PKGBUILD)

2012-11-17 Thread andyrtr
Date: Saturday, November 17, 2012 @ 04:47:33
  Author: andyrtr
Revision: 171359

upgpkg: libreoffice 3.6.3-3

another icu rebuild

Modified:
  libreoffice/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:32:49 UTC (rev 171358)
+++ PKGBUILD2012-11-17 09:47:33 UTC (rev 171359)
@@ -26,7 +26,7 @@
'libreoffice-extension-nlpsolver') # svn up -r 142692 (last one with 
all extensions built)
 _LOver=3.6.3.2
 pkgver=3.6.3
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url=http://www.libreoffice.org/;
@@ -37,7 +37,7 @@
  'glu' 'mesa' 'gstreamer0.10-base' 'java-environment' 
'postgresql-libs' 'doxygen' 'clucene'
  # the runtime dependencies
  curl=7.20.0 hunspell=1.2.8 python2=2.7 'libwpd=0.9.2' 
'libwps' 'libxaw' neon=0.28.6
- 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib' 
'libxslt' 'librsvg' icu=50.1 
+ 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib' 
'libxslt' 'librsvg' icu=50.1-2 
  'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh'  'libtextcat' 
'graphite' 'lcms2'
  'hicolor-icon-theme' 'desktop-file-utils' 'shared-mime-info' 
'gtk2' 'orbit2' 'translate-toolkit' 'xdg-utils'
 'ttf-dejavu') # to satisfy regression tests



[arch-commits] Commit in libreoffice/repos (44 files)

2012-11-17 Thread andyrtr
Date: Saturday, November 17, 2012 @ 04:49:33
  Author: andyrtr
Revision: 171360

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

Added:
  libreoffice/repos/testing-i686/PKGBUILD
(from rev 171359, libreoffice/trunk/PKGBUILD)
  libreoffice/repos/testing-i686/buildfix.diff
(from rev 171359, libreoffice/trunk/buildfix.diff)
  libreoffice/repos/testing-i686/libreoffice-base.install
(from rev 171359, libreoffice/trunk/libreoffice-base.install)
  libreoffice/repos/testing-i686/libreoffice-calc.install
(from rev 171359, libreoffice/trunk/libreoffice-calc.install)
  libreoffice/repos/testing-i686/libreoffice-common.csh
(from rev 171359, libreoffice/trunk/libreoffice-common.csh)
  libreoffice/repos/testing-i686/libreoffice-common.install
(from rev 171359, libreoffice/trunk/libreoffice-common.install)
  libreoffice/repos/testing-i686/libreoffice-common.sh
(from rev 171359, libreoffice/trunk/libreoffice-common.sh)
  libreoffice/repos/testing-i686/libreoffice-draw.install
(from rev 171359, libreoffice/trunk/libreoffice-draw.install)
  libreoffice/repos/testing-i686/libreoffice-impress.install
(from rev 171359, libreoffice/trunk/libreoffice-impress.install)
  libreoffice/repos/testing-i686/libreoffice-writer.install
(from rev 171359, libreoffice/trunk/libreoffice-writer.install)
  
libreoffice/repos/testing-i686/make-pyuno-work-with-system-wide-module-install.diff
(from rev 171359, 
libreoffice/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice/repos/testing-x86_64/PKGBUILD
(from rev 171359, libreoffice/trunk/PKGBUILD)
  libreoffice/repos/testing-x86_64/buildfix.diff
(from rev 171359, libreoffice/trunk/buildfix.diff)
  libreoffice/repos/testing-x86_64/libreoffice-base.install
(from rev 171359, libreoffice/trunk/libreoffice-base.install)
  libreoffice/repos/testing-x86_64/libreoffice-calc.install
(from rev 171359, libreoffice/trunk/libreoffice-calc.install)
  libreoffice/repos/testing-x86_64/libreoffice-common.csh
(from rev 171359, libreoffice/trunk/libreoffice-common.csh)
  libreoffice/repos/testing-x86_64/libreoffice-common.install
(from rev 171359, libreoffice/trunk/libreoffice-common.install)
  libreoffice/repos/testing-x86_64/libreoffice-common.sh
(from rev 171359, libreoffice/trunk/libreoffice-common.sh)
  libreoffice/repos/testing-x86_64/libreoffice-draw.install
(from rev 171359, libreoffice/trunk/libreoffice-draw.install)
  libreoffice/repos/testing-x86_64/libreoffice-impress.install
(from rev 171359, libreoffice/trunk/libreoffice-impress.install)
  libreoffice/repos/testing-x86_64/libreoffice-writer.install
(from rev 171359, libreoffice/trunk/libreoffice-writer.install)
  
libreoffice/repos/testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 171359, 
libreoffice/trunk/make-pyuno-work-with-system-wide-module-install.diff)
Deleted:
  libreoffice/repos/testing-i686/PKGBUILD
  libreoffice/repos/testing-i686/buildfix.diff
  libreoffice/repos/testing-i686/libreoffice-base.install
  libreoffice/repos/testing-i686/libreoffice-calc.install
  libreoffice/repos/testing-i686/libreoffice-common.csh
  libreoffice/repos/testing-i686/libreoffice-common.install
  libreoffice/repos/testing-i686/libreoffice-common.sh
  libreoffice/repos/testing-i686/libreoffice-draw.install
  libreoffice/repos/testing-i686/libreoffice-impress.install
  libreoffice/repos/testing-i686/libreoffice-writer.install
  
libreoffice/repos/testing-i686/make-pyuno-work-with-system-wide-module-install.diff
  libreoffice/repos/testing-x86_64/PKGBUILD
  libreoffice/repos/testing-x86_64/buildfix.diff
  libreoffice/repos/testing-x86_64/libreoffice-base.install
  libreoffice/repos/testing-x86_64/libreoffice-calc.install
  libreoffice/repos/testing-x86_64/libreoffice-common.csh
  libreoffice/repos/testing-x86_64/libreoffice-common.install
  libreoffice/repos/testing-x86_64/libreoffice-common.sh
  libreoffice/repos/testing-x86_64/libreoffice-draw.install
  libreoffice/repos/testing-x86_64/libreoffice-impress.install
  libreoffice/repos/testing-x86_64/libreoffice-writer.install
  
libreoffice/repos/testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff

-+
 testing-i686/PKGBUILD   | 1422 
+-
 testing-i686/buildfix.diff  |   24 
 testing-i686/libreoffice-base.install   |   22 
 testing-i686/libreoffice-calc.install   |   22 
 testing-i686/libreoffice-common.csh |   16 
 testing-i686/libreoffice-common.install |   94 
 testing-i686/libreoffice-common.sh  |   16 
 testing-i686/libreoffice-draw.install   |   22 
 testing-i686/libreoffice-impress.install

[arch-commits] Commit in aspell-pt/trunk (PKGBUILD)

2012-11-17 Thread Eric BĂ©langer
Date: Saturday, November 17, 2012 @ 04:55:56
  Author: eric
Revision: 171361

upgpkg: aspell-pt 20090702-4

Add brasileiro.alias file (close FS#28454)

Modified:
  aspell-pt/trunk/PKGBUILD

--+
 PKGBUILD |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:49:33 UTC (rev 171360)
+++ PKGBUILD2012-11-17 09:55:56 UTC (rev 171361)
@@ -7,7 +7,7 @@
 _pkgverPT=20070510
 _pkgverBR=20090702
 pkgver=$_pkgverBR
-pkgrel=3
+pkgrel=4
 pkgdesc=Portuguese and Brazilian Portuguese dictionary for aspell
 arch=('i686' 'x86_64')
 url=http://aspell.net/;
@@ -17,8 +17,8 @@
 replaces=('aspell-pt_br')
 
source=(ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-$_pkgverBR-0.tar.bz2
 
ftp://ftp.gnu.org/gnu/aspell/dict/pt_PT/aspell6-pt_PT-$_pkgverPT-0.tar.bz2)
-md5sums=('e082a8956882eb94a67c12e1b8c4a324' 'a54267ce8f91de6e6a1baf1e8048cba0')
-sha1sums=('add1db9a6a908dccaad13a7fd85c3b202299ff26' 
'e136c2f411b582897437b06b9068c98ee333be41')
+sha1sums=('add1db9a6a908dccaad13a7fd85c3b202299ff26'
+  'e136c2f411b582897437b06b9068c98ee333be41')
 
 build() {
   cd $srcdir/aspell6-pt_BR-$_pkgverBR-0
@@ -36,4 +36,6 @@
 
   cd $srcdir/aspell6-pt_PT-$_pkgverPT-0
   make DESTDIR=$pkgdir install
+
+  echo add pt_BR.multi  $pkgdir/usr/lib/aspell-0.60/brasileiro.alias
 }



[arch-commits] Commit in aspell-pt/repos (4 files)

2012-11-17 Thread Eric BĂ©langer
Date: Saturday, November 17, 2012 @ 04:56:22
  Author: eric
Revision: 171362

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

Added:
  aspell-pt/repos/extra-i686/PKGBUILD
(from rev 171361, aspell-pt/trunk/PKGBUILD)
  aspell-pt/repos/extra-x86_64/PKGBUILD
(from rev 171361, aspell-pt/trunk/PKGBUILD)
Deleted:
  aspell-pt/repos/extra-i686/PKGBUILD
  aspell-pt/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   80 
 extra-x86_64/PKGBUILD |   80 
 2 files changed, 82 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-11-17 09:55:56 UTC (rev 171361)
+++ extra-i686/PKGBUILD 2012-11-17 09:56:22 UTC (rev 171362)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Simo Leone s...@archlinux.org
-# Contributor: jlvsimoes jlvsim...@oninet.pt
-
-pkgname=aspell-pt
-_pkgverPT=20070510
-_pkgverBR=20090702
-pkgver=$_pkgverBR
-pkgrel=3
-pkgdesc=Portuguese and Brazilian Portuguese dictionary for aspell
-arch=('i686' 'x86_64')
-url=http://aspell.net/;
-license=('GPL2')
-depends=('aspell')
-conflicts=('aspell-pt_br')
-replaces=('aspell-pt_br')
-source=(ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-$_pkgverBR-0.tar.bz2
-
ftp://ftp.gnu.org/gnu/aspell/dict/pt_PT/aspell6-pt_PT-$_pkgverPT-0.tar.bz2)
-md5sums=('e082a8956882eb94a67c12e1b8c4a324' 'a54267ce8f91de6e6a1baf1e8048cba0')
-sha1sums=('add1db9a6a908dccaad13a7fd85c3b202299ff26' 
'e136c2f411b582897437b06b9068c98ee333be41')
-
-build() {
-  cd $srcdir/aspell6-pt_BR-$_pkgverBR-0
-  ./configure
-  make
-
-  cd $srcdir/aspell6-pt_PT-$_pkgverPT-0
-  ./configure
-  make
-}
-
-package() {
-  cd $srcdir/aspell6-pt_BR-$_pkgverBR-0
-  make DESTDIR=$pkgdir install
-
-  cd $srcdir/aspell6-pt_PT-$_pkgverPT-0
-  make DESTDIR=$pkgdir install
-}

Copied: aspell-pt/repos/extra-i686/PKGBUILD (from rev 171361, 
aspell-pt/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-11-17 09:56:22 UTC (rev 171362)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer:
+# Contributor: Simo Leone s...@archlinux.org
+# Contributor: jlvsimoes jlvsim...@oninet.pt
+
+pkgname=aspell-pt
+_pkgverPT=20070510
+_pkgverBR=20090702
+pkgver=$_pkgverBR
+pkgrel=4
+pkgdesc=Portuguese and Brazilian Portuguese dictionary for aspell
+arch=('i686' 'x86_64')
+url=http://aspell.net/;
+license=('GPL2')
+depends=('aspell')
+conflicts=('aspell-pt_br')
+replaces=('aspell-pt_br')
+source=(ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-$_pkgverBR-0.tar.bz2
+
ftp://ftp.gnu.org/gnu/aspell/dict/pt_PT/aspell6-pt_PT-$_pkgverPT-0.tar.bz2)
+sha1sums=('add1db9a6a908dccaad13a7fd85c3b202299ff26'
+  'e136c2f411b582897437b06b9068c98ee333be41')
+
+build() {
+  cd $srcdir/aspell6-pt_BR-$_pkgverBR-0
+  ./configure
+  make
+
+  cd $srcdir/aspell6-pt_PT-$_pkgverPT-0
+  ./configure
+  make
+}
+
+package() {
+  cd $srcdir/aspell6-pt_BR-$_pkgverBR-0
+  make DESTDIR=$pkgdir install
+
+  cd $srcdir/aspell6-pt_PT-$_pkgverPT-0
+  make DESTDIR=$pkgdir install
+
+  echo add pt_BR.multi  $pkgdir/usr/lib/aspell-0.60/brasileiro.alias
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-11-17 09:55:56 UTC (rev 171361)
+++ extra-x86_64/PKGBUILD   2012-11-17 09:56:22 UTC (rev 171362)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Simo Leone s...@archlinux.org
-# Contributor: jlvsimoes jlvsim...@oninet.pt
-
-pkgname=aspell-pt
-_pkgverPT=20070510
-_pkgverBR=20090702
-pkgver=$_pkgverBR
-pkgrel=3
-pkgdesc=Portuguese and Brazilian Portuguese dictionary for aspell
-arch=('i686' 'x86_64')
-url=http://aspell.net/;
-license=('GPL2')
-depends=('aspell')
-conflicts=('aspell-pt_br')
-replaces=('aspell-pt_br')
-source=(ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-$_pkgverBR-0.tar.bz2
-
ftp://ftp.gnu.org/gnu/aspell/dict/pt_PT/aspell6-pt_PT-$_pkgverPT-0.tar.bz2)
-md5sums=('e082a8956882eb94a67c12e1b8c4a324' 'a54267ce8f91de6e6a1baf1e8048cba0')
-sha1sums=('add1db9a6a908dccaad13a7fd85c3b202299ff26' 
'e136c2f411b582897437b06b9068c98ee333be41')
-
-build() {
-  cd $srcdir/aspell6-pt_BR-$_pkgverBR-0
-  ./configure
-  make
-
-  cd $srcdir/aspell6-pt_PT-$_pkgverPT-0
-  ./configure
-  make
-}
-
-package() {
-  cd $srcdir/aspell6-pt_BR-$_pkgverBR-0
-  make DESTDIR=$pkgdir install
-
-  cd $srcdir/aspell6-pt_PT-$_pkgverPT-0
-  make DESTDIR=$pkgdir install
-}

Copied: aspell-pt/repos/extra-x86_64/PKGBUILD (from rev 171361, 
aspell-pt/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-11-17 09:56:22 UTC (rev 171362)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer:
+# 

[arch-commits] Commit in networkmanager-pptp/trunk (3 files)

2012-11-17 Thread Ionut Biru
Date: Saturday, November 17, 2012 @ 06:07:54
  Author: ibiru
Revision: 171363

fix auth dialog path FS#32730

Added:
  networkmanager-pptp/trunk/fix-path-to-auth-dialog.patch
  networkmanager-pptp/trunk/gtk_table_to_gtk_grid.patch
Modified:
  networkmanager-pptp/trunk/PKGBUILD

---+
 PKGBUILD  |   12 +---
 fix-path-to-auth-dialog.patch |   26 ++
 gtk_table_to_gtk_grid.patch   |   40 
 3 files changed, 75 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 09:56:22 UTC (rev 171362)
+++ PKGBUILD2012-11-17 11:07:54 UTC (rev 171363)
@@ -3,7 +3,7 @@
 
 pkgname=networkmanager-pptp
 pkgver=0.9.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc=NetworkManager VPN plugin for pptp 
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -13,11 +13,17 @@
 optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
 options=('!libtool')
 install=networkmanager-pptp.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-pptp/0.9/NetworkManager-pptp-${pkgver}.tar.xz)
-sha256sums=('a84cbbf24827229e3dd3611bbde191398275c3b7ecd03913047197644f27a2b4')
+source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-pptp/0.9/NetworkManager-pptp-${pkgver}.tar.xz
+fix-path-to-auth-dialog.patch
+gtk_table_to_gtk_grid.patch)
+sha256sums=('a84cbbf24827229e3dd3611bbde191398275c3b7ecd03913047197644f27a2b4'
+'35f9c2cb4d046c8f215617e1a0bfd8551965bd0655af0cd25f89c17ea5e9081a'
+'17c194c605bca780bf657711e9cff910c63ab27eae70c11cb6c53e9c75ad3215')
 
 build() {
   cd NetworkManager-pptp-${pkgver}
+  patch -Np1 -i ../fix-path-to-auth-dialog.patch
+  patch -Np1 -i ../gtk_table_to_gtk_grid.patch
   ./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/networkmanager \

Added: fix-path-to-auth-dialog.patch
===
--- fix-path-to-auth-dialog.patch   (rev 0)
+++ fix-path-to-auth-dialog.patch   2012-11-17 11:07:54 UTC (rev 171363)
@@ -0,0 +1,26 @@
+From a2f52d4455bd81732b6b3c16bdab206c56818c07 Mon Sep 17 00:00:00 2001
+From: Clemens Buchacher dri...@aon.at
+Date: Sun, 1 Jul 2012 18:35:50 +0200
+Subject: [PATCH] fix path to auth-dialog
+
+
+Signed-off-by: Clemens Buchacher dri...@aon.at
+---
+ nm-pptp-service.name.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/nm-pptp-service.name.in b/nm-pptp-service.name.in
+index 9ee79b8..ea5f0e5 100644
+--- a/nm-pptp-service.name.in
 b/nm-pptp-service.name.in
+@@ -4,6 +4,6 @@ service=org.freedesktop.NetworkManager.pptp
+ program=@LIBEXECDIR@/nm-pptp-service
+ 
+ [GNOME]
+-auth-dialog=nm-pptp-auth-dialog
++auth-dialog=@LIBEXECDIR@/nm-pptp-auth-dialog
+ properties=libnm-pptp-properties
+ supports-external-ui-mode=true
+-- 
+1.7.11.1
+

Added: gtk_table_to_gtk_grid.patch
===
--- gtk_table_to_gtk_grid.patch (rev 0)
+++ gtk_table_to_gtk_grid.patch 2012-11-17 11:07:54 UTC (rev 171363)
@@ -0,0 +1,40 @@
+From: Mathieu Trudel-Lapierre mathieu.trudel-lapie...@canonical.com
+Subject: Port GtkTable uses to GtkGrid.
+
+Index: network-manager-pptp/auth-dialog/vpn-password-dialog.c
+===
+--- network-manager-pptp.orig/auth-dialog/vpn-password-dialog.c
2012-02-15 11:24:03.803503000 -0500
 network-manager-pptp/auth-dialog/vpn-password-dialog.c 2012-02-15 
11:30:20.344710680 -0500
+@@ -124,8 +124,8 @@
+   label = gtk_label_new_with_mnemonic (label_text);
+   gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
+ 
+-  gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, row, row + 
1);
+-  gtk_table_attach_defaults (GTK_TABLE (table), entry, 1, 2, row, row + 
1);
++  gtk_grid_attach (GTK_GRID (table), label, 0, row, 1, 1);
++  gtk_grid_attach (GTK_GRID (table), entry, 1, row, 1, 1);
+ 
+   gtk_label_set_mnemonic_widget (GTK_LABEL (label), entry);
+ }
+@@ -154,7 +154,7 @@
+   if (priv-show_password_secondary)
+   add_row (priv-table, row++, priv-secondary_password_label,  
priv-password_entry_secondary);
+ 
+-  gtk_table_attach_defaults (GTK_TABLE (priv-table), 
priv-show_passwords_checkbox, 1, 2, row, row + 1);
++  gtk_grid_attach (GTK_GRID (priv-table), priv-show_passwords_checkbox, 
1, row, 1, 1);
+ 
+   gtk_widget_show_all (priv-table);
+ }
+@@ -228,9 +228,9 @@
+ 
+   priv-group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
+ 
+-  priv-table = gtk_table_new (4, 2, FALSE);
+-  gtk_table_set_col_spacings (GTK_TABLE (priv-table), 12);
+-  gtk_table_set_row_spacings (GTK_TABLE (priv-table), 6);
++  priv-table = gtk_grid_new ();
++  gtk_grid_set_column_spacing (GTK_GRID 

[arch-commits] Commit in networkmanager-pptp/repos (12 files)

2012-11-17 Thread Ionut Biru
Date: Saturday, November 17, 2012 @ 06:09:07
  Author: ibiru
Revision: 171364

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

Added:
  networkmanager-pptp/repos/extra-i686/PKGBUILD
(from rev 171363, networkmanager-pptp/trunk/PKGBUILD)
  networkmanager-pptp/repos/extra-i686/fix-path-to-auth-dialog.patch
(from rev 171363, networkmanager-pptp/trunk/fix-path-to-auth-dialog.patch)
  networkmanager-pptp/repos/extra-i686/gtk_table_to_gtk_grid.patch
(from rev 171363, networkmanager-pptp/trunk/gtk_table_to_gtk_grid.patch)
  networkmanager-pptp/repos/extra-i686/networkmanager-pptp.install
(from rev 171363, networkmanager-pptp/trunk/networkmanager-pptp.install)
  networkmanager-pptp/repos/extra-x86_64/PKGBUILD
(from rev 171363, networkmanager-pptp/trunk/PKGBUILD)
  networkmanager-pptp/repos/extra-x86_64/fix-path-to-auth-dialog.patch
(from rev 171363, networkmanager-pptp/trunk/fix-path-to-auth-dialog.patch)
  networkmanager-pptp/repos/extra-x86_64/gtk_table_to_gtk_grid.patch
(from rev 171363, networkmanager-pptp/trunk/gtk_table_to_gtk_grid.patch)
  networkmanager-pptp/repos/extra-x86_64/networkmanager-pptp.install
(from rev 171363, networkmanager-pptp/trunk/networkmanager-pptp.install)
Deleted:
  networkmanager-pptp/repos/extra-i686/PKGBUILD
  networkmanager-pptp/repos/extra-i686/networkmanager-pptp.install
  networkmanager-pptp/repos/extra-x86_64/PKGBUILD
  networkmanager-pptp/repos/extra-x86_64/networkmanager-pptp.install

+
 extra-i686/PKGBUILD|   68 ++-
 extra-i686/fix-path-to-auth-dialog.patch   |   26 ++
 extra-i686/gtk_table_to_gtk_grid.patch |   40 +++
 extra-i686/networkmanager-pptp.install |   22 
 extra-x86_64/PKGBUILD  |   68 ++-
 extra-x86_64/fix-path-to-auth-dialog.patch |   26 ++
 extra-x86_64/gtk_table_to_gtk_grid.patch   |   40 +++
 extra-x86_64/networkmanager-pptp.install   |   22 
 8 files changed, 228 insertions(+), 84 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-11-17 11:07:54 UTC (rev 171363)
+++ extra-i686/PKGBUILD 2012-11-17 11:09:07 UTC (rev 171364)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=networkmanager-pptp
-pkgver=0.9.6.0
-pkgrel=1
-pkgdesc=NetworkManager VPN plugin for pptp 
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.gnome.org/projects/NetworkManager/;
-depends=(networkmanager=${pkgver} 'pptpclient' 'gtk3' 'libgnome-keyring')
-makedepends=('intltool')
-optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
-options=('!libtool')
-install=networkmanager-pptp.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-pptp/0.9/NetworkManager-pptp-${pkgver}.tar.xz)
-sha256sums=('a84cbbf24827229e3dd3611bbde191398275c3b7ecd03913047197644f27a2b4')
-
-build() {
-  cd NetworkManager-pptp-${pkgver}
-  ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib/networkmanager \
-   --disable-static
-  make
-}
-
-package() {
-  cd NetworkManager-pptp-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: networkmanager-pptp/repos/extra-i686/PKGBUILD (from rev 171363, 
networkmanager-pptp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-11-17 11:09:07 UTC (rev 171364)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=networkmanager-pptp
+pkgver=0.9.6.0
+pkgrel=2
+pkgdesc=NetworkManager VPN plugin for pptp 
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnome.org/projects/NetworkManager/;
+depends=(networkmanager=${pkgver} 'pptpclient' 'gtk3' 'libgnome-keyring')
+makedepends=('intltool')
+optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
+options=('!libtool')
+install=networkmanager-pptp.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-pptp/0.9/NetworkManager-pptp-${pkgver}.tar.xz
+fix-path-to-auth-dialog.patch
+gtk_table_to_gtk_grid.patch)
+sha256sums=('a84cbbf24827229e3dd3611bbde191398275c3b7ecd03913047197644f27a2b4'
+'35f9c2cb4d046c8f215617e1a0bfd8551965bd0655af0cd25f89c17ea5e9081a'
+'17c194c605bca780bf657711e9cff910c63ab27eae70c11cb6c53e9c75ad3215')
+
+build() {
+  cd NetworkManager-pptp-${pkgver}
+  patch -Np1 -i ../fix-path-to-auth-dialog.patch
+  patch -Np1 -i ../gtk_table_to_gtk_grid.patch
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib/networkmanager \
+   --disable-static
+  make
+}
+
+package() {
+  cd NetworkManager-pptp-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: networkmanager-pptp/repos/extra-i686/fix-path-to-auth-dialog.patch 
(from rev 171363, 

[arch-commits] Commit in mesa/trunk (PKGBUILD git_fixes.diff)

2012-11-17 Thread andyrtr
Date: Saturday, November 17, 2012 @ 06:10:19
  Author: andyrtr
Revision: 171365

upgpkg: mesa 9.0.1-1

upstream update 9.0.1

Modified:
  mesa/trunk/PKGBUILD
Deleted:
  mesa/trunk/git_fixes.diff

+
 PKGBUILD   |   10 +
 git_fixes.diff |   93 ---
 2 files changed, 3 insertions(+), 100 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:09:07 UTC (rev 171364)
+++ PKGBUILD2012-11-17 11:10:19 UTC (rev 171365)
@@ -12,7 +12,7 @@
 if [ ${_git} = true ]; then
 pkgver=8.99.git_$_gitdate
   else
-pkgver=9.0
+pkgver=9.0.1
 fi
 pkgrel=1
 arch=('i686' 'x86_64')
@@ -21,8 +21,7 @@
 url=http://mesa3d.sourceforge.net;
 license=('custom')
 options=('!libtool')
-source=(LICENSE
-git_fixes.diff)
+source=(LICENSE)
 if [ ${_git} = true ]; then
# mesa git shot from 9.0 branch - see for state: 
http://cgit.freedesktop.org/mesa/mesa/log/?h=9.0
#source=(${source[@]} 
'ftp://ftp.archlinux.org/other/mesa/mesa-41d14eaf193c6b1eb87fe1998808a887f1c6c698.tar.gz')
@@ -33,14 +32,11 @@
 )
 fi
 md5sums=('5c65a0fe315dd347e09b1f2826a1df5a'
- '2ebce12196dbb7b69bdf7ef53b8afdee'
- '60e557ce407be3732711da484ab3db6c')
+ '97d6554c05ea7449398afe3a0ede7018')
 
 build() {
 cd ${srcdir}/?esa-*
 
-patch -Np1 -i ${srcdir}/git_fixes.diff
-
 COMMONOPTS=--prefix=/usr \
 --sysconfdir=/etc \
 --with-dri-driverdir=/usr/lib/xorg/modules/dri \

Deleted: git_fixes.diff
===
--- git_fixes.diff  2012-11-17 11:09:07 UTC (rev 171364)
+++ git_fixes.diff  2012-11-17 11:10:19 UTC (rev 171365)
@@ -1,93 +0,0 @@
-From 161aababc659e23c4a8523366a31f63b3d14e280 Mon Sep 17 00:00:00 2001
-From: Ian Romanick ian.d.roman...@intel.com
-Date: Mon, 08 Oct 2012 22:07:10 +
-Subject: docs: Add 9.0 release md5sums
-
-Signed-off-by: Ian Romanick ian.d.roman...@intel.com

-diff --git a/docs/relnotes-9.0.html b/docs/relnotes-9.0.html
-index d72c5bb..02b7324 100644
 a/docs/relnotes-9.0.html
-+++ b/docs/relnotes-9.0.html
-@@ -26,7 +26,9 @@ because GL_ARB_compatibility is not supported.
- 
- h2MD5 checksums/h2
- pre
--tbd
-+be4cd34c6599a7cb9d254b05c48bdb1f  MesaLib-9.0.tar.gz
-+60e557ce407be3732711da484ab3db6c  MesaLib-9.0.tar.bz2
-+16b128544cd3f7e237927bb9f8aab7ce  MesaLib-9.0.zip
- /pre
- 
- 
---
-cgit v0.9.0.2-2-gbebe
-From 32faf7ab0de8b88bb15a2cb262a73c411dce9d0d Mon Sep 17 00:00:00 2001
-From: Brian Paul bri...@vmware.com
-Date: Fri, 05 Oct 2012 22:47:40 +
-Subject: mesa: don't call TexImage driver hooks for zero-sized images
-
-This simply avoids some failed assertions but there's no reason to
-call the driver hooks for storing a tex image if its size is zero.
-
-Note: This is a candidate for the stable branches.
-(cherry picked from commit 91d84096497ff538f55591f7e6bb0b563726db8d)

-diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c
-index 21646cc..8004876 100644
 a/src/mesa/main/teximage.c
-+++ b/src/mesa/main/teximage.c
-@@ -3034,13 +3034,15 @@ teximage(struct gl_context *ctx, GLboolean compressed, 
GLuint dims,
-   border, internalFormat, texFormat);
- 
-/* Give the texture to the driver.  pixels may be null. */
--   if (compressed) {
--  ctx-Driver.CompressedTexImage(ctx, dims, texImage,
-- imageSize, pixels);
--   }
--   else {
--  ctx-Driver.TexImage(ctx, dims, texImage, format,
--   type, pixels, unpack);
-+   if (width  0  height  0  depth  0) {
-+  if (compressed) {
-+ ctx-Driver.CompressedTexImage(ctx, dims, texImage,
-+imageSize, pixels);
-+  }
-+  else {
-+ ctx-Driver.TexImage(ctx, dims, texImage, format,
-+  type, pixels, unpack);
-+  }
-}
- 
-check_gen_mipmap(ctx, target, texObj, level);
---
-cgit v0.9.0.2-2-gbebe
-From e75051d1967350ceff0209dde24ae42696b13b5c Mon Sep 17 00:00:00 2001
-From: Brian Paul bri...@vmware.com
-Date: Fri, 05 Oct 2012 22:59:27 +
-Subject: mesa: fix error check for zero-sized compressed subtexture
-
-For glCompressedTexSubImage, width or height = 0 is legal.
-Fixes a failure in piglit's s3tc-errors test.
-
-This is for the 9.0 and 8.0 branches.  Already fixed on master.

-diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c
-index 8004876..38fa9fa 100644
 a/src/mesa/main/teximage.c
-+++ b/src/mesa/main/teximage.c
-@@ -3598,10 +3598,10 @@ compressed_subtexture_error_check(struct gl_context 
*ctx, GLint dimensions,
-if 

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

2012-11-17 Thread andyrtr
Date: Saturday, November 17, 2012 @ 06:10:55
  Author: andyrtr
Revision: 171366

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

Added:
  mesa/repos/testing-i686/
  mesa/repos/testing-i686/LICENSE
(from rev 171365, mesa/trunk/LICENSE)
  mesa/repos/testing-i686/PKGBUILD
(from rev 171365, mesa/trunk/PKGBUILD)
  mesa/repos/testing-x86_64/
  mesa/repos/testing-x86_64/LICENSE
(from rev 171365, mesa/trunk/LICENSE)
  mesa/repos/testing-x86_64/PKGBUILD
(from rev 171365, mesa/trunk/PKGBUILD)

-+
 testing-i686/LICENSE|   82 
 testing-i686/PKGBUILD   |  292 ++
 testing-x86_64/LICENSE  |   82 
 testing-x86_64/PKGBUILD |  292 ++
 4 files changed, 748 insertions(+)

Copied: mesa/repos/testing-i686/LICENSE (from rev 171365, mesa/trunk/LICENSE)
===
--- testing-i686/LICENSE(rev 0)
+++ testing-i686/LICENSE2012-11-17 11:10:55 UTC (rev 171366)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very similar to
+that of OpenGL*
+To the extent that Mesa utilizes the OpenGL command syntax or state
+machine, it is being used with authorization from Silicon Graphics,
+Inc.(SGI). However, the author does not possess an OpenGL license
+from SGI, and makes no claim that Mesa is in any way a compatible
+replacement for OpenGL or associated with SGI. Those who want a
+licensed implementation of OpenGL should contact a licensed
+vendor.
+
+Please do not refer to the library as MesaGL (for legal
+reasons). It's just Mesa or The Mesa 3-D graphics
+library
+
+* OpenGL is a trademark of Silicon Graphics Incorporated.
+
+License / Copyright Information
+
+The Mesa distribution consists of several components.  Different copyrights
+and licenses apply to different components.  For example, GLUT is copyrighted
+by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
+device drivers are copyrighted by their authors.  See below for a list of
+Mesa's main components and the license for each.
+
+The core Mesa library is licensed according to the terms of the MIT license.
+This allows integration with the XFree86, Xorg and DRI projects.
+
+The default Mesa license is as follows:
+
+Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the Software),
+to deal in the Software without restriction, including without limitation
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Attention, Contributors
+
+When contributing to the Mesa project you must agree to the licensing terms
+of the component to which you're contributing.
+The following section lists the primary components of the Mesa distribution
+and their respective licenses.
+
+
+Mesa Component Licenses
+
+Component Location   Primary Author  License
+
+Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
+
+Device driverssrc/mesa/drivers/* See drivers See drivers
+
+Ext headers   include/GL/glext.h SGI SGI Free B
+  include/GL/glxext.h
+
+GLUT  src/glut/  Mark KilgardMark's copyright
+
+Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
+
+SGI GLU library   src/glu/sgi/   SGI SGI Free B
+
+demo programs progs/demos/   various see source files
+
+X demos   progs/xdemos/  Brian Paul  see source files
+
+SGI demos progs/samples/ SGI SGI copyright
+
+RedBook demos progs/redbook/ SGI SGI copyright

Copied: mesa/repos/testing-i686/PKGBUILD (from rev 171365, mesa/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-11-17 11:10:55 UTC 

[arch-commits] Commit in truecrypt/trunk (PKGBUILD)

2012-11-17 Thread Eric BĂ©langer
Date: Saturday, November 17, 2012 @ 06:35:41
  Author: eric
Revision: 171367

Add build fix (close FS#30647)

Modified:
  truecrypt/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:10:55 UTC (rev 171366)
+++ PKGBUILD2012-11-17 11:35:41 UTC (rev 171367)
@@ -33,7 +33,7 @@
   patch -Np1 -i ../${pkgname}-arch-detection.patch
   
   # Build
-  make PKCS11_INC=${srcdir}/pkcs-2.20
+  make PKCS11_INC=${srcdir}/pkcs-2.20 LFLAGS+=-ldl
 }
 
 package() {



[arch-commits] Commit in truecrypt/repos/extra-i686 (6 files)

2012-11-17 Thread Eric BĂ©langer
Date: Saturday, November 17, 2012 @ 06:36:24
  Author: eric
Revision: 171368

archrelease: copy trunk to extra-i686

Added:
  truecrypt/repos/extra-i686/PKGBUILD
(from rev 171367, truecrypt/trunk/PKGBUILD)
  truecrypt/repos/extra-i686/truecrypt-arch-detection.patch
(from rev 171367, truecrypt/trunk/truecrypt-arch-detection.patch)
  truecrypt/repos/extra-i686/truecrypt.desktop
(from rev 171367, truecrypt/trunk/truecrypt.desktop)
Deleted:
  truecrypt/repos/extra-i686/PKGBUILD
  truecrypt/repos/extra-i686/truecrypt-arch-detection.patch
  truecrypt/repos/extra-i686/truecrypt.desktop

+
 PKGBUILD   |  102 +++
 truecrypt-arch-detection.patch |   30 +--
 truecrypt.desktop  |   18 +++---
 3 files changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-11-17 11:35:41 UTC (rev 171367)
+++ PKGBUILD2012-11-17 11:36:24 UTC (rev 171368)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Paul Mattal paul.archlinux.org
-
-pkgname=truecrypt
-pkgver=7.1a
-pkgrel=1
-epoch=1
-pkgdesc=Free open-source cross-platform disk encryption software
-url=http://www.truecrypt.org/;
-arch=('i686' 'x86_64')
-license=('custom') # TrueCrypt License v2.6
-depends=('fuse=2.8.0' 'wxgtk=2.8.9' 'libsm' 'device-mapper')
-makedepends=('nasm')
-optdepends=('sudo: mounting encrypted volumes as nonroot users')
-conflicts=('truecrypt-utils')
-replaces=('truecrypt-utils')
-# N.B. Truecrypt's web-based source download is incompatible with
-# makepkg. Source has been placed on ftp.archlinux.org instead
-source=(ftp://ftp.archlinux.org/other/tc/truecrypt-${pkgver}.tar.gz{,.sig} \
-'ftp://ftp.archlinux.org/other/tc/pkcs-2.20.tar.gz' \
-${pkgname}.desktop \
-   ${pkgname}-arch-detection.patch) 
-md5sums=('102d9652681db11c813610882332ae48'
- '5bca3d15b35d0725ff3317e568062ad8'
- 'ce6a707b79411e82e8e558aa03e764b0'
- '183b9bf04a943454d4e216130bcbac01'
- '00ea70fa8437de877b31b027ac2b4060')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}-source
-
-  # Work around buggy CPU type detection
-  patch -Np1 -i ../${pkgname}-arch-detection.patch
-  
-  # Build
-  make PKCS11_INC=${srcdir}/pkcs-2.20
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}-source
-
-  # Install Binary
-  install -D -m755 Main/${pkgname} ${pkgdir}/usr/bin/${pkgname}
-
-  # Install Desktop file and Icon
-  install -D -m644 ${srcdir}/${pkgname}.desktop 
${pkgdir}/usr/share/applications/${pkgname}.desktop
-  install -D -m644 Resources/Icons/TrueCrypt-48x48.xpm 
${pkgdir}/usr/share/pixmaps/truecrypt.xpm
-
-  # Install License
-  install -D -m644 License.txt 
${pkgdir}/usr/share/licenses/${pkgname}/License.txt
-}

Copied: truecrypt/repos/extra-i686/PKGBUILD (from rev 171367, 
truecrypt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-11-17 11:36:24 UTC (rev 171368)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Paul Mattal paul.archlinux.org
+
+pkgname=truecrypt
+pkgver=7.1a
+pkgrel=1
+epoch=1
+pkgdesc=Free open-source cross-platform disk encryption software
+url=http://www.truecrypt.org/;
+arch=('i686' 'x86_64')
+license=('custom') # TrueCrypt License v2.6
+depends=('fuse=2.8.0' 'wxgtk=2.8.9' 'libsm' 'device-mapper')
+makedepends=('nasm')
+optdepends=('sudo: mounting encrypted volumes as nonroot users')
+conflicts=('truecrypt-utils')
+replaces=('truecrypt-utils')
+# N.B. Truecrypt's web-based source download is incompatible with
+# makepkg. Source has been placed on ftp.archlinux.org instead
+source=(ftp://ftp.archlinux.org/other/tc/truecrypt-${pkgver}.tar.gz{,.sig} \
+'ftp://ftp.archlinux.org/other/tc/pkcs-2.20.tar.gz' \
+${pkgname}.desktop \
+   ${pkgname}-arch-detection.patch) 
+md5sums=('102d9652681db11c813610882332ae48'
+ '5bca3d15b35d0725ff3317e568062ad8'
+ 'ce6a707b79411e82e8e558aa03e764b0'
+ '183b9bf04a943454d4e216130bcbac01'
+ '00ea70fa8437de877b31b027ac2b4060')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}-source
+
+  # Work around buggy CPU type detection
+  patch -Np1 -i ../${pkgname}-arch-detection.patch
+  
+  # Build
+  make PKCS11_INC=${srcdir}/pkcs-2.20 LFLAGS+=-ldl
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}-source
+
+  # Install Binary
+  install -D -m755 Main/${pkgname} ${pkgdir}/usr/bin/${pkgname}
+
+  # Install Desktop file and Icon
+  install -D -m644 ${srcdir}/${pkgname}.desktop 
${pkgdir}/usr/share/applications/${pkgname}.desktop
+  install -D -m644 Resources/Icons/TrueCrypt-48x48.xpm 
${pkgdir}/usr/share/pixmaps/truecrypt.xpm
+
+  # Install License
+  install -D -m644 License.txt 
${pkgdir}/usr/share/licenses/${pkgname}/License.txt
+}

Deleted: truecrypt-arch-detection.patch
===
--- 

[arch-commits] Commit in truecrypt/repos/extra-x86_64 (6 files)

2012-11-17 Thread Eric BĂ©langer
Date: Saturday, November 17, 2012 @ 06:36:42
  Author: eric
Revision: 171369

archrelease: copy trunk to extra-x86_64

Added:
  truecrypt/repos/extra-x86_64/PKGBUILD
(from rev 171368, truecrypt/trunk/PKGBUILD)
  truecrypt/repos/extra-x86_64/truecrypt-arch-detection.patch
(from rev 171368, truecrypt/trunk/truecrypt-arch-detection.patch)
  truecrypt/repos/extra-x86_64/truecrypt.desktop
(from rev 171368, truecrypt/trunk/truecrypt.desktop)
Deleted:
  truecrypt/repos/extra-x86_64/PKGBUILD
  truecrypt/repos/extra-x86_64/truecrypt-arch-detection.patch
  truecrypt/repos/extra-x86_64/truecrypt.desktop

+
 PKGBUILD   |  102 +++
 truecrypt-arch-detection.patch |   30 +--
 truecrypt.desktop  |   18 +++---
 3 files changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-11-17 11:36:24 UTC (rev 171368)
+++ PKGBUILD2012-11-17 11:36:42 UTC (rev 171369)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Paul Mattal paul.archlinux.org
-
-pkgname=truecrypt
-pkgver=7.1a
-pkgrel=1
-epoch=1
-pkgdesc=Free open-source cross-platform disk encryption software
-url=http://www.truecrypt.org/;
-arch=('i686' 'x86_64')
-license=('custom') # TrueCrypt License v2.6
-depends=('fuse=2.8.0' 'wxgtk=2.8.9' 'libsm' 'device-mapper')
-makedepends=('nasm')
-optdepends=('sudo: mounting encrypted volumes as nonroot users')
-conflicts=('truecrypt-utils')
-replaces=('truecrypt-utils')
-# N.B. Truecrypt's web-based source download is incompatible with
-# makepkg. Source has been placed on ftp.archlinux.org instead
-source=(ftp://ftp.archlinux.org/other/tc/truecrypt-${pkgver}.tar.gz{,.sig} \
-'ftp://ftp.archlinux.org/other/tc/pkcs-2.20.tar.gz' \
-${pkgname}.desktop \
-   ${pkgname}-arch-detection.patch) 
-md5sums=('102d9652681db11c813610882332ae48'
- '5bca3d15b35d0725ff3317e568062ad8'
- 'ce6a707b79411e82e8e558aa03e764b0'
- '183b9bf04a943454d4e216130bcbac01'
- '00ea70fa8437de877b31b027ac2b4060')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}-source
-
-  # Work around buggy CPU type detection
-  patch -Np1 -i ../${pkgname}-arch-detection.patch
-  
-  # Build
-  make PKCS11_INC=${srcdir}/pkcs-2.20
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}-source
-
-  # Install Binary
-  install -D -m755 Main/${pkgname} ${pkgdir}/usr/bin/${pkgname}
-
-  # Install Desktop file and Icon
-  install -D -m644 ${srcdir}/${pkgname}.desktop 
${pkgdir}/usr/share/applications/${pkgname}.desktop
-  install -D -m644 Resources/Icons/TrueCrypt-48x48.xpm 
${pkgdir}/usr/share/pixmaps/truecrypt.xpm
-
-  # Install License
-  install -D -m644 License.txt 
${pkgdir}/usr/share/licenses/${pkgname}/License.txt
-}

Copied: truecrypt/repos/extra-x86_64/PKGBUILD (from rev 171368, 
truecrypt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-11-17 11:36:42 UTC (rev 171369)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Paul Mattal paul.archlinux.org
+
+pkgname=truecrypt
+pkgver=7.1a
+pkgrel=1
+epoch=1
+pkgdesc=Free open-source cross-platform disk encryption software
+url=http://www.truecrypt.org/;
+arch=('i686' 'x86_64')
+license=('custom') # TrueCrypt License v2.6
+depends=('fuse=2.8.0' 'wxgtk=2.8.9' 'libsm' 'device-mapper')
+makedepends=('nasm')
+optdepends=('sudo: mounting encrypted volumes as nonroot users')
+conflicts=('truecrypt-utils')
+replaces=('truecrypt-utils')
+# N.B. Truecrypt's web-based source download is incompatible with
+# makepkg. Source has been placed on ftp.archlinux.org instead
+source=(ftp://ftp.archlinux.org/other/tc/truecrypt-${pkgver}.tar.gz{,.sig} \
+'ftp://ftp.archlinux.org/other/tc/pkcs-2.20.tar.gz' \
+${pkgname}.desktop \
+   ${pkgname}-arch-detection.patch) 
+md5sums=('102d9652681db11c813610882332ae48'
+ '5bca3d15b35d0725ff3317e568062ad8'
+ 'ce6a707b79411e82e8e558aa03e764b0'
+ '183b9bf04a943454d4e216130bcbac01'
+ '00ea70fa8437de877b31b027ac2b4060')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}-source
+
+  # Work around buggy CPU type detection
+  patch -Np1 -i ../${pkgname}-arch-detection.patch
+  
+  # Build
+  make PKCS11_INC=${srcdir}/pkcs-2.20 LFLAGS+=-ldl
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}-source
+
+  # Install Binary
+  install -D -m755 Main/${pkgname} ${pkgdir}/usr/bin/${pkgname}
+
+  # Install Desktop file and Icon
+  install -D -m644 ${srcdir}/${pkgname}.desktop 
${pkgdir}/usr/share/applications/${pkgname}.desktop
+  install -D -m644 Resources/Icons/TrueCrypt-48x48.xpm 
${pkgdir}/usr/share/pixmaps/truecrypt.xpm
+
+  # Install License
+  install -D -m644 License.txt 
${pkgdir}/usr/share/licenses/${pkgname}/License.txt
+}

Deleted: truecrypt-arch-detection.patch

[arch-commits] Commit in kdebindings-smokekde/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 06:59:24
  Author: andrea
Revision: 171370

KDE 4.10 beta1 - fixes

Modified:
  kdebindings-smokekde/kde-unstable/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:36:42 UTC (rev 171369)
+++ PKGBUILD2012-11-17 11:59:24 UTC (rev 171370)
@@ -14,7 +14,8 @@
  'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate'
  'mesa')
 optdepends=('kdesdk-kate: Kate bindings'
-'kdegraphics-okular: Okular bindings')
+'kdegraphics-okular: Okular bindings'
+'kdepimlibs: akonadi bindings')
 conflicts=('kdebindings-smoke')
 
source=(http://download.kde.org/unstable/${pkgver}/src/smokekde-${pkgver}.tar.xz;)
 sha1sums=('42138a1b2778f4d34c047883768803824ec62bc4')



[arch-commits] Commit in kdebindings-kimono/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 06:59:28
  Author: andrea
Revision: 171371

KDE 4.10 beta1 - fixes

Modified:
  kdebindings-kimono/kde-unstable/PKGBUILD

--+
 PKGBUILD |1 +
 1 file changed, 1 insertion(+)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:59:24 UTC (rev 171370)
+++ PKGBUILD2012-11-17 11:59:28 UTC (rev 171371)
@@ -11,6 +11,7 @@
 groups=('kdebindings')
 depends=('kdebindings-qyoto' 'kdebindings-smokekde')
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost' 'kdepimlibs')
+optdepends=('kdepimlibs: akonadi bindings')
 conflicts=('kdebindings-csharp')
 
source=(http://download.kde.org/unstable/${pkgver}/src/kimono-${pkgver}.tar.xz;)
 sha1sums=('75263f0b3cba2fe1acc1d668cd7f03a4d4f07dc0')



[arch-commits] Commit in kdebindings-korundum/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 06:59:33
  Author: andrea
Revision: 171372

KDE 4.10 beta1 - fixes

Modified:
  kdebindings-korundum/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 ++
 1 file changed, 2 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:59:28 UTC (rev 171371)
+++ PKGBUILD2012-11-17 11:59:33 UTC (rev 171372)
@@ -12,6 +12,8 @@
 depends=('kdebindings-qtruby' 'kdebindings-smokekde')
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
  'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
+optdepends=('kdegraphics-okular: okular bindings'
+'kdepimlibs: akonadi bindings')
 conflicts=('kdebindings-ruby')
 
source=(http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.xz;
 'ruby19.patch')



[arch-commits] Commit in kdeedu-kalzium/kde-unstable (PKGBUILD kdeedu-kalzium.install)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 06:59:36
  Author: andrea
Revision: 171373

KDE 4.10 beta1 - fixes

Modified:
  kdeedu-kalzium/kde-unstable/PKGBUILD
  kdeedu-kalzium/kde-unstable/kdeedu-kalzium.install

+
 PKGBUILD   |2 +-
 kdeedu-kalzium.install |1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:59:33 UTC (rev 171372)
+++ PKGBUILD2012-11-17 11:59:36 UTC (rev 171373)
@@ -9,7 +9,7 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdeedu')
-depends=('kdelibs' 'avogadro' 'ocaml' 'facile' 'chemical-mime-data')
+depends=('kdebase-runtime' 'avogadro' 'ocaml' 'facile' 'chemical-mime-data')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/kalzium-${pkgver}.tar.xz;)

Modified: kdeedu-kalzium.install
===
--- kdeedu-kalzium.install  2012-11-17 11:59:33 UTC (rev 171372)
+++ kdeedu-kalzium.install  2012-11-17 11:59:36 UTC (rev 171373)
@@ -1,5 +1,6 @@
 post_install() {
xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
 }
 
 post_upgrade() {



[arch-commits] Commit in kdeedu-rocs/kde-unstable (PKGBUILD kdeedu-rocs.install)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 06:59:40
  Author: andrea
Revision: 171374

KDE 4.10 beta1 - fixes

Added:
  kdeedu-rocs/kde-unstable/kdeedu-rocs.install
Modified:
  kdeedu-rocs/kde-unstable/PKGBUILD

-+
 PKGBUILD|2 +-
 kdeedu-rocs.install |   11 +++
 2 files changed, 12 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:59:36 UTC (rev 171373)
+++ PKGBUILD2012-11-17 11:59:40 UTC (rev 171374)
@@ -11,9 +11,9 @@
 groups=('kde' 'kdeedu')
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4' 'boost')
+install=${pkgname}.install
 source=(http://download.kde.org/unstable/${pkgver}/src/rocs-${pkgver}.tar.xz;)
 sha1sums=('a3feecc05b8408ccfa1d101554a8916b5700649f')
-options=('!makeflags')
 
 build() {
   cd ${srcdir}

Added: kdeedu-rocs.install
===
--- kdeedu-rocs.install (rev 0)
+++ kdeedu-rocs.install 2012-11-17 11:59:40 UTC (rev 171374)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in kdegames-bomber/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 06:59:45
  Author: andrea
Revision: 171375

KDE 4.10 beta1 - fixes

Modified:
  kdegames-bomber/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:59:40 UTC (rev 171374)
+++ PKGBUILD2012-11-17 11:59:45 UTC (rev 171375)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-bomber
+pkgname=kdegames-bomber
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A single player arcade game



[arch-commits] Commit in kdegames-bovo/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 06:59:48
  Author: andrea
Revision: 171376

KDE 4.10 beta1 - fixes

Modified:
  kdegames-bovo/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:59:45 UTC (rev 171375)
+++ PKGBUILD2012-11-17 11:59:48 UTC (rev 171376)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-bovo
+pkgname=kdegames-bovo
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A Gomoku like game for two players



[arch-commits] Commit in kdegames-granatier/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 06:59:52
  Author: andrea
Revision: 171377

KDE 4.10 beta1 - fixes

Modified:
  kdegames-granatier/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:59:48 UTC (rev 171376)
+++ PKGBUILD2012-11-17 11:59:52 UTC (rev 171377)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-granatier
+pkgname=kdegames-granatier
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A clone of the classic Bomberman game



[arch-commits] Commit in kdegames-kajongg/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 06:59:55
  Author: andrea
Revision: 171378

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kajongg/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:59:52 UTC (rev 171377)
+++ PKGBUILD2012-11-17 11:59:55 UTC (rev 171378)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kajongg
+pkgname=kdegames-kajongg
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=The ancient Chinese board game for 4 players



[arch-commits] Commit in kdegames-kapman/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:01
  Author: andrea
Revision: 171379

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kapman/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 11:59:55 UTC (rev 171378)
+++ PKGBUILD2012-11-17 12:00:01 UTC (rev 171379)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kapman
+pkgname=kdegames-kapman
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A clone of the well known game Pac-Man



[arch-commits] Commit in kdegames-katomic/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:05
  Author: andrea
Revision: 171380

KDE 4.10 beta1 - fixes

Modified:
  kdegames-katomic/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:01 UTC (rev 171379)
+++ PKGBUILD2012-11-17 12:00:05 UTC (rev 171380)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-katomic
+pkgname=kdegames-katomic
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A fun and educational game built around molecular geometry



[arch-commits] Commit in kdegames-kblackbox/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:09
  Author: andrea
Revision: 171381

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kblackbox/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:05 UTC (rev 171380)
+++ PKGBUILD2012-11-17 12:00:09 UTC (rev 171381)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kblackbox
+pkgname=kdegames-kblackbox
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A game of hide and seek played on a grid of boxes



[arch-commits] Commit in kdegames-kblocks/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:13
  Author: andrea
Revision: 171382

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kblocks/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:09 UTC (rev 171381)
+++ PKGBUILD2012-11-17 12:00:13 UTC (rev 171382)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kblocks
+pkgname=kdegames-kblocks
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=The classic falling blocks game



[arch-commits] Commit in kdegames-kbounce/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:17
  Author: andrea
Revision: 171383

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kbounce/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:13 UTC (rev 171382)
+++ PKGBUILD2012-11-17 12:00:17 UTC (rev 171383)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kbounce
+pkgname=kdegames-kbounce
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A single player arcade game with the elements of puzzle



[arch-commits] Commit in kdegames-kbreakout/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:22
  Author: andrea
Revision: 171384

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kbreakout/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:17 UTC (rev 171383)
+++ PKGBUILD2012-11-17 12:00:22 UTC (rev 171384)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kbreakout
+pkgname=kdegames-kbreakout
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A Breakout-like game



[arch-commits] Commit in kdegames-kdiamond/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:26
  Author: andrea
Revision: 171385

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kdiamond/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:22 UTC (rev 171384)
+++ PKGBUILD2012-11-17 12:00:26 UTC (rev 171385)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kdiamond
+pkgname=kdegames-kdiamond
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A single player puzzle game



[arch-commits] Commit in kdegames-kfourinline/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:30
  Author: andrea
Revision: 171386

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kfourinline/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:26 UTC (rev 171385)
+++ PKGBUILD2012-11-17 12:00:30 UTC (rev 171386)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kfourinline
+pkgname=kdegames-kfourinline
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A four-in-a-row game



[arch-commits] Commit in kdegames-kgoldrunner/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:34
  Author: andrea
Revision: 171387

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kgoldrunner/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:30 UTC (rev 171386)
+++ PKGBUILD2012-11-17 12:00:34 UTC (rev 171387)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kgoldrunner
+pkgname=kdegames-kgoldrunner
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A game of action and puzzle solving



[arch-commits] Commit in kdegames-kigo/kde-unstable (PKGBUILD kdegames-kigo.install)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:38
  Author: andrea
Revision: 171388

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kigo/kde-unstable/PKGBUILD
  kdegames-kigo/kde-unstable/kdegames-kigo.install

---+
 PKGBUILD  |2 +-
 kdegames-kigo.install |1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:34 UTC (rev 171387)
+++ PKGBUILD2012-11-17 12:00:38 UTC (rev 171388)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kigo
+pkgname=kdegames-kigo
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=An open-source implementation of the popular Go game

Modified: kdegames-kigo.install
===
--- kdegames-kigo.install   2012-11-17 12:00:34 UTC (rev 171387)
+++ kdegames-kigo.install   2012-11-17 12:00:38 UTC (rev 171388)
@@ -1,5 +1,6 @@
 post_install() {
xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
 }
 
 post_upgrade() {



[arch-commits] Commit in kdegames-killbots/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:42
  Author: andrea
Revision: 171389

KDE 4.10 beta1 - fixes

Modified:
  kdegames-killbots/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:38 UTC (rev 171388)
+++ PKGBUILD2012-11-17 12:00:42 UTC (rev 171389)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-killbots
+pkgname=kdegames-killbots
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A simple game of evading killer robots



[arch-commits] Commit in kdegames-kiriki/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:46
  Author: andrea
Revision: 171390

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kiriki/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:42 UTC (rev 171389)
+++ PKGBUILD2012-11-17 12:00:46 UTC (rev 171390)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kiriki
+pkgname=kdegames-kiriki
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=An addictive and fun dice game



[arch-commits] Commit in kdegames-kjumpingcube/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:50
  Author: andrea
Revision: 171391

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kjumpingcube/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:46 UTC (rev 171390)
+++ PKGBUILD2012-11-17 12:00:50 UTC (rev 171391)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kjumpingcube
+pkgname=kdegames-kjumpingcube
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A simple tactical game



[arch-commits] Commit in kdegames-klickety/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:54
  Author: andrea
Revision: 171392

KDE 4.10 beta1 - fixes

Modified:
  kdegames-klickety/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:50 UTC (rev 171391)
+++ PKGBUILD2012-11-17 12:00:54 UTC (rev 171392)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-klickety
+pkgname=kdegames-klickety
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=An adaptation of the Clickomania game



[arch-commits] Commit in kdegames-klines/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:00:59
  Author: andrea
Revision: 171393

KDE 4.10 beta1 - fixes

Modified:
  kdegames-klines/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:54 UTC (rev 171392)
+++ PKGBUILD2012-11-17 12:00:59 UTC (rev 171393)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-klines
+pkgname=kdegames-klines
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A simple but highly addictive, one player game



[arch-commits] Commit in kdegames-kmahjongg/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:02
  Author: andrea
Revision: 171394

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kmahjongg/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:00:59 UTC (rev 171393)
+++ PKGBUILD2012-11-17 12:01:02 UTC (rev 171394)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kmahjongg
+pkgname=kdegames-kmahjongg
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A tile matching game for one or two players



[arch-commits] Commit in kdegames-kmines/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:07
  Author: andrea
Revision: 171395

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kmines/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:02 UTC (rev 171394)
+++ PKGBUILD2012-11-17 12:01:07 UTC (rev 171395)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kmines
+pkgname=kdegames-kmines
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=The classic Minesweeper game



[arch-commits] Commit in kdegames-knavalbattle/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:10
  Author: andrea
Revision: 171396

KDE 4.10 beta1 - fixes

Modified:
  kdegames-knavalbattle/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:07 UTC (rev 171395)
+++ PKGBUILD2012-11-17 12:01:10 UTC (rev 171396)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-knavalbattle
+pkgname=kdegames-knavalbattle
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A ship sinking game



[arch-commits] Commit in kdegames-knetwalk/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:14
  Author: andrea
Revision: 171397

KDE 4.10 beta1 - fixes

Modified:
  kdegames-knetwalk/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:10 UTC (rev 171396)
+++ PKGBUILD2012-11-17 12:01:14 UTC (rev 171397)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-knetwalk
+pkgname=kdegames-knetwalk
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=Connect all the terminals to the server, in as few turns as possible



[arch-commits] Commit in kdegames-kolf/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:19
  Author: andrea
Revision: 171398

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kolf/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:14 UTC (rev 171397)
+++ PKGBUILD2012-11-17 12:01:19 UTC (rev 171398)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kolf
+pkgname=kdegames-kolf
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A miniature golf game with 2d top-down view



[arch-commits] Commit in kdegames-kollision/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:23
  Author: andrea
Revision: 171399

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kollision/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:19 UTC (rev 171398)
+++ PKGBUILD2012-11-17 12:01:23 UTC (rev 171399)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kollision
+pkgname=kdegames-kollision
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A simple ball dodging game



[arch-commits] Commit in kdegames-konquest/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:27
  Author: andrea
Revision: 171400

KDE 4.10 beta1 - fixes

Modified:
  kdegames-konquest/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:23 UTC (rev 171399)
+++ PKGBUILD2012-11-17 12:01:27 UTC (rev 171400)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-konquest
+pkgname=kdegames-konquest
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=The KDE version of Gnu-Lactic



[arch-commits] Commit in kdegames-kpatience/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:31
  Author: andrea
Revision: 171401

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kpatience/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:27 UTC (rev 171400)
+++ PKGBUILD2012-11-17 12:01:31 UTC (rev 171401)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kpatience
+pkgname=kdegames-kpatience
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=Offers a selection of solitaire card games



[arch-commits] Commit in kdegames-kreversi/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:34
  Author: andrea
Revision: 171402

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kreversi/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:31 UTC (rev 171401)
+++ PKGBUILD2012-11-17 12:01:34 UTC (rev 171402)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kreversi
+pkgname=kdegames-kreversi
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A simple one player strategy game played against the computer



[arch-commits] Commit in kdegames-kshisen/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:39
  Author: andrea
Revision: 171403

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kshisen/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:34 UTC (rev 171402)
+++ PKGBUILD2012-11-17 12:01:39 UTC (rev 171403)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kshisen
+pkgname=kdegames-kshisen
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A solitaire-like game played using the standard set of Mahjong tiles



[arch-commits] Commit in kdegames-ksirk/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:44
  Author: andrea
Revision: 171404

KDE 4.10 beta1 - fixes

Modified:
  kdegames-ksirk/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:39 UTC (rev 171403)
+++ PKGBUILD2012-11-17 12:01:44 UTC (rev 171404)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-ksirk
+pkgname=kdegames-ksirk
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A computerized version of a well known strategy game



[arch-commits] Commit in kdegames-ksnakeduel/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:47
  Author: andrea
Revision: 171405

KDE 4.10 beta1 - fixes

Modified:
  kdegames-ksnakeduel/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:44 UTC (rev 171404)
+++ PKGBUILD2012-11-17 12:01:47 UTC (rev 171405)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-ksnakeduel
+pkgname=kdegames-ksnakeduel
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A simple snake duel game



[arch-commits] Commit in kdegames-kspaceduel/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:51
  Author: andrea
Revision: 171406

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kspaceduel/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:47 UTC (rev 171405)
+++ PKGBUILD2012-11-17 12:01:51 UTC (rev 171406)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kspaceduel
+pkgname=kdegames-kspaceduel
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=Each of two possible players controls a satellite spaceship orbiting 
the sun



[arch-commits] Commit in kdegames-ksquares/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:54
  Author: andrea
Revision: 171407

KDE 4.10 beta1 - fixes

Modified:
  kdegames-ksquares/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:51 UTC (rev 171406)
+++ PKGBUILD2012-11-17 12:01:54 UTC (rev 171407)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-ksquares
+pkgname=kdegames-ksquares
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A modeled after the well known pen and paper based game of Dots and 
Boxes



[arch-commits] Commit in kdegames-ksudoku/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:01:59
  Author: andrea
Revision: 171408

KDE 4.10 beta1 - fixes

Modified:
  kdegames-ksudoku/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:54 UTC (rev 171407)
+++ PKGBUILD2012-11-17 12:01:59 UTC (rev 171408)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-ksudoku
+pkgname=kdegames-ksudoku
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A logic-based symbol placement puzzle



[arch-commits] Commit in kdegames-ktuberling/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:02:03
  Author: andrea
Revision: 171409

KDE 4.10 beta1 - fixes

Modified:
  kdegames-ktuberling/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:01:59 UTC (rev 171408)
+++ PKGBUILD2012-11-17 12:02:03 UTC (rev 171409)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-ktuberling
+pkgname=kdegames-ktuberling
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A simple constructor game suitable for children and adults alike



[arch-commits] Commit in kdegames-kubrick/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:02:07
  Author: andrea
Revision: 171410

KDE 4.10 beta1 - fixes

Modified:
  kdegames-kubrick/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:02:03 UTC (rev 171409)
+++ PKGBUILD2012-11-17 12:02:07 UTC (rev 171410)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-kubrick
+pkgname=kdegames-kubrick
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=Based on the famous Rubik's Cube



[arch-commits] Commit in kdegames-lskat/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:02:11
  Author: andrea
Revision: 171411

KDE 4.10 beta1 - fixes

Modified:
  kdegames-lskat/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:02:07 UTC (rev 171410)
+++ PKGBUILD2012-11-17 12:02:11 UTC (rev 171411)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-lskat
+pkgname=kdegames-lskat
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=Lieutenant Skat is a fun and engaging card game for two players



[arch-commits] Commit in kdegames-palapeli/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:02:14
  Author: andrea
Revision: 171412

KDE 4.10 beta1 - fixes

Modified:
  kdegames-palapeli/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:02:11 UTC (rev 171411)
+++ PKGBUILD2012-11-17 12:02:14 UTC (rev 171412)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-palapeli
+pkgname=kdegames-palapeli
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A single-player jigsaw puzzle game



[arch-commits] Commit in kdegames-picmi/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:02:18
  Author: andrea
Revision: 171413

KDE 4.10 beta1 - fixes

Modified:
  kdegames-picmi/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:02:14 UTC (rev 171412)
+++ PKGBUILD2012-11-17 12:02:18 UTC (rev 171413)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-picmi
+pkgname=kdegames-picmi
 pkgver=4.9.80
 pkgrel=1
 pkgdesc=A nonogram logic game for KDE



[arch-commits] Commit in kdegraphics-gwenview/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:02:23
  Author: andrea
Revision: 171414

KDE 4.10 beta1 - fixes

Modified:
  kdegraphics-gwenview/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:02:18 UTC (rev 171413)
+++ PKGBUILD2012-11-17 12:02:23 UTC (rev 171414)
@@ -9,7 +9,7 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegraphics')
-depends=('kdebase-lib' 'libkipi')
+depends=('kdebase-lib' 'kdebase-runtime' 'libkipi' 'lcms2')
 makedepends=('cmake' 'automoc4' 'mesa')
 optdepends=('kipi-plugins: extra plugins to share photos')
 install=$pkgname.install



[arch-commits] Commit in kdegraphics-ksnapshot/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:02:28
  Author: andrea
Revision: 171415

KDE 4.10 beta1 - fixes

Modified:
  kdegraphics-ksnapshot/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:02:23 UTC (rev 171414)
+++ PKGBUILD2012-11-17 12:02:28 UTC (rev 171415)
@@ -9,7 +9,7 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde' 'kdegraphics')
-depends=('kdelibs' 'libkipi')
+depends=('kdebase-runtime' 'libkipi')
 makedepends=('cmake' 'automoc4')
 optdepends=('kipi-plugins')
 install=${pkgname}.install



[arch-commits] Commit in kdepim/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:02:32
  Author: andrea
Revision: 171416

KDE 4.10 beta1 - fixes

Modified:
  kdepim/kde-unstable/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:02:28 UTC (rev 171415)
+++ PKGBUILD2012-11-17 12:02:32 UTC (rev 171416)
@@ -157,7 +157,7 @@
  'kdepim-mimelib' 'kdepim-plugins')
for i in kmail doc/kmail kmailcvt archivemailagent \
importwizard ksendemail libksieve messagelist mailfilteragent \
-   mailimporter ontologies kontact/plugins/kmail; do
+   ontologies kontact/plugins/kmail; do
cd ${srcdir}/build/${i}
make DESTDIR=${pkgdir} install
done
@@ -260,8 +260,8 @@
  'kdepim-strigi-analyzer' 'kdepim-akonadi')
for i in akonadi_next calendarsupport incidenceeditor-ng \
kdgantt2 libkdepim libkdepimdbusinterfaces libkleo libkpgp \
-   mailcommon messagecomposer messagecore messageviewer icons \
-   strigi-analyzer templateparser plugins/messageviewer \
+   mailcommon mailimporter messagecomposer messagecore messageviewer \
+   icons strigi-analyzer templateparser plugins/messageviewer \
plugins/ktexteditor pimcommon pimsettingexporter; do
cd ${srcdir}/build/${i}
make DESTDIR=${pkgdir} install



[arch-commits] Commit in kdeplasma-addons/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:02:35
  Author: andrea
Revision: 171417

KDE 4.10 beta1 - fixes

Modified:
  kdeplasma-addons/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:02:32 UTC (rev 171416)
+++ PKGBUILD2012-11-17 12:02:35 UTC (rev 171417)
@@ -84,7 +84,7 @@
 license=('GPL' 'LGPL')
 groups=('kde' 'kdeplasma-addons')
 makedepends=('cmake' 'automoc4' 'kdebase-workspace' 'kdeedu-marble' 'eigen'
- 'scim' 'qwt' 'boost' 'libkexiv2' 'ibus' 'qoauth' 'qjson')
+ 'scim' 'qwt' 'boost' 'libkexiv2' 'ibus' 'qoauth' 'mesa')
 
source=(http://download.kde.org/unstable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
 sha1sums=('24d1ecd77e4acc2effc495e098352fdb480fbbce')
 



[arch-commits] Commit in kdesdk/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:02:39
  Author: andrea
Revision: 171418

KDE 4.10 beta1 - fixes

Modified:
  kdesdk/kde-unstable/PKGBUILD

--+
 PKGBUILD |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:02:35 UTC (rev 171417)
+++ PKGBUILD2012-11-17 12:02:39 UTC (rev 171418)
@@ -178,7 +178,8 @@
 
   # Fix python 2 path
   sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-${pkgdir}/usr/share/apps/lokalize/scripts/odf/xliffmerge.py
+${pkgdir}/usr/share/apps/lokalize/scripts/odf/xliffmerge.py \
+${pkgdir}/usr/bin/zonetab2pot.py
 }
 
 package_kdesdk-okteta() {
@@ -235,6 +236,7 @@
 package_kdesdk-umbrello() {
pkgdesc='UML Modeller'
depends=('kdebase-runtime')
+optdepends=('ruby')
url=http://kde.org/applications/development/umbrello/;
install='kdesdk-umbrello.install'
cd $srcdir/build/umbrello



[arch-commits] Commit in kdesdk-kate/kde-unstable (PKGBUILD)

2012-11-17 Thread Andrea Scarpino
Date: Saturday, November 17, 2012 @ 07:04:57
  Author: andrea
Revision: 171419

Fix pate build

Modified:
  kdesdk-kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:02:39 UTC (rev 171418)
+++ PKGBUILD2012-11-17 12:04:57 UTC (rev 171419)
@@ -9,7 +9,7 @@
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
-makedepends=('kdelibs ''cmake' 'automoc4' 'kdebindings-python')
+makedepends=('kdelibs ''cmake' 'automoc4' 'kdebindings-python2')
 source=(http://download.kde.org/unstable/${pkgver}/src/kate-${pkgver}.tar.xz;
 'pkgbuild-syntax-highlight.patch')
 sha1sums=('0ceb70497bdecd59ad97490371cda7a7374f83bd'
@@ -25,7 +25,7 @@
   cmake ../kate-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_pate=OFF
+-DPYTHON_EXECUTABLE=/usr/bin/python2
   make
 }
 
@@ -55,12 +55,12 @@
 
 package_kdesdk-kate() {
   pkgdesc=Advanced Text Editor
-  depends=('kdebase-runtime' 'kdebase-katepart')
+  depends=('kdebase-runtime' 'kdebase-katepart' 'qjson')
   groups=('kde' 'kdesdk')
   url=http://www.kde.org/applications/utilities/kate/;
   install='kdesdk-kate.install'
   optdepends=('kdebase-konsole: open a terminal in Kate'
-  'kdebindings-python: python bindings')
+  'kdebindings-python2: python bindings')
 
   cd ${srcdir}/build/kate
   make DESTDIR=${pkgdir} install



[arch-commits] Commit in qhull/trunk (PKGBUILD)

2012-11-17 Thread Eric BĂ©langer
Date: Saturday, November 17, 2012 @ 08:35:37
  Author: eric
Revision: 171420

upgpkg: qhull 2012.1-2

Compile with -fPIC (close FS#30010), Fix docs location (close FS#28619)

Modified:
  qhull/trunk/PKGBUILD

--+
 PKGBUILD |   17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-17 12:04:57 UTC (rev 171419)
+++ PKGBUILD2012-11-17 13:35:37 UTC (rev 171420)
@@ -6,32 +6,35 @@
 
 pkgname=qhull
 pkgver=2012.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A general dimension code for computing convex hulls and related 
structures
 arch=('i686' 'x86_64')
 url=http://www.qhull.org/;
 license=('custom')
 depends=('gcc-libs')
 makedepends=('cmake')
+options=('!libtool')
 source=(http://www.qhull.org/download/$pkgname-$pkgver-src.tgz;)
-options=('!libtool')
-md5sums=('ed81aa19b203aa0fdb75b41fe6f7a40f')
+md5sums=('d0f978c0d8dfb2e919caefa56ea2953c')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
 
+  if [ ${CARCH} = x86_64 ]; then
+EXTRAOPTS=-DCMAKE_CXX_FLAGS=-fPIC -DCMAKE_C_FLAGS=-fPIC
+  fi
+
   mkdir srcbuild
   cd srcbuild
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DDOC_INSTALL_DIR=/usr/share/doc \
--DMAN_INSTALL_DIR=/usr/share/man/man1 -DLIB_INSTALL_DIR=/usr/lib ..
+  cmake -DCMAKE_INSTALL_PREFIX=/usr $EXTRAOPTS ..
   make
 }
 
 package() { 
   cd $srcdir/$pkgname-$pkgver/srcbuild
 
-  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir install
 
   # Install license
-  install -Dm644 $srcdir/$pkgname-$pkgver/COPYING.txt 
$pkgdir/usr/share/licenses/$pkgname/license.txt
+  install -Dm644 $srcdir/$pkgname-$pkgver/COPYING.txt 
$pkgdir/usr/share/licenses/$pkgname/license.txt
 }



  1   2   >