summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/0ad/PKGBUILD2
-rw-r--r--community/eeze-svn/PKGBUILD4
-rw-r--r--community/egoboo/PKGBUILD7
-rw-r--r--community/enet/PKGBUILD19
-rw-r--r--community/flightgear/PKGBUILD4
-rw-r--r--community/geos/PKGBUILD17
-rw-r--r--community/gsasl/PKGBUILD6
-rw-r--r--community/kdenlive/PKGBUILD12
-rw-r--r--community/libcec/PKGBUILD10
-rw-r--r--community/libmicrohttpd/PKGBUILD6
-rw-r--r--community/libnetfilter_queue/PKGBUILD8
-rw-r--r--community/libuser/PKGBUILD9
-rw-r--r--community/libvirt/PKGBUILD8
-rw-r--r--community/onboard/PKGBUILD3
-rw-r--r--community/openttd/PKGBUILD6
-rw-r--r--community/os-prober/PKGBUILD14
-rw-r--r--community/pcsclite/PKGBUILD8
-rw-r--r--community/perl-params-util/PKGBUILD65
-rw-r--r--community/pigeonhole/PKGBUILD11
-rw-r--r--community/postgis/PKGBUILD19
-rw-r--r--community/postgis/postgis.changelog7
-rw-r--r--community/soundkonverter/PKGBUILD6
-rw-r--r--community/spacefm/PKGBUILD4
-rw-r--r--community/speed-dreams/PKGBUILD4
24 files changed, 133 insertions, 126 deletions
diff --git a/community/0ad/PKGBUILD b/community/0ad/PKGBUILD
index 77a3bcae9..00f34cdc7 100644
--- a/community/0ad/PKGBUILD
+++ b/community/0ad/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=0ad
pkgver=a10
_pkgver=r11863-alpha
-pkgrel=1
+pkgrel=2
pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
arch=('i686' 'x86_64')
url="http://wildfiregames.com/0ad"
diff --git a/community/eeze-svn/PKGBUILD b/community/eeze-svn/PKGBUILD
index b23ff49b4..edb67f670 100644
--- a/community/eeze-svn/PKGBUILD
+++ b/community/eeze-svn/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 68736 2012-04-01 10:41:08Z rvanharen $
+# $Id: PKGBUILD 71684 2012-06-01 13:04:52Z dreisner $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: Ronald van Haren <ronald.archlinux.org>
# Contributor: bluebugs
pkgname=eeze-svn
pkgver=69825
-pkgrel=1
+pkgrel=2
pkgdesc="A data storage and compression library"
arch=('i686' 'x86_64' 'mips64el')
groups=('e17-libs-svn' 'e17-svn')
diff --git a/community/egoboo/PKGBUILD b/community/egoboo/PKGBUILD
index b7fe83637..2e4b9ba76 100644
--- a/community/egoboo/PKGBUILD
+++ b/community/egoboo/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 57902 2011-11-04 09:04:39Z lcarlier $
+# $Id: PKGBUILD 71718 2012-06-01 18:47:50Z ebelanger $
# Maintainer: Laurent Carlier <lordheavym@gmail.com>
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Arkham <arkham at archlinux dot us>
@@ -7,7 +7,7 @@
pkgname=egoboo
pkgver=2.8.1
-pkgrel=3
+pkgrel=4
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
pkgdesc="An open-source action RPG/dungeon crawling adventure with OpenGL 3D graphics"
@@ -30,6 +30,9 @@ build() {
-e 's#games#bin#g' \
game/platform/file_linux.c
+ # fix linking
+ sed -i -e 's#-lenet#-lenet -lm#g' game/Makefile
+
make all
}
diff --git a/community/enet/PKGBUILD b/community/enet/PKGBUILD
index 1e17b4709..b3603c9f1 100644
--- a/community/enet/PKGBUILD
+++ b/community/enet/PKGBUILD
@@ -1,32 +1,27 @@
-# $Id: PKGBUILD 66600 2012-02-26 14:00:34Z lfleischer $
+# $Id: PKGBUILD 71720 2012-06-01 18:47:54Z ebelanger $
# Maintainer: Mateusz Herych <heniekk@gmail.com>
# Contributor: Bj?indeijer <bjorn@lindeijer.nl>
pkgname=enet
-pkgver=1.3.3
-pkgrel=2
+pkgver=1.3.4
+pkgrel=1
pkgdesc='A relatively thin, simple and robust network communication layer on top of UDP.'
arch=('i686' 'x86_64' 'mips64el')
url='http://enet.bespin.org/'
license=('custom')
depends=('glibc')
-options=(!libtool)
+options=('!libtool')
source=("http://enet.bespin.org/download/${pkgname}-${pkgver}.tar.gz")
-md5sums=('4b0b69377fd4511e82e5f0921a942e59')
+md5sums=('e5fb0ca3fd3a9fe7eadbcde4d6af1517')
build() {
cd "${pkgname}-${pkgver}"
-
- CFLAGS="-fPIC" ./configure --prefix=/usr
+ CFLAGS+="-fPIC" ./configure --prefix=/usr
make
- gcc -Wl,-soname,libenet.so.2 -shared -o libenet.so.2 *.o
}
package() {
cd "${pkgname}-${pkgver}"
-
- make prefix="${pkgdir}/usr" install
-
- install -m755 libenet.so.2 "${pkgdir}/usr/lib"
+ make DESTDIR="${pkgdir}" install
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
diff --git a/community/flightgear/PKGBUILD b/community/flightgear/PKGBUILD
index cf9f8434c..50ddaec16 100644
--- a/community/flightgear/PKGBUILD
+++ b/community/flightgear/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 70923 2012-05-19 18:42:10Z spupykin $
+# $Id: PKGBUILD 71686 2012-06-01 13:04:56Z dreisner $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: William Rea <sillywilly@gmail.com>
# Contributor: Hans Janssen <hans@janserv.xs4all.nl>
pkgname=flightgear
pkgver=2.6.0
-pkgrel=4
+pkgrel=5
pkgdesc="An open-source, multi-platform flight simulator"
arch=(i686 x86_64)
depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion')
diff --git a/community/geos/PKGBUILD b/community/geos/PKGBUILD
index 5cda9ef58..c4185367a 100644
--- a/community/geos/PKGBUILD
+++ b/community/geos/PKGBUILD
@@ -1,10 +1,11 @@
-# $Id: PKGBUILD 70399 2012-05-05 14:32:15Z jlichtblau $
+# $Id: PKGBUILD 71674 2012-05-31 23:36:16Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
# Contributor: William Rea <sillywilly@gmail.com>
# Contributor: Alexander Rødseth <rodseth@gmail.com>
+
pkgname=geos
-pkgver=3.3.3
+pkgver=3.3.4
pkgrel=1
pkgdesc="C++ port of the Java Topology Suite"
arch=('i686' 'x86_64' 'mips64el')
@@ -12,20 +13,18 @@ url="http://trac.osgeo.org/geos/"
license=('LGPL')
depends=('gcc-libs' 'bash')
options=('!libtool' '!emptydirs')
-source=("http://download.osgeo.org/$pkgname/$pkgname-$pkgver.tar.bz2")
-sha256sums=('dfcf4bd70ab212a5b7bad21d01b84748f101a545092b56dafdc3882ef3bddec9')
+source=(http://download.osgeo.org/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('cd5400aa5f3fe32246dfed5d238c5017e1808162c865c016480b3e6c07271904')
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd ${srcdir}/$pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd ${srcdir}/$pkgname-$pkgver
- make DESTDIR="$pkgdir" install
+ make DESTDIR=${pkgdir} install
}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/gsasl/PKGBUILD b/community/gsasl/PKGBUILD
index d3b9a3754..6f41deacb 100644
--- a/community/gsasl/PKGBUILD
+++ b/community/gsasl/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 71580 2012-05-30 09:14:40Z spupykin $
+# $Id: PKGBUILD 71612 2012-05-31 08:51:27Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Orivej Desh <smpuj@bk.ru>
# Maintainer: Orivej Desh <smpuj@bk.ru>
pkgname=gsasl
pkgver=1.8.0
-pkgrel=1
+pkgrel=2
pkgdesc="Simple Authentication and Security Layer framework and a few common SASL mechanisms"
arch=("i686" "x86_64" 'mips64el')
url="http://josefsson.org/gsasl/"
@@ -16,7 +16,7 @@ md5sums=('982fe54a20016aa46a871c084c990c36')
build() {
cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr
+ ./configure --prefix=/usr --with-gssapi-impl=mit
make
}
diff --git a/community/kdenlive/PKGBUILD b/community/kdenlive/PKGBUILD
index 93eec8d18..6b8b97719 100644
--- a/community/kdenlive/PKGBUILD
+++ b/community/kdenlive/PKGBUILD
@@ -1,13 +1,14 @@
-# $Id: PKGBUILD 70710 2012-05-15 11:27:19Z spupykin $
+# $Id: PKGBUILD 71628 2012-05-31 14:14:16Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Zuf <kontakt.zuf@gmail.com>
# Contributor: Darwin Bautista <djclue917@gmail.com>
pkgname=kdenlive
-pkgver=0.9
+pkgver=0.9.2
pkgrel=1
pkgdesc="A non-linear video editor for Linux"
arch=('i686' 'x86_64' 'mips64el')
+# http://download.kde.org/stable/kdenlive/
url="http://www.kdenlive.org/"
license=('GPL')
depends=('kdebase-runtime' 'mlt' 'dvgrab' 'qjson' 'qimageblitz'
@@ -19,17 +20,14 @@ optdepends=('recordmydesktop'
'xine-ui')
install=kdenlive.install
options=('docs')
-source=(http://download.kde.org/stable/kdenlive/$pkgver/src/kdenlive-$pkgver.tar.gz
- glu.patch)
-md5sums=('8ceb59444df9aa950fd6bc7300c4a90d'
- 'fd6c5fe46419ee505c562363d41f6e9f')
+source=(http://download.kde.org/stable/kdenlive/$pkgver/src/kdenlive-$pkgver.tar.bz2)
+md5sums=('40f108f26e2c2e08807a1c183d8764ec')
build() {
export LDFLAGS="$LDFLAGS -lX11"
cd "${srcdir}"
mkdir -p build
cd build
- (cd ../kdenlive-${pkgver} && patch -p1 <$srcdir/glu.patch)
cmake ../kdenlive-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
diff --git a/community/libcec/PKGBUILD b/community/libcec/PKGBUILD
index fc9c0f46c..e14ac932e 100644
--- a/community/libcec/PKGBUILD
+++ b/community/libcec/PKGBUILD
@@ -1,18 +1,18 @@
-# $Id: PKGBUILD 70691 2012-05-14 21:28:54Z idevolder $
+# $Id: PKGBUILD 71688 2012-06-01 13:05:00Z dreisner $
# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
# Contributor: Philippe Cherel <philippe.cherel@mayenne.org>
pkgname=libcec
-pkgver=1.6.2
+pkgver=1.6.3
pkgrel=1
pkgdesc="Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter"
arch=('i686' 'x86_64')
url="https://github.com/Pulse-Eight/libcec"
license=('GPL')
-depends=('udev')
+depends=('udev' 'lockdev')
source=("$pkgname-$pkgver.tar.gz::https://github.com/Pulse-Eight/libcec/tarball/$pkgname-$pkgver")
-_srcfolder=Pulse-Eight-libcec-e14b158
-sha256sums=('2d853df4478a9b93ef699c7038cf78a97741b1a594996d1df644f2d5e51d6969')
+_srcfolder=Pulse-Eight-libcec-ab37938
+sha256sums=('964fb7ad2281b44dacddd57e5cfc16750271492cbbf48291ee487644d69bcb61')
options=(!libtool)
build() {
diff --git a/community/libmicrohttpd/PKGBUILD b/community/libmicrohttpd/PKGBUILD
index 39aa0b5e6..499eabe5a 100644
--- a/community/libmicrohttpd/PKGBUILD
+++ b/community/libmicrohttpd/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 64124 2012-02-09 00:56:55Z spupykin $
+# $Id: PKGBUILD 71678 2012-06-01 08:24:00Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Norberto Lopes <shelika@mail.telepac.pt>
# Contributor: Kao Dome <kaodome@gmail.com>
@@ -6,7 +6,7 @@
# Contributor: Mathias Rohnstock <linksoft@gmx.de>
pkgname=libmicrohttpd
-pkgver=0.9.19
+pkgver=0.9.20
pkgrel=1
pkgdesc="a small C library that is supposed to make it easy to run an HTTP server as part of another application."
arch=('i686' 'x86_64' 'mips64el')
@@ -16,7 +16,7 @@ options=('!libtool')
depends=('gnutls' 'libgcrypt')
install=libmicrohttpd.install
source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
-md5sums=('0f4c55ba224ce75b3b993b558e072a6b')
+md5sums=('ede6ad4a07a8a0794c42e4ef356ee27c')
build() {
cd ${pkgname}-${pkgver}
diff --git a/community/libnetfilter_queue/PKGBUILD b/community/libnetfilter_queue/PKGBUILD
index 2617cb561..9607bf44b 100644
--- a/community/libnetfilter_queue/PKGBUILD
+++ b/community/libnetfilter_queue/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 66195 2012-02-23 03:06:28Z spupykin $
+# $Id: PKGBUILD 71614 2012-05-31 08:52:14Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Kevin Edmonds <edmondskevin@hotmail.com>
# Maintainer: Filip Wojciechowski, filip at loka dot pl
pkgname=libnetfilter_queue
-pkgver=1.0.0
-pkgrel=2
+pkgver=1.0.1
+pkgrel=1
pkgdesc="userspace library providing an API to packets that have been queued by the kernel packet filter"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.netfilter.org/projects/libnetfilter_queue/index.html"
@@ -14,7 +14,7 @@ depends=(libnfnetlink)
makedepends=(pkgconfig)
options=('!libtool')
source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2)
-md5sums=('af6a9ea350f63a13609bc3b47b5c395c')
+md5sums=('08b968cb2d36c24deb7f26a69f5d8602')
build() {
cd $srcdir/$pkgname-$pkgver
diff --git a/community/libuser/PKGBUILD b/community/libuser/PKGBUILD
index dcf5d2bbf..639eade30 100644
--- a/community/libuser/PKGBUILD
+++ b/community/libuser/PKGBUILD
@@ -1,18 +1,19 @@
-# $Id: PKGBUILD 58190 2011-11-08 15:26:34Z spupykin $
+# $Id: PKGBUILD 71616 2012-05-31 09:49:00Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Thomas Dziedzic < gostrc at gmail >
pkgname=libuser
-pkgver=0.57.1
-pkgrel=2
+pkgver=0.57.6
+pkgrel=1
pkgdesc='A standardized interface for manipulating and administering user and group accounts.'
arch=('i686' 'x86_64')
license=('LGPL')
url='https://fedorahosted.org/libuser/'
depends=('python2' 'glib2' 'popt')
options=('!libtool')
+backup=('etc/libuser.conf')
source=("https://fedorahosted.org/releases/l/i/libuser/libuser-${pkgver}.tar.xz")
-md5sums=('be82c6941264d0b4bd04f95fb342ec7d')
+md5sums=('4a6410e51664570610da1b9a830ac8ec')
build() {
cd ${pkgname}-${pkgver}
diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD
index 32d80a6de..a6b354fad 100644
--- a/community/libvirt/PKGBUILD
+++ b/community/libvirt/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 71544 2012-05-28 16:19:18Z spupykin $
+# $Id: PKGBUILD 71690 2012-06-01 13:05:20Z dreisner $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Jonathan Wiersma <archaur at jonw dot org>
pkgname=libvirt
pkgver=0.9.12
-pkgrel=7
+pkgrel=8
pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)"
arch=('i686' 'x86_64' 'mips64el')
url="http://libvirt.org/"
@@ -87,8 +87,8 @@ package() {
mv $pkgdir/etc/sysctl.d/libvirtd $pkgdir/usr/lib/sysctl.d/libvirtd
# systemd stuff
-# install -D -m644 "$srcdir"/libvirt.tmpfiles.d "$pkgdir"/usr/lib/tmpfiles.d/libvirt
-# mv $pkgdir/lib/* $pkgdir/usr/lib/
+ install -D -m644 "$srcdir"/libvirt.tmpfiles.d "$pkgdir"/usr/lib/tmpfiles.d/libvirt.conf
+ mv $pkgdir/lib/* $pkgdir/usr/lib/
rm -rf \
$pkgdir/var/run \
diff --git a/community/onboard/PKGBUILD b/community/onboard/PKGBUILD
index b493ea4c0..1a39cbbdf 100644
--- a/community/onboard/PKGBUILD
+++ b/community/onboard/PKGBUILD
@@ -1,3 +1,4 @@
+# $Id: PKGBUILD 71667 2012-05-31 18:15:19Z ebelanger $
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
pkgname=onboard
@@ -8,7 +9,7 @@ arch=('i686' 'x86_64')
url="https://launchpad.net/onboard"
license=('GPL')
depends=('python2-cairo' 'dbus-python' 'python2-gobject' 'libwnck3' 'python2-virtkey' 'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'xdg-utils')
-makedepends=('python-distutils-extra')
+makedepends=('python2-distutils-extra')
optdepends=('at-spi2-atk: auto-show when editing text'
'mousetweaks: hover click with mouse')
options=('!emptydirs')
diff --git a/community/openttd/PKGBUILD b/community/openttd/PKGBUILD
index 884a5e45c..957db6065 100644
--- a/community/openttd/PKGBUILD
+++ b/community/openttd/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 69766 2012-04-23 09:16:08Z ibiru $
+# $Id: PKGBUILD 71703 2012-06-01 13:23:48Z lcarlier $
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
pkgname=openttd
-pkgver=1.2.0
+pkgver=1.2.1
pkgrel=1
pkgdesc='An engine for running Transport Tycoon Deluxe.'
arch=('i686' 'x86_64' 'mips64el')
@@ -13,7 +13,7 @@ install=openttd.install
optdepends=('openttd-opengfx: free graphics'
'openttd-opensfx: free soundset')
source=("http://binaries.openttd.org/releases/${pkgver}/${pkgname}-${pkgver}-source.tar.xz")
-md5sums=('7f5181fdd5119336ccbe08f47eab78c1')
+md5sums=('66b54e0293594aab90085db113cc2dd3')
build() {
cd ${pkgname}-${pkgver}
diff --git a/community/os-prober/PKGBUILD b/community/os-prober/PKGBUILD
index 26e4aaa4b..60969d142 100644
--- a/community/os-prober/PKGBUILD
+++ b/community/os-prober/PKGBUILD
@@ -1,21 +1,21 @@
-# $Id: PKGBUILD 63931 2012-02-07 13:00:00Z tredaelli $
+# $Id: PKGBUILD 71622 2012-05-31 12:59:02Z tredaelli $
# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
# Contributor: darkcoder <mario_vazq@hotmail.com>
pkgname=os-prober
-pkgver=1.49
-pkgrel=3
+pkgver=1.53
+pkgrel=1
pkgdesc="Utility to detect other OSes on a set of drives"
url="http://joey.kitenet.net/code/os-prober/"
arch=('i686' 'x86_64')
license=('GPL3')
depends=('sh')
source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz)
-md5sums=('5a981493a7c16174e6454fcf6b39b1b5')
-sha512sums=('473f02807bdc971d6abf976f8a708691767ba85d45b54c1c87310c62626959f30e524aca2fb08843dfc859f26bd80cbbba016235137aa87db1c4151f6e893fa4')
+md5sums=('1435131b60b078a2a8301df3237a6829')
+sha512sums=('4e983d6774cb85df9bec1e8e7ca53d9eec6605bf7308b141d1ee1f118b11534e440a19c0aae17c38f717f433c1ef853ad5879feac1ba4ee10774b3f85bb544ad')
build() {
- cd "$srcdir/$pkgname"
+ cd "$srcdir/$pkgname-$pkgver"
# adjust lib dir to allow detection of 64-bit distros
sed -i -e "s:/lib/ld\*\.so\*:/lib*/ld*.so*:g" os-probes/mounted/common/90linux-distro
@@ -25,7 +25,7 @@ build() {
}
package() {
- cd "$srcdir/$pkgname"
+ cd "$srcdir/$pkgname-$pkgver"
install -Dm755 linux-boot-prober "$pkgdir"/usr/bin/linux-boot-prober
install -Dm755 os-prober "$pkgdir"/usr/bin/os-prober
diff --git a/community/pcsclite/PKGBUILD b/community/pcsclite/PKGBUILD
index 1feecf219..3f4e3b813 100644
--- a/community/pcsclite/PKGBUILD
+++ b/community/pcsclite/PKGBUILD
@@ -1,15 +1,15 @@
-# $Id: PKGBUILD 69074 2012-04-08 23:10:15Z giovanni $
+# $Id: PKGBUILD 71730 2012-06-02 00:19:22Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Daniel Plaza <daniel.plaza.espi@gmail.com>
pkgname=pcsclite
pkgver=1.8.3
-pkgrel=2
+pkgrel=4
pkgdesc="PC/SC Architecture smartcard middleware library"
arch=('i686' 'x86_64' 'mips64el')
url="https://alioth.debian.org/projects/pcsclite/"
license=('BSD')
-depends=('python')
+depends=('python2' 'systemd-tools')
makedepends=('pkg-config')
options=('!libtool' '!docs')
source=("https://alioth.debian.org/frs/download.php/3706/pcsc-lite-${pkgver}.tar.bz2"
@@ -20,6 +20,8 @@ md5sums=('7ad8c97c89f77aab7a00317eb7e811e9'
build() {
cd "${srcdir}/pcsc-lite-${pkgver}"
+ sed -i -e "s:python:python2:g" src/spy/pcsc-spy
+
./configure --prefix=/usr \
--enable-libudev \
--sysconfdir=/etc \
diff --git a/community/perl-params-util/PKGBUILD b/community/perl-params-util/PKGBUILD
index df95826e9..da772e5f4 100644
--- a/community/perl-params-util/PKGBUILD
+++ b/community/perl-params-util/PKGBUILD
@@ -1,48 +1,43 @@
-# Maintainer: Justin Davis <jrcd83@gmail.com>
-# $Id: PKGBUILD 57661 2011-11-01 00:18:52Z juster $
+# Maintainer: Justin Davis (juster) <jrcd83@gmail.com>
+# $Id: PKGBUILD 71654 2012-05-31 15:48:33Z juster $
pkgname=perl-params-util
-pkgver=1.04
+pkgver=1.07
pkgrel=1
-pkgdesc="Simple, compact and correct param-checking functions"
+pkgdesc='Simple, compact and correct param-checking functions'
arch=(i686 x86_64)
license=(PerlArtistic GPL)
options=(!emptydirs)
-depends=('perl>=5.5.30' 'perl-scalar-list-utils')
-makedepends=('perl-extutils-cbuilder>=0.27' 'perl-extutils-makemaker>=6.52'
- 'perl-pathtools')
-checkdepends=('perl-test-simple')
+depends=('perl>=5.5.30')
url=https://metacpan.org/release/Params-Util
-source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Params-Util-${pkgver}.tar.gz")
-md5sums=(84bfb0a16cff67f2077ece0e24408b0f)
-sha512sums=(086b6e37ce24a423439e346c4fc7069cbb5bde6af5c259fa765616bf637597105ee379df5edca82fdeb3bb0e44d83c7704ea1fe09170acea389ffb54d77f3d3d)
-_distdir="${srcdir}/Params-Util-${pkgver}"
+source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Params-Util-$pkgver.tar.gz")
+md5sums=(02db120c0eef87aae1830cc62bdec37b)
+sha512sums=(ff471b01b33414fc5e1c68d97c21171a95d3418c33e3c45f9910cc768898690e35051506a83ad9403a200336654c14b8efc9d471c4b3fe3321047a7603d6fd56)
+_dir="$srcdir/Params-Util-$pkgver"
-build() {
- ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
- PERL_AUTOINSTALL=--skipdeps \
- PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
- PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
- MODULEBUILDRC=/dev/null
+build()
+(
+ cd "$_dir"
+ export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+ unset PERL5LIB PERL_MM_OPT
+ /usr/bin/perl Makefile.PL
+ make
+)
- cd "$_distdir"
- /usr/bin/perl Makefile.PL
- make
- )
-}
+check()
+(
+ cd "$_dir"
+ export PERL_MM_USE_DEFAULT=1
+ unset PERL5LIB
+ make test
+)
-check() {
- ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
- cd "$_distdir"
- make test
- )
-}
-
-package() {
- cd "$_distdir"
- make DESTDIR="$pkgdir" install
- find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}
+package()
+(
+ cd "$_dir"
+ make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+ find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+)
# Local Variables:
# mode: shell-script
diff --git a/community/pigeonhole/PKGBUILD b/community/pigeonhole/PKGBUILD
index 84b646d14..a7430b0f1 100644
--- a/community/pigeonhole/PKGBUILD
+++ b/community/pigeonhole/PKGBUILD
@@ -4,12 +4,12 @@
# This must be built against the version of dovecot being used,
# else mail delivery will fail.
# Specify the version of dovecot to be used here:
-_dcpkgver=2.1.6
+_dcpkgver=2.1.7
# Make sure to bump pkgrel if changing this.
pkgname=pigeonhole
-pkgver=0.3.0
-pkgrel=7
+pkgver=0.3.1
+pkgrel=1
pkgdesc="Fully rewritten Sieve implementation for Dovecot v2.1"
arch=('i686' 'x86_64' 'mips64el')
url="http://pigeonhole.dovecot.org/"
@@ -19,8 +19,8 @@ conflicts=('dovecot-sieve' 'pigeonhole-hg')
source=("http://www.rename-it.nl/dovecot/2.1/dovecot-2.1-$pkgname-$pkgver.tar.gz"{,.sig}
"dovecot.conf")
options=('!libtool')
-sha256sums=('2aeee8aa6dc700483b0a5a3d31f535abce71698ed1d467f11e931aeace2b0ada'
- '181213cd4af854966ff5bb6b5052b49b0b40c0c21999939b8451658053fa396d'
+sha256sums=('e95d86c5cd912c9a7e180414ffd5eee52e1b5dc8abef3d5762b950d1de86b5c7'
+ '9d4699435cb1e82d3ac943c37f2ef909cd80cab707cc8b23be0d087f0e80903f'
'a457a1691cfa82495fc0503bfa4b61e54b149e63400fe0f568dff2c24a3f7858')
build() {
@@ -37,4 +37,3 @@ package() {
install -m 644 -D "$srcdir/dovecot.conf" "$pkgdir/etc/ld.so.conf.d/dovecot.conf"
}
-
diff --git a/community/postgis/PKGBUILD b/community/postgis/PKGBUILD
index 379774e3e..e2a8a1086 100644
--- a/community/postgis/PKGBUILD
+++ b/community/postgis/PKGBUILD
@@ -1,29 +1,36 @@
-# $Id: PKGBUILD 57370 2011-10-26 14:27:28Z jlichtblau $
+# $Id: PKGBUILD 71631 2012-05-31 14:23:54Z andrea $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=postgis
-pkgver=1.5.3
+pkgver=2.0.0
pkgrel=2
pkgdesc="Adds support for geographic objects to PostgreSQL"
arch=('i686' 'x86_64' 'mips64el')
-url="http://postgis.refractions.net/"
+url="http://postgis.org/"
license=('GPL')
-depends=('postgresql' 'proj' 'geos')
+depends=('postgresql' 'gdal' 'json-c')
changelog=$pkgname.changelog
-source=(http://postgis.refractions.net/download/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('a2334f8b229446c0497d48a430a40152a3b71a5da02f414a0340a0a025d416cf')
+options=('!libtool')
+source=("http://postgis.org/download/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('12179e24e348421c60c501590fda25bd349e2f697003958d9493f5c91b280081')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
+
+ # Build utils (FS#25836)
+ cd utils
+ make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ cd utils
make DESTDIR="${pkgdir}" install
}
diff --git a/community/postgis/postgis.changelog b/community/postgis/postgis.changelog
index 16f9b925d..13d851351 100644
--- a/community/postgis/postgis.changelog
+++ b/community/postgis/postgis.changelog
@@ -1,3 +1,10 @@
+2012-05-31 Andrea Scarpino <andrea@archlinux.org>
+ * Add JSON-C support
+ * Build utils (FS#25836)
+
+2012-05-31 Andrea Scarpino <andrea@archlinux.org>
+ * Update to major release 2.0.0-1
+
2011-10-26 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
* FS#26159 fix in postgis-1.5.3-2
diff --git a/community/soundkonverter/PKGBUILD b/community/soundkonverter/PKGBUILD
index 8fcdfbc57..f9979dcc4 100644
--- a/community/soundkonverter/PKGBUILD
+++ b/community/soundkonverter/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 70533 2012-05-10 17:21:08Z stativ $
+# $Id: PKGBUILD 71704 2012-06-01 13:28:02Z stativ $
# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com>
# Contributor: Mateusz Herych <heniekk@gmail.com>
# Contributor: Eric Belanger <eric@archlinux.org>
# Contributor: Darwin Bautista <djclue917@gmail.com>
pkgname=soundkonverter
-pkgver=1.5.0
+pkgver=1.6.0
pkgrel=1
pkgdesc="Front-end to various audio converters"
arch=('i686' 'x86_64' 'mips64el')
@@ -31,7 +31,7 @@ optdepends=('cdrkit: cdda2wav backend'
'wavpack: wavpack backend')
install=$pkgname.install
source=("http://kde-apps.org/CONTENT/content-files/29024-${pkgname}-${pkgver}.tar.gz")
-md5sums=('9cb8dcf64bd257965a227d79e3c6e7fb')
+md5sums=('1d2a171b1a1c9d186cd5a644ba9fc686')
build() {
cd "$srcdir"/$pkgname-$pkgver
diff --git a/community/spacefm/PKGBUILD b/community/spacefm/PKGBUILD
index 303105ede..d1e4ae01e 100644
--- a/community/spacefm/PKGBUILD
+++ b/community/spacefm/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 70364 2012-05-05 07:51:43Z bpiotrowski $
+# $Id: PKGBUILD 71694 2012-06-01 13:05:32Z dreisner $
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: IgnorantGuru http://igurublog.wordpress.com/contact-ignorantguru/
# Contributor: ridikulus_rat <the.ridikulus.rat@gmail.com>
pkgname=spacefm
pkgver=0.7.6
-pkgrel=2
+pkgrel=3
pkgdesc="A multi-panel tabbed file manager"
arch=('i686' 'x86_64')
url="http://ignorantguru.github.com/spacefm/"
diff --git a/community/speed-dreams/PKGBUILD b/community/speed-dreams/PKGBUILD
index 76fd08ba9..2f01f1781 100644
--- a/community/speed-dreams/PKGBUILD
+++ b/community/speed-dreams/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 69991 2012-04-27 23:56:34Z svenstaro $
+# $Id: PKGBUILD 71722 2012-06-01 18:48:00Z ebelanger $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Adrián Chaves Fernández, aka Gallaecio <adriyetichaves@gmail.com>
# Contributor: Shahar Weiss <sweiss4@gmx.net> (build() code from his TORCS' PKGBUILD)
pkgname=speed-dreams
pkgver=2.0.0
_pkgver=2.0.0-r4687
-pkgrel=1
+pkgrel=2
pkgdesc="A racing simulator with rich graphics and physics"
arch=('i686' 'x86_64' 'mips64el')
url="http://speed-dreams.sourceforge.net/"