summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/0ad/PKGBUILD35
-rw-r--r--community/0ad/miniupnpc-1.9.patch12
-rw-r--r--community/atanks/PKGBUILD8
-rw-r--r--community/autocutsel/PKGBUILD8
-rw-r--r--community/darktable/PKGBUILD4
-rw-r--r--community/devil/PKGBUILD4
-rw-r--r--community/gmic/PKGBUILD4
-rw-r--r--community/gmic/opencv-buildfix.patch11
-rw-r--r--community/gnustep-back/PKGBUILD8
-rw-r--r--community/gnustep-base/PKGBUILD8
-rw-r--r--community/gnustep-gui/PKGBUILD14
-rw-r--r--community/gnustep-make/PKGBUILD10
-rw-r--r--community/hwinfo/PKGBUILD6
-rw-r--r--community/librcc/PKGBUILD6
-rw-r--r--community/luminancehdr/PKGBUILD4
-rw-r--r--community/openjpeg2/PKGBUILD8
-rw-r--r--community/percona-server/PKGBUILD16
-rw-r--r--community/perl-clone/PKGBUILD4
-rw-r--r--community/perl-dbd-pg/PKGBUILD6
-rw-r--r--community/perl-libapreq2/PKGBUILD6
-rw-r--r--community/ruby-gnome2/PKGBUILD102
-rw-r--r--community/sage-mathematics/PKGBUILD10
-rw-r--r--community/sdcc/PKGBUILD7
-rw-r--r--community/squid/PKGBUILD9
-rw-r--r--community/swi-prolog/PKGBUILD6
-rw-r--r--community/tesseract-game/PKGBUILD43
-rw-r--r--community/tesseract-game/tesseract.install14
-rw-r--r--community/twin/PKGBUILD5
-rw-r--r--community/units/PKGBUILD6
-rw-r--r--community/xmms2/PKGBUILD8
-rw-r--r--community/xosd/PKGBUILD6
-rw-r--r--community/zathura-pdf-mupdf/PKGBUILD2
32 files changed, 259 insertions, 141 deletions
diff --git a/community/0ad/PKGBUILD b/community/0ad/PKGBUILD
index fa0c32833..9fb336a89 100644
--- a/community/0ad/PKGBUILD
+++ b/community/0ad/PKGBUILD
@@ -1,27 +1,28 @@
-# $Id: PKGBUILD 111146 2014-05-14 18:11:18Z svenstaro $
+# $Id: PKGBUILD 111463 2014-05-19 02:56:24Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: t3ddy <t3ddy1988 "at" gmail {dot} com>
# Contributor: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
pkgname=0ad
-pkgver=a15
-_pkgver=0.0.15-alpha
-pkgrel=5
+pkgver=a16
+_pkgver=0.0.16-alpha
+pkgrel=1
pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
arch=('i686' 'x86_64')
url="http://play0ad.com/"
license=('GPL2' 'CCPL')
depends=('binutils' 'boost-libs' 'curl' 'enet' 'libogg' 'libpng' 'libvorbis'
'libxml2' 'openal' 'sdl' 'wxgtk2.8' 'zlib' 'libgl' '0ad-data' 'glu'
- 'gloox' 'miniupnpc')
+ 'gloox' 'miniupnpc' 'icu' 'nspr')
makedepends=('boost' 'cmake' 'mesa' 'zip' 'python2' 'libsm')
source=("http://releases.wildfiregames.com/$pkgname-$_pkgver-unix-build.tar.xz"
- "miniupnpc-1.9.patch")
-md5sums=('a651d81eb9b31da01e376ddaa597e954'
- 'f3d27da4944d42fcf6b4153e54dc4600')
+ "http://trac.wildfiregames.com/raw-attachment/ticket/2552/miniupnpc_api.patch")
+md5sums=('3836bbcdf4edc57c2354b4fef6023146'
+ '6981595ba4b8eb21f9503304b090c9a9')
prepare() {
- cd "$srcdir/$pkgname-$_pkgver"
- patch -p1 -i ../miniupnpc-1.9.patch
+ cd "$srcdir/$pkgname-$_pkgver/"
+ patch -p0 -i "../miniupnpc_api.patch"
+ sed -i "s/env python/env python2/g" libraries/source/cxxtest-4.3/bin/cxxtestgen
}
build() {
@@ -39,15 +40,17 @@ build() {
cd "$srcdir/$pkgname-$_pkgver/build/workspaces/gcc"
- make CONFIG=Release
+ make
}
package() {
- install -d "${pkgdir}"/usr/{bin,lib/0ad}
+ install -d "${pkgdir}"/usr/{bin,lib/0ad,share/"${pkgname}"/data}
cd "$srcdir/$pkgname-$_pkgver"
install -Dm755 binaries/system/pyrogenesis "${pkgdir}/usr/bin"
- install -Dm755 binaries/system/*.so{,.1.0} "${pkgdir}/usr/lib/0ad"
+ install -Dm755 binaries/system/*.so "${pkgdir}/usr/lib/0ad"
+
+ cp -r binaries/data/l10n/ ${pkgdir}/usr/share/${pkgname}/data/
install -Dm755 build/resources/${pkgname}.sh "${pkgdir}/usr/bin/${pkgname}"
install -Dm644 build/resources/${pkgname}.desktop \
@@ -55,3 +58,9 @@ package() {
install -Dm644 build/resources/${pkgname}.png \
"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
}
+
+# Fails?
+#check() {
+# cd "$srcdir/$pkgname-$_pkgver"
+# LD_LIBRARY_PATH=binaries/system binaries/system/test
+#}
diff --git a/community/0ad/miniupnpc-1.9.patch b/community/0ad/miniupnpc-1.9.patch
deleted file mode 100644
index d0546cf2e..000000000
--- a/community/0ad/miniupnpc-1.9.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -rupN a/source/network/NetServer.cpp b/source/network/NetServer.cpp
---- a/source/network/NetServer.cpp 2013-12-18 16:08:56.000000000 +0000
-+++ b/source/network/NetServer.cpp 2014-02-18 10:11:59.955214338 +0000
-@@ -274,7 +274,7 @@ void* CNetServerWorker::SetupUPnP(void*)
- // Check that the port was actually forwarded.
- ret = UPNP_GetSpecificPortMappingEntry(urls.controlURL,
- data.first.servicetype,
-- psPort, protocall,
-+ psPort, protocall, externalIPAddress,
- intClient, intPort, NULL/*desc*/,
- NULL/*enabled*/, duration);
-
diff --git a/community/atanks/PKGBUILD b/community/atanks/PKGBUILD
index 7cf9b9c64..393585c11 100644
--- a/community/atanks/PKGBUILD
+++ b/community/atanks/PKGBUILD
@@ -1,19 +1,19 @@
-# $Id: PKGBUILD 81091 2012-12-11 19:04:12Z spupykin $
+# $Id: PKGBUILD 111486 2014-05-19 10:07:37Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Jacek Poplawski <jacekpoplawski@gmail.com>
# Contributor: Charlie Cox <ccoxiv@yahoo.com>
pkgname=atanks
-pkgver=5.7
+pkgver=5.9
pkgrel=1
pkgdesc="Atomic Tanks"
url="http://atanks.sourceforge.net"
license=('GPL')
arch=('i686' 'x86_64')
makedepends=('sed')
-depends=('allegro4>=4.4.0.1' 'gcc-libs')
+depends=('allegro4' 'gcc-libs')
source=("http://downloads.sourceforge.net/project/atanks/atanks/atanks-${pkgver}/atanks-${pkgver}.tar.gz")
-md5sums=('135f8cb55e99a4a7b34996f260a9de6a')
+md5sums=('76d92aba871d86b0752d3d01da2782b0')
build() {
cd atanks-${pkgver}
diff --git a/community/autocutsel/PKGBUILD b/community/autocutsel/PKGBUILD
index 4c0e71eef..ba5c264de 100644
--- a/community/autocutsel/PKGBUILD
+++ b/community/autocutsel/PKGBUILD
@@ -1,19 +1,19 @@
-# $Id: PKGBUILD 101226 2013-11-20 07:48:32Z jelle $
+# $Id: PKGBUILD 111534 2014-05-19 17:26:56Z jelle $
# Contributor: Tom Killian <tom@archlinux.org>
# Contributor: Nikos Kouremenos (zeppelin) kourem at gmail dot com
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=autocutsel
-pkgver=0.9.1
+pkgver=0.10.0
pkgrel=1
pkgdesc="synchronizes the two copy/paste buffers mainly used by X applications"
arch=('i686' 'x86_64')
depends=('libxaw')
source=(https://github.com/sigmike/autocutsel/releases/download/$pkgver/autocutsel-$pkgver.tar.gz)
-url="http://www.nongnu.org/autocutsel/"
+url="https://github.com/sigmike/autocutsel"
install=autocutsel.install
license=('GPL')
-md5sums=('7bf76b1ea7a15592f05d02b4c086d4cd')
+md5sums=('7d5b96e5f7b79b883d8350f104043366')
build() {
cd $srcdir/$pkgname-$pkgver
diff --git a/community/darktable/PKGBUILD b/community/darktable/PKGBUILD
index 4958e4e5d..190fc43f5 100644
--- a/community/darktable/PKGBUILD
+++ b/community/darktable/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 110041 2014-04-23 14:51:15Z spupykin $
+# $Id: PKGBUILD 111514 2014-05-19 14:17:53Z svenstaro $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Christian Himpel <chressie at gmail dot com>
# Contributor: Johannes Hanika <hanatos at gmail dot com>
@@ -6,7 +6,7 @@
pkgname=darktable
pkgver=1.4.2
_pkgver=1.4
-pkgrel=1
+pkgrel=3
pkgdesc="Utility to organize and develop raw images"
arch=('i686' 'x86_64')
url=http://darktable.sf.net/
diff --git a/community/devil/PKGBUILD b/community/devil/PKGBUILD
index d515db1cb..cde49731d 100644
--- a/community/devil/PKGBUILD
+++ b/community/devil/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 103318 2014-01-03 10:52:34Z bpiotrowski $
+# $Id: PKGBUILD 111515 2014-05-19 14:17:54Z svenstaro $
# Maintainer: Laurent Carlier <lordheavym@gmail.org>
# Contributor: damir <damir@archlinux.org>
# Contributor: TheHoff <forums>
pkgname=devil
pkgver=1.7.8
-pkgrel=18
+pkgrel=19
pkgdesc="Library for reading several different image formats"
arch=('i686' 'x86_64')
url="http://openil.sourceforge.net/"
diff --git a/community/gmic/PKGBUILD b/community/gmic/PKGBUILD
index d55cef05b..6ed05fb36 100644
--- a/community/gmic/PKGBUILD
+++ b/community/gmic/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 111177 2014-05-15 14:13:54Z spupykin $
+# $Id: PKGBUILD 111516 2014-05-19 14:17:55Z svenstaro $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
# Contributor: farid <farid at archlinuc-br.org>
@@ -7,7 +7,7 @@
pkgbase=gmic
pkgname=("gmic" "gimp-plugin-gmic" "zart")
pkgver=1.5.9.0
-pkgrel=1
+pkgrel=3
arch=("i686" "x86_64")
url="http://gmic.sourceforge.net"
license=("custom:CeCILL")
diff --git a/community/gmic/opencv-buildfix.patch b/community/gmic/opencv-buildfix.patch
deleted file mode 100644
index c45ab09f2..000000000
--- a/community/gmic/opencv-buildfix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -wbBur gmic-1.5.1.7/src/Makefile gmic-1.5.1.7.q/src/Makefile
---- gmic-1.5.1.7/src/Makefile 2012-07-26 12:59:34.000000000 +0400
-+++ gmic-1.5.1.7.q/src/Makefile 2012-08-03 14:03:10.000000000 +0400
-@@ -403,6 +403,7 @@
- mkdir -p $(DESTDIR)$(USR)/share/man/fr/man1/
- cp -f ../man/gmic.1.gz $(DESTDIR)$(USR)/share/man/man1/gmic.1.gz
- cp -f ../man/gmic.1.gz $(DESTDIR)$(USR)/share/man/fr/man1/gmic.1.gz
-+ if test -d /usr/share/bash-completion/completions; then mkdir -p $(DESTDIR)/usr/share/bash-completion/completions/; cp -f gmic_bashcompletion.sh $(DESTDIR)/usr/share/bash-completion/completions/gmic; fi
- if test -d /etc/bash_completion.d/; then mkdir -p $(DESTDIR)/etc/bash_completion.d/; cp -f gmic_bashcompletion.sh $(DESTDIR)/etc/bash_completion.d/gmic; fi
- if test -d /opt/local/etc/bash_completion.d/; then mkdir -p $(DESTDIR)/opt/local/etc/bash_completion.d/; cp -f gmic_bashcompletion.sh $(DESTDIR)/opt/local/etc/bash_completion.d/gmic; fi
-
diff --git a/community/gnustep-back/PKGBUILD b/community/gnustep-back/PKGBUILD
index 65df8e8eb..a860c2207 100644
--- a/community/gnustep-back/PKGBUILD
+++ b/community/gnustep-back/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 96988 2013-09-09 20:00:16Z bgyorgy $
+# $Id: PKGBUILD 111468 2014-05-19 09:48:01Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# Contributor: Sebastian Sareyko <public@nooms.de>
pkgname=gnustep-back
-pkgver=0.23.0
-pkgrel=2
+pkgver=0.24.0
+pkgrel=1
pkgdesc="The GNUstep GUI Backend"
arch=('i686' 'x86_64')
url="http://www.gnustep.org/"
@@ -15,7 +15,7 @@ makedepends=('gnustep-make' 'gnustep-base' 'gnustep-gui' 'libffi' 'gcc-objc')
conflicts=('gnustep-back-svn')
groups=('gnustep-core')
source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
-md5sums=('bde6f222bc74a0ba02f57fa1908c200e')
+md5sums=('0b8393832bd928b9d3ec4eb68d7f6564')
build() {
cd $srcdir/$pkgname-$pkgver
diff --git a/community/gnustep-base/PKGBUILD b/community/gnustep-base/PKGBUILD
index 384e4c5a2..f0ab520e2 100644
--- a/community/gnustep-base/PKGBUILD
+++ b/community/gnustep-base/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 109784 2014-04-18 17:31:27Z andyrtr $
+# $Id: PKGBUILD 111470 2014-05-19 09:48:30Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# Contributor: Sebastian Sareyko <public@nooms.de>
pkgname=gnustep-base
-pkgver=1.24.5
-pkgrel=6
+pkgver=1.24.6
+pkgrel=1
pkgdesc="The GNUstep base package"
arch=('i686' 'x86_64')
url="http://www.gnustep.org/"
@@ -16,7 +16,7 @@ conflicts=('gnustep-base-svn')
groups=('gnustep-core')
options=('!emptydirs' '!makeflags')
source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
-md5sums=('df4e9786c6845d091a677b55d4e2c7c3')
+md5sums=('02e45ae9a7e5e75bf32cc1a6e8381bc1')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/gnustep-gui/PKGBUILD b/community/gnustep-gui/PKGBUILD
index 8f476b599..a5fbb6ce3 100644
--- a/community/gnustep-gui/PKGBUILD
+++ b/community/gnustep-gui/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 109785 2014-04-18 17:31:29Z andyrtr $
+# $Id: PKGBUILD 111472 2014-05-19 09:49:08Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# Contributor: Sebastian Sareyko <public@nooms.de>
pkgname=gnustep-gui
-pkgver=0.23.1
-pkgrel=7
+pkgver=0.24.0
+pkgrel=1
pkgdesc="The GNUstep GUI class library"
arch=('i686' 'x86_64')
url="http://www.gnustep.org/"
@@ -17,16 +17,16 @@ groups=('gnustep-core')
options=('!makeflags')
source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz
giflib-5.0.patch)
-md5sums=('1771bdb42f27ee946b17bf60fef5eb2e'
+md5sums=('bd289f0c7b2626d093ad92364069b9a7'
'b998c0bc3e2bc260c2779d7a50ce6407')
build() {
cd $srcdir/$pkgname-$pkgver
. /etc/profile.d/GNUstep.sh
./configure --prefix=/usr --sysconfdir=/etc/GNUstep
- sed -i 's|#include "GNUstepBase/preface.h"|//#include "GNUstepBase/preface.h" |' Source/GSGuiPrivate.h
- sed -i 's|png_sizeof|sizeof|g' Source/NSBitmapImageRep+PNG.m
- patch -Np1 -i ../giflib-5.0.patch
+# sed -i 's|#include "GNUstepBase/preface.h"|//#include "GNUstepBase/preface.h" |' Source/GSGuiPrivate.h
+# sed -i 's|png_sizeof|sizeof|g' Source/NSBitmapImageRep+PNG.m
+# patch -Np1 -i ../giflib-5.0.patch
make
}
diff --git a/community/gnustep-make/PKGBUILD b/community/gnustep-make/PKGBUILD
index 75241dab0..90c5056ab 100644
--- a/community/gnustep-make/PKGBUILD
+++ b/community/gnustep-make/PKGBUILD
@@ -1,19 +1,19 @@
-# $Id: PKGBUILD 96982 2013-09-09 19:40:39Z bgyorgy $
+# $Id: PKGBUILD 111474 2014-05-19 09:49:41Z spupykin $
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# Contributor: Sebastian Sareyko <public@nooms.de>
pkgname=gnustep-make
-pkgver=2.6.5
-pkgrel=2
+pkgver=2.6.6
+pkgrel=1
pkgdesc="The GNUstep make package"
-arch=('i686' 'x86_64')
+arch=('i686' 'x86_64') # See FS#29546
url="http://www.gnustep.org/"
license=('GPL')
depends=()
conflicts=('gnustep-make-svn')
groups=('gnustep-core')
source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
-md5sums=('1e143d2c920cef02535ab533af8b1846')
+md5sums=('e9ddf251e31c54545e70b0521b73a48e')
build() {
cd $srcdir/$pkgname-$pkgver
diff --git a/community/hwinfo/PKGBUILD b/community/hwinfo/PKGBUILD
index e3f9818fc..8afe9f4d1 100644
--- a/community/hwinfo/PKGBUILD
+++ b/community/hwinfo/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 111449 2014-05-18 18:02:57Z arodseth $
+# $Id: PKGBUILD 111522 2014-05-19 14:32:47Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Kaiting Chen <kaitocracy@gmail.com>
# Contributor: Gergely Imreh <imrehgATgmailDOTcom>
@@ -6,7 +6,7 @@
pkgname=hwinfo
pkgver=21.4.1.1
-pkgrel=1
+pkgrel=2
pkgdesc='Hardware detection tool from openSUSE'
arch=('x86_64' 'i686')
url='http://download.opensuse.org/source/factory/repo/oss/suse/src/'
@@ -16,7 +16,7 @@ makedepends=('sysfsutils' 'rpmextract' 'flex' 'aria2')
options=('!emptydirs')
source=("$pkgname.meta4::http://download.opensuse.org/source/factory/repo/oss/suse/src/$pkgname-${pkgver%.*.*}-${pkgver#*.*.}.src.rpm"
'custom_ioctl.patch')
-sha256sums=('69abbeb2e53268fcf675fea990bb6703dc3031235c130605bae853b898b59205'
+sha256sums=('SKIP'
'6e83b50aa34f31db5fe6de938402e7c4dda6ffa9ffe1346c076e4779018fcf1d')
prepare() {
diff --git a/community/librcc/PKGBUILD b/community/librcc/PKGBUILD
index e8a720e05..398219ac2 100644
--- a/community/librcc/PKGBUILD
+++ b/community/librcc/PKGBUILD
@@ -1,15 +1,15 @@
-# $Id: PKGBUILD 100237 2013-11-02 08:40:16Z spupykin $
+# $Id: PKGBUILD 111488 2014-05-19 10:08:09Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=librcc
pkgver=0.2.10
-pkgrel=3
+pkgrel=4
pkgdesc="Charset Conversion Library"
arch=(i686 x86_64)
url="http://rusxmms.sourceforge.net/"
license=('GPL')
depends=('aspell' 'enca' 'libxml2' 'librcd')
-makedepends=('patch' 'gtk' 'gtk2')
+makedepends=('patch' 'gtk2')
install=librcc.install
source=(http://downloads.sourceforge.net/rusxmms/${pkgname}-${pkgver}.tar.bz2)
md5sums=('077260cf58ae9624c964652b79fbb5fb')
diff --git a/community/luminancehdr/PKGBUILD b/community/luminancehdr/PKGBUILD
index 99a1d8218..0577c1d42 100644
--- a/community/luminancehdr/PKGBUILD
+++ b/community/luminancehdr/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 105320 2014-02-04 22:24:07Z jlichtblau $
+# $Id: PKGBUILD 111517 2014-05-19 14:17:56Z svenstaro $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com>
# Contributor: Dmitry N. Shilov <stormblast@land.ru>
pkgname=luminancehdr
pkgver=2.4.0
-pkgrel=1
+pkgrel=2
pkgdesc='Open source graphical user interface application that aims to provide a workflow for HDR imaging'
arch=('i686' 'x86_64')
url='http://qtpfsgui.sourceforge.net/'
diff --git a/community/openjpeg2/PKGBUILD b/community/openjpeg2/PKGBUILD
index 70d22140d..974266dfd 100644
--- a/community/openjpeg2/PKGBUILD
+++ b/community/openjpeg2/PKGBUILD
@@ -2,7 +2,7 @@
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=openjpeg2
-pkgver=2.0.0
+pkgver=2.1.0
pkgrel=1
pkgdesc="An open source JPEG 2000 codec, version ${pkgver}"
arch=(i686 x86_64)
@@ -10,12 +10,12 @@ license=('BSD')
url="http://www.openjpeg.org"
makedepends=('cmake')
depends=('zlib')
-source=(http://openjpeg.googlecode.com/files/openjpeg-${pkgver}.tar.gz)
-sha1sums=('0af78ab2283b43421458f80373422d8029a9f7a7')
+source=(http://downloads.sourceforge.net/project/openjpeg.mirror/$pkgver/openjpeg-$pkgver.tar.gz)
+md5sums=('f6419fcc233df84f9a81eb36633c6db6')
build() {
cd "${srcdir}/openjpeg-${pkgver}"
- cmake -DCMAKE_INSTALL_PREFIX=/usr .
+ cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_DOC=on .
make
}
diff --git a/community/percona-server/PKGBUILD b/community/percona-server/PKGBUILD
index 8fc1da43a..cd9c8f0df 100644
--- a/community/percona-server/PKGBUILD
+++ b/community/percona-server/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 110804 2014-05-07 13:56:00Z mtorromeo $
+# $Id: PKGBUILD 111530 2014-05-19 16:34:14Z mtorromeo $
# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
pkgbase=percona-server
@@ -6,7 +6,7 @@ pkgname=('libperconaserverclient' 'percona-server-clients' 'percona-server')
pkgver=5.6.17_65.0
_pkgver=${pkgver/_/-}
_myver=${pkgver/_rel*}
-pkgrel=1
+pkgrel=2
arch=('i686' 'x86_64')
makedepends=('cmake' 'openssl' 'zlib' 'libaio' 'systemd-tools')
license=('GPL')
@@ -42,7 +42,7 @@ build() {
-DINSTALL_MANDIR=share/man \
-DINSTALL_PLUGINDIR=lib/mysql/plugin \
-DINSTALL_SCRIPTDIR=bin \
- -DINSTALL_INCLUDEDIR=include/mysql \
+ -DINSTALL_INCLUDEDIR=include/perconaserver \
-DINSTALL_DOCREADMEDIR=share/mysql \
-DINSTALL_SUPPORTFILESDIR=share/mysql \
-DINSTALL_MYSQLSHAREDIR=share/mysql \
@@ -74,8 +74,14 @@ package_libperconaserverclient() {
pkgdesc='Percona Server client libraries'
depends=('openssl')
- cd build/libmysql
- make DESTDIR="$pkgdir" install
+ cd build
+ for dir in include libmysql libmysqld libservices; do
+ make -C $dir DESTDIR="$pkgdir" install
+ done
+
+ install -Dm755 scripts/mysql_config "$pkgdir"/usr/bin/perconaserver_config
+ install -d "$pkgdir"/usr/share/man/man1
+ install -m644 "$srcdir"/$pkgbase-$_pkgver/man/mysql_config.1 "$pkgdir"/usr/share/man/man1/perconaserver_config.1
}
package_percona-server-clients() {
diff --git a/community/perl-clone/PKGBUILD b/community/perl-clone/PKGBUILD
index 177783e2d..0c518e922 100644
--- a/community/perl-clone/PKGBUILD
+++ b/community/perl-clone/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: Alex Dioso <adioso->gmail*com>
pkgname=perl-clone
-pkgver=0.36
+pkgver=0.37
pkgrel=1
pkgdesc='Recursive copy of nested objects.'
arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@ license=('GPL' 'PerlArtistic')
depends=('perl>=5.10.0')
options=('!emptydirs')
source=("http://search.cpan.org/CPAN/authors/id/G/GA/GARU/Clone-$pkgver.tar.gz")
-md5sums=('bb7aeeb66b183f600e5a4ccb941cbc1b')
+md5sums=('b0c9d1bcf9e85ab2fbc0b436cfc801f5')
build() {
cd Clone-${pkgver}
diff --git a/community/perl-dbd-pg/PKGBUILD b/community/perl-dbd-pg/PKGBUILD
index f7b9d942f..71379bc13 100644
--- a/community/perl-dbd-pg/PKGBUILD
+++ b/community/perl-dbd-pg/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 109103 2014-04-10 13:00:48Z fyan $
+# $Id: PKGBUILD 111543 2014-05-19 20:12:08Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: François Charette <firmicus ατ gmx δοτ net>
pkgname=perl-dbd-pg
-pkgver=3.1.1
+pkgver=3.2.0
pkgrel=1
pkgdesc="Postgres Driver for DBI"
arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@ license=('GPL' 'PerlArtistic')
depends=('perl-dbi>=1.52' 'postgresql-libs')
options=('!emptydirs')
source=("http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz")
-md5sums=('ad5c5439356351f908fa47e91856e75f')
+md5sums=('21b5a7f2d0a3ceccea67ed9e69e41ace')
build() {
cd DBD-Pg-${pkgver}
diff --git a/community/perl-libapreq2/PKGBUILD b/community/perl-libapreq2/PKGBUILD
index 0c9b8821b..6dcfe780e 100644
--- a/community/perl-libapreq2/PKGBUILD
+++ b/community/perl-libapreq2/PKGBUILD
@@ -1,17 +1,16 @@
-# $Id: PKGBUILD 100273 2013-11-02 08:47:16Z spupykin $
+# $Id: PKGBUILD 111527 2014-05-19 16:10:27Z anatolik $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Tom K <tomk@runbox.com>
pkgname=perl-libapreq2
pkgver=2.13
-pkgrel=5
+pkgrel=6
pkgdesc="A safe, standards-compliant, high-performance library used for parsing HTTP cookies, query-strings and POST data."
arch=('i686' 'x86_64')
url="http://search.cpan.org/dist/libapreq2"
depends=('mod_perl' 'apr-util')
makedepends=('perl-extutils-xsbuilder')
license=("GPL")
-options=('!makeflags')
source=(http://search.cpan.org/CPAN/authors/id/I/IS/ISAAC/libapreq2-$pkgver.tar.gz)
md5sums=('c11fb0861aa84dcc6cd0f0798b045eee')
@@ -22,6 +21,7 @@ build() {
sed -i 's#-ldb-5.1#-ldb-5.2#' apreq2-config
make
}
+
package(){
cd $srcdir/libapreq2-$pkgver
make install DESTDIR=$pkgdir
diff --git a/community/ruby-gnome2/PKGBUILD b/community/ruby-gnome2/PKGBUILD
new file mode 100644
index 000000000..365be77dc
--- /dev/null
+++ b/community/ruby-gnome2/PKGBUILD
@@ -0,0 +1,102 @@
+# $Id: PKGBUILD 111529 2014-05-19 16:12:55Z anatolik $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Eric Bélanger
+# Contributor: Brad Fanella <bradfanella@archlinux.us>
+# Contributor: Bjorn Lindeijer <bjorn@lindeijer.nl>
+# Contributor: kritoke <kritoke@nospam.gmail.com>
+
+pkgbase=ruby-gnome2
+pkgver=2.2.0
+pkgrel=1
+pkgname=('ruby-gtk3' 'ruby-gdk3' 'ruby-atk' 'ruby-gdkpixbuf2' 'ruby-gio2' 'ruby-glib2'
+ 'ruby-gtk2' 'ruby-pango' 'ruby-gobject-introspection')
+arch=('x86_64' 'i686')
+url='http://ruby-gnome2.sourceforge.jp/'
+license=('LGPL')
+makedepends=('ruby-pkgconfig' 'ruby-cairo' 'gtk2' 'gtk3' 'gobject-introspection')
+source=("http://downloads.sourceforge.net/ruby-gnome2/ruby-gnome2-all-$pkgver.tar.gz")
+sha256sums=('73b2366152a15533d8e7056b30c76db6d5bdc6e5a1dc9c72320cbef91ff63c83')
+
+prepare() {
+ cd "ruby-gnome2-all-$pkgver"
+ LANG="en_US.UTF-8" ruby extconf.rb gtk3 gdk3 atk gdk_pixbuf2 gio2 glib2 gtk2 pango gobject-introspection --vendor
+}
+
+build() {
+ cd "ruby-gnome2-all-$pkgver"
+ make
+}
+
+package_ruby-atk() {
+ pkgdesc='Ruby bindings for atk'
+ depends=("ruby-glib2=$pkgver" 'atk')
+
+ cd "ruby-gnome2-all-$pkgver/atk"
+ make DESTDIR="$pkgdir" install -j1
+}
+
+package_ruby-gdkpixbuf2() {
+ pkgdesc='Ruby bindings for gdkpixbuf2'
+ depends=("ruby-glib2=$pkgver" 'gdk-pixbuf2')
+
+ cd "ruby-gnome2-all-$pkgver/gdk_pixbuf2"
+ make DESTDIR="$pkgdir" install -j1
+}
+
+package_ruby-gio2() {
+ pkgdesc='Ruby bindings for gio2'
+ depends=("ruby-glib2=$pkgver")
+
+ cd "ruby-gnome2-all-$pkgver/gio2"
+ make DESTDIR="$pkgdir" install -j1
+}
+
+package_ruby-glib2() {
+ pkgdesc='Ruby bindings for glib2'
+ depends=('glib2' 'ruby')
+
+ cd "ruby-gnome2-all-$pkgver/glib2"
+ make DESTDIR="$pkgdir" install -j1
+}
+
+package_ruby-gtk2() {
+ pkgdesc='Ruby bindings for gtk2'
+ depends=('gtk2' "ruby-glib2=$pkgver" "ruby-pango=$pkgver" "ruby-atk=$pkgver"
+ "ruby-gdkpixbuf2=$pkgver")
+
+ cd "ruby-gnome2-all-$pkgver/gtk2"
+ make DESTDIR="$pkgdir" install -j1
+}
+
+package_ruby-pango() {
+ pkgdesc='Ruby bindings for pango'
+ depends=("ruby-glib2=$pkgver" 'ruby-cairo' 'pango')
+
+ cd "ruby-gnome2-all-$pkgver/pango"
+ make DESTDIR="$pkgdir" install -j1
+}
+
+package_ruby-gtk3() {
+ pkgdesc='Ruby bindings for gtk3'
+ depends=('gtk3' "ruby-glib2=$pkgver" "ruby-pango=$pkgver" "ruby-atk=$pkgver"
+ "ruby-gdkpixbuf2=$pkgver" "ruby-gdk3=$pkgver")
+
+ cd "ruby-gnome2-all-$pkgver/gtk3"
+ make DESTDIR="$pkgdir" install -j1
+}
+
+package_ruby-gdk3() {
+ pkgdesc='Ruby bindings for gdk3'
+ depends=('ruby' 'gtk3')
+
+ cd "ruby-gnome2-all-$pkgver/gdk3"
+ make DESTDIR="$pkgdir" install -j1
+}
+
+package_ruby-gobject-introspection() {
+ pkgdesc='Ruby bindings of GObjectIntrospection'
+ depends=('ruby' 'gobject-introspection')
+
+ cd "ruby-gnome2-all-$pkgver/gobject-introspection"
+ make DESTDIR="$pkgdir" install -j1
+}
diff --git a/community/sage-mathematics/PKGBUILD b/community/sage-mathematics/PKGBUILD
index b575e6573..f6564a9a5 100644
--- a/community/sage-mathematics/PKGBUILD
+++ b/community/sage-mathematics/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 110989 2014-05-11 19:10:42Z arcanis $
+# $Id: PKGBUILD 111528 2014-05-19 16:10:30Z anatolik $
# Maintainer: Evgeniy Alekseev <arcanis.arch at gmail dot com>
# Contributor: Daniel Wallace <danielwallace at gtmanfred dot com>
# Contributor: Antonio Rojas <nqn1976 at gmail dot com>
@@ -9,7 +9,7 @@
pkgname=sage-mathematics
pkgver=6.2
-pkgrel=1
+pkgrel=2
pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, Mathematica, and Matlab"
arch=('i686' 'x86_64')
url="http://www.sagemath.org"
@@ -58,13 +58,17 @@ X-KDE-Username="
sed -e 's/READLINE/#READLINE/' -i "${srcdir}/sage-${pkgver}/build/install"
# disable building gf2x with sse2 for i686
if [ "${CARCH}" == "i686" ]; then
- cp "${srcdir}/gf2x-sse2-i686.patch" "${srcdir}/sage-${pkgver}/build/pkgs/gf2x/patches/sse2-i686.patch"
+ cp "${srcdir}/gf2x-sse2-i686.patch" "${srcdir}/sage-${pkgver}/build/pkgs/gf2x/patches/sse2.patch"
fi
}
build() {
cd "sage-${pkgver}"
+ # disable default makepkg flags (needed for singular and libgap)
+ unset CFLAGS
+ unset CXXFLAGS
+ unset LDFLAGS
## flags
# do not build own gcc
export SAGE_INSTALL_GCC='no'
diff --git a/community/sdcc/PKGBUILD b/community/sdcc/PKGBUILD
index 5b8a12c0b..819f5ec25 100644
--- a/community/sdcc/PKGBUILD
+++ b/community/sdcc/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 109379 2014-04-14 09:42:49Z spupykin $
+# $Id: PKGBUILD 111501 2014-05-19 10:48:21Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Jose Negron <josenj.arch@mailnull.net>
pkgname=sdcc
pkgver=3.4.0
-pkgrel=1
+pkgrel=2
pkgdesc="Retargettable ANSI C compiler (Intel 8051, Maxim 80DS390, Zilog Z80 and the Motorola 68HC08)"
arch=('i686' 'x86_64')
license=('GPL')
@@ -26,7 +26,8 @@ build() {
./configure \
--prefix=/usr \
--includedir=/usr/include/sdcc \
- --libdir=/usr/lib/sdcc
+ --libdir=/usr/lib/sdcc \
+ --disable-werror
make
}
diff --git a/community/squid/PKGBUILD b/community/squid/PKGBUILD
index a4835349a..dae2e63f2 100644
--- a/community/squid/PKGBUILD
+++ b/community/squid/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 110696 2014-05-05 09:16:38Z spupykin $
+# $Id: PKGBUILD 111478 2014-05-19 09:50:52Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Mark Coolen <mark.coolen@gmail.com>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
@@ -6,7 +6,7 @@
pkgname=squid
pkgver=3.4.5
-pkgrel=1
+pkgrel=2
pkgdesc='Full-featured Web proxy cache server'
arch=('x86_64' 'i686')
url='http://www.squid-cache.org'
@@ -15,7 +15,10 @@ makedepends=('libcap' 'krb5')
license=('GPL')
options=('emptydirs')
backup=('etc/squid/squid.conf'
- 'etc/squid/mime.conf')
+ 'etc/squid/mime.conf'
+ 'etc/squid/errorpage.css'
+ 'etc/squid/cachemgr.conf'
+ 'etc/squid/msntauth.conf')
install=$pkgname.install
source=("http://www.squid-cache.org/Versions/v3/3.4/$pkgname-$pkgver.tar.bz2"
'squid.pam'
diff --git a/community/swi-prolog/PKGBUILD b/community/swi-prolog/PKGBUILD
index 8a381d894..e3ac6c828 100644
--- a/community/swi-prolog/PKGBUILD
+++ b/community/swi-prolog/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 109638 2014-04-17 07:46:16Z fyan $
+# $Id: PKGBUILD 111455 2014-05-18 22:07:55Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Jachym Barvinek <jachymb@gmail.com>
# Contributor: Thomas Dziedzic < gostrc at gmail >
@@ -6,7 +6,7 @@
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
pkgname=swi-prolog
-pkgver=6.6.4
+pkgver=6.6.5
pkgrel=1
pkgdesc='Prolog environment'
arch=('x86_64' 'i686')
@@ -21,7 +21,7 @@ optdepends=('unixodbc: for using the odbc4pl library'
'libxft: for using the pl2xpce library')
#options=('!makeflags')
source=("http://www.swi-prolog.org/download/stable/src/pl-$pkgver.tar.gz")
-sha256sums=('663977959979e389df0f87c2eb426ab71105c12206605ec40925893b91733cef')
+sha256sums=('79ee4526ce8a70d55cfeecbb1acfd737db0ddbe45585faba41a24ddb34484a53')
build() {
cd "pl-$pkgver"
diff --git a/community/tesseract-game/PKGBUILD b/community/tesseract-game/PKGBUILD
index 5288b972b..aabff83ba 100644
--- a/community/tesseract-game/PKGBUILD
+++ b/community/tesseract-game/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 111267 2014-05-15 22:21:25Z arodseth $
+# $Id: PKGBUILD 111498 2014-05-19 10:16:54Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: portals <portals at riseup.net>
# Contributor: novemberist
@@ -7,23 +7,23 @@
pkgname=tesseract-game
pkgver=1
-pkgrel=1
+pkgrel=2
pkgdesc='Smooth FPS with map editing, instagib, DM and CTF'
url='http://tesseract.gg/'
arch=('x86_64' 'i686')
license=('ZLIB')
-depends=('libgl' 'sdl2' 'sdl2_image' 'sdl2_mixer' 'libpng' 'mesa' 'zlib')
+depends=('libgl' 'sdl2' 'sdl2_image' 'sdl2_mixer' 'libpng' 'mesa' 'zlib' 'hicolor-icon-theme')
makedepends=('subversion' 'gendesk' 'imagemagick')
-source=('tesseract::svn://svn.tuxfamily.org/svnroot/tesseract/main#revision=1678'
- 'tesseract_large.png::http://upload.wikimedia.org/wikipedia/commons/5/50/Truncated_tesseract_stereographic_%28tC%29.png'
+source=('tesseract::svn://svn.tuxfamily.org/svnroot/tesseract/main#revision=1688'
'tesseract.sh')
-md5sums=('SKIP'
- '3f7098fad57081bb1af0ee4771e20ad3'
- 'ab00bafb80c1c7764cba8f51120d4a9a')
+sha256sums=('SKIP'
+ '34a03fb87b3f3e1f16d1744d42f566a36e67cbdeaee1876281857b341002566b')
prepare() {
- gendesk -f -n --pkgname tesseract --pkgdesc "$pkgdesc" --exec tesseract-game
- convert -transparent white -resize 48x48 tesseract_large.png tesseract.png 2> /dev/null
+ gendesk -f -n --pkgname ${pkgname/-game} --pkgdesc "$pkgdesc" --exec "$pkgname"
+ for dim in 16 32 48 64 128 256 512; do
+ convert -resize "${dim}x${dim}" tesseract/media/interface/cube.png "$pkgname$dim.png" 2> /dev/null
+ done
}
build() {
@@ -31,16 +31,21 @@ build() {
}
package() {
- cd tesseract
+ local n=tesseract
+ cd "$n"
make -C src install
- install -d "$pkgdir/usr/share/tesseract-game/"
- cp -R media/ config/ "$pkgdir/usr/share/tesseract-game"
- install -Dm755 bin_unix/native_client "$pkgdir/usr/bin/tesseract-client"
- install -Dm755 bin_unix/native_server "$pkgdir/usr/bin/tesseract-server"
- install -Dm644 src/readme_tesseract.txt "$pkgdir/usr/share/licenses/tesseract-game/LICENSE"
- install -Dm755 ../tesseract.sh "$pkgdir/usr/bin/tesseract-game"
- install -Dm644 ../tesseract.desktop "$pkgdir/usr/share/applications/tesseract.desktop"
- install -Dm644 ../tesseract.png "$pkgdir/usr/share/pixmaps/tesseract.png"
+ install -d "$pkgdir/usr/share/$pkgname/"
+ cp -R media/ config/ "$pkgdir/usr/share/$pkgname"
+ install -Dm755 bin_unix/native_client "$pkgdir/usr/bin/$n-client"
+ install -Dm755 bin_unix/native_server "$pkgdir/usr/bin/$n-server"
+ install -Dm644 "src/readme_$n.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+ install -Dm755 "../$n.sh" "$pkgdir/usr/bin/$pkgname"
+ install -Dm644 "../$n.desktop" "$pkgdir/usr/share/applications/$n.desktop"
+ for dim in 16 32 48 64 128 256 512; do
+ install -Dm644 "../$pkgname$dim.png" \
+ "$pkgdir/usr/share/icons/hicolor/${dim}x$dim/apps/$n.png"
+ done
+ install -Dm644 "../${pkgname}48.png" "$pkgdir/usr/share/pixmaps/$n.png"
}
# vim:set ts=2 sw=2 et:
diff --git a/community/tesseract-game/tesseract.install b/community/tesseract-game/tesseract.install
new file mode 100644
index 000000000..736191ad0
--- /dev/null
+++ b/community/tesseract-game/tesseract.install
@@ -0,0 +1,14 @@
+post_upgrade() {
+ update-desktop-database -q
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_install() {
+ post_upgrade
+}
+
+post_remove() {
+ post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:
diff --git a/community/twin/PKGBUILD b/community/twin/PKGBUILD
index b5c5c1476..0112471d2 100644
--- a/community/twin/PKGBUILD
+++ b/community/twin/PKGBUILD
@@ -1,16 +1,15 @@
-# $Id: PKGBUILD 100291 2013-11-02 08:50:30Z spupykin $
+# $Id: PKGBUILD 111490 2014-05-19 10:08:37Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: G_Syme <demichan(at)mail(dot)upb(dot)de>
pkgname=twin
pkgver=0.6.2
-pkgrel=5
+pkgrel=6
pkgdesc="A text-mode window environment"
arch=('i686' 'x86_64')
url='http://sourceforge.net/projects/twin/'
license=('GPL2' 'LGPL2.1')
depends=('gpm' 'zlib' 'libxpm')
-optdepends=('gtk')
options=('!makeflags')
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('6211c8b2e655003eb96b1fc5dc37e7d9')
diff --git a/community/units/PKGBUILD b/community/units/PKGBUILD
index 1576588f7..795146b5d 100644
--- a/community/units/PKGBUILD
+++ b/community/units/PKGBUILD
@@ -1,15 +1,15 @@
-# $Id: PKGBUILD 109492 2014-04-15 08:22:39Z spupykin $
+# $Id: PKGBUILD 111480 2014-05-19 09:51:28Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Jeff Mickey <jeff@archlinux.org>
# Contributor: Steve Sansom <snsansom@gmail.com>
pkgname=units
pkgver=2.11
-pkgrel=1
+pkgrel=2
pkgdesc="converts between different units"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/units/units.html"
-depends=('readline')
+depends=('readline' 'python')
license=("GPL")
options=('!makeflags')
install=units.install
diff --git a/community/xmms2/PKGBUILD b/community/xmms2/PKGBUILD
index 5fc53a9c1..4ade6619f 100644
--- a/community/xmms2/PKGBUILD
+++ b/community/xmms2/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 108663 2014-03-31 11:48:18Z spupykin $
+# $Id: PKGBUILD 111492 2014-05-19 10:09:32Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=xmms2
pkgver=0.8DrO_o
-pkgrel=25
+pkgrel=26
pkgdesc="complete rewrite of the popular music player"
arch=('i686' 'x86_64')
url="http://xmms2.org/"
license=('LGPL')
backup=('etc/conf.d/xmms2d.conf')
depends=('sqlite' 'libmad')
-makedepends=('alsa-lib' 'boost' 'curl' 'faad2' 'ffmpeg' 'fftw' 'flac' 'glib'
+makedepends=('alsa-lib' 'boost' 'curl' 'faad2' 'ffmpeg' 'fftw' 'flac'
'jack' 'libao' 'libmms' 'libmpcdec' 'libofa' 'libsamplerate' 'libshout'
'libdiscid' 'libcdio-paranoia'
'libvorbis' 'libxml2' 'mpg123' 'perl' 'pulseaudio' 'pyrex'
@@ -72,7 +72,7 @@ prepare() {
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./waf configure --prefix=/usr \
- --with-optionals=python,launcher,xmmsclient++,xmmsclient++-glib,perl,ruby,nycli,pixmaps,et,mdns,medialib-updater \
+ --with-optionals=python,launcher,xmmsclient++,perl,ruby,nycli,pixmaps,et,mdns,medialib-updater \
--with-ruby-archdir=`ruby -e 'puts RbConfig::CONFIG["vendorarchdir"]'` \
--with-ruby-libdir=`ruby -e 'puts RbConfig::CONFIG["vendorlibdir"]'`
./waf build
diff --git a/community/xosd/PKGBUILD b/community/xosd/PKGBUILD
index 257e5215b..d9700965b 100644
--- a/community/xosd/PKGBUILD
+++ b/community/xosd/PKGBUILD
@@ -1,17 +1,15 @@
-# $Id: PKGBUILD 100303 2013-11-02 08:52:28Z spupykin $
+# $Id: PKGBUILD 111494 2014-05-19 10:10:09Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=xosd
pkgver=2.2.14
-pkgrel=7
+pkgrel=8
pkgdesc="Displays text on your screen. On-Screen-Display-libs for some tools"
arch=('i686' 'x86_64')
license=('GPL2')
url="http://www.ignavus.net/software.html"
depends=('libxt' 'libxinerama' 'sh')
-makedepends=('xmms' 'gdk-pixbuf')
-optdepends=('gdk-pixbuf: for using the xmms plugin')
source=("http://downloads.sourceforge.net/libxosd/${pkgname}-${pkgver}.tar.gz"
"http://ftp.de.debian.org/debian/pool/main/x/xosd/xosd_$pkgver-2.debian.tar.gz")
md5sums=('4b349fe930e4eee2f504d6c02673e24d'
diff --git a/community/zathura-pdf-mupdf/PKGBUILD b/community/zathura-pdf-mupdf/PKGBUILD
index 15a17d45e..28743672d 100644
--- a/community/zathura-pdf-mupdf/PKGBUILD
+++ b/community/zathura-pdf-mupdf/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=zathura-pdf-mupdf
pkgver=0.2.6
-pkgrel=3
+pkgrel=4
pkgdesc="Adds pdf support to zathura by using the mupdf library"
arch=('i686' 'x86_64')
url="https://pwmt.org/projects/zathura/plugins/zathura-pdf-mupdf/"