summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/courier-authlib/PKGBUILD11
-rw-r--r--community/courier-authlib/authdaemond.rc.d13
-rw-r--r--community/dmenu/PKGBUILD6
-rw-r--r--community/filezilla/PKGBUILD11
-rw-r--r--community/gmtk/PKGBUILD4
-rw-r--r--community/libvirt/PKGBUILD8
-rw-r--r--community/mingw32-binutils/PKGBUILD10
-rw-r--r--community/mingw32-gcc-base/PKGBUILD12
-rw-r--r--community/mingw32-gcc/PKGBUILD10
-rw-r--r--community/torcs/PKGBUILD11
-rw-r--r--community/vym/PKGBUILD6
-rw-r--r--community/vym/vym.changelog3
12 files changed, 58 insertions, 47 deletions
diff --git a/community/courier-authlib/PKGBUILD b/community/courier-authlib/PKGBUILD
index eeb601311..bbc05db55 100644
--- a/community/courier-authlib/PKGBUILD
+++ b/community/courier-authlib/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=courier-authlib
pkgver=0.63.0
-pkgrel=6
+pkgrel=7
pkgdesc="Authentification library for the courier mailserver(s)"
arch=(i686 x86_64)
license=('GPL2')
@@ -22,7 +22,7 @@ install=${pkgname}.install
source=(http://downloads.sourceforge.net/project/courier/authlib/${pkgver}/${pkgname}-${pkgver}.tar.bz2
authdaemond.rc.d)
md5sums=('411a927d178f783a1e8fab9964ce0dd2'
- '911ee9f40d70fafc6bb4cc636c5ad531')
+ '7de75a9a74796f4fd2e81fd3ca16ed8d')
build() {
#export MAKEFLAGS="-j1"
@@ -36,7 +36,8 @@ build() {
--with-mailuser=courier --with-mailgroup=courier \
--with-authpam --with-authpwd --with-authshadow \
--with-authldap --with-authmysql --with-authpgsql \
- --with-authuserdb --with-authcram --with-authdaemon
+ --with-authuserdb --with-authcram --with-authdaemon \
+ --with-authdaemonvar=/var/run/authdaemon
make
}
@@ -55,9 +56,11 @@ package() {
###############################################################################
# Install daemon, that wraps couriers bashscript
install -Dm 755 ${srcdir}/authdaemond.rc.d ${pkgdir}/etc/rc.d/authdaemond
+ mkdir -p ${pkgdir}/var/spool/authdaemon
chown -R 72:72 ${pkgdir}/var/spool/authdaemon
- mkdir ${pkgdir}/var/spool/courier
+ mkdir -p ${pkgdir}/var/spool/courier
chown -R 72:72 ${pkgdir}/var/spool/courier
+ chown -R 72:72 ${pkgdir}/var/run/authdaemon
# docs say we can remove .a files after make
find ${pkgdir} -name '*\.a' -exec rm -f {} \;
# Make libs available to /usr/lib
diff --git a/community/courier-authlib/authdaemond.rc.d b/community/courier-authlib/authdaemond.rc.d
index ff4abb182..791c3d122 100644
--- a/community/courier-authlib/authdaemond.rc.d
+++ b/community/courier-authlib/authdaemond.rc.d
@@ -4,12 +4,14 @@
. /etc/rc.d/functions
start() {
+ [ -d /var/run/authdaemon ] || mkdir -p /var/run/authdaemon
+ chown courier:courier /var/run/authdaemon
+
stat_busy "Starting Authdaemond"
/usr/sbin/authdaemond start &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
- ln -s /var/spool/authdaemon/pid /var/run/authdaemond.pid
add_daemon authdaemond
stat_done
fi
@@ -21,10 +23,13 @@ stop() {
if [ $? -gt 0 ]; then
stat_fail
else
- rm -f /var/run/authdaemond.pid
- rm_daemon authdaemond
- # housecleaning; just like kids'n toys - don't care when it's needed anymore
+ rm -f /var/run/authdaemon/{pid.lock,pid,socket} &> /dev/null
+
+ # TODO: Take these out at some point, they're only cleanup for old way
+ rm -f /var/run/authdaemond.pid &> /dev/null
rm -f /var/spool/authdaemon/{pid.lock,pid,socket} &> /dev/null
+
+ rm_daemon authdaemond
stat_done
fi
}
diff --git a/community/dmenu/PKGBUILD b/community/dmenu/PKGBUILD
index db7dc7373..050157357 100644
--- a/community/dmenu/PKGBUILD
+++ b/community/dmenu/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 55762 2011-09-19 13:35:20Z ttopper $
+# $Id: PKGBUILD 61824 2012-01-08 18:20:40Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de>
# Contributor: Thayer Williams <thayer@archlinux.org>
# Contributor: Jeff 'codemac' Mickey <jeff@archlinux.org>
pkgname=dmenu
-pkgver=4.4.1
+pkgver=4.5
pkgrel=1
pkgdesc="A generic menu for X"
url="http://tools.suckless.org/dmenu/"
@@ -13,7 +13,7 @@ arch=('i686' 'x86_64')
license=('MIT')
depends=('sh' 'libxinerama')
source=("http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz")
-md5sums=('d18aaa9ac3265f92ec34a0df0cb6ebd4')
+md5sums=('9c46169ed703732ec52ed946c27d84b4')
build(){
cd $srcdir/$pkgname-$pkgver
diff --git a/community/filezilla/PKGBUILD b/community/filezilla/PKGBUILD
index d46042547..f495f7475 100644
--- a/community/filezilla/PKGBUILD
+++ b/community/filezilla/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 58248 2011-11-09 10:50:52Z bluewind $
+# $Id: PKGBUILD 61830 2012-01-08 19:17:47Z bluewind $
# Contributor: Alexander Fehr <pizzapunk gmail com>
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=filezilla
-pkgver=3.5.2
+pkgver=3.5.3
pkgrel=1
pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
arch=('i686' 'x86_64')
@@ -11,14 +11,11 @@ url="http://filezilla-project.org/"
license=('GPL')
depends=('dbus-core' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3')
install=filezilla.install
-source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2"
-gnutls-3.patch)
-md5sums=('ec4847be44932dc872a7e83b94ae2c9f'
- '0646cf7d6f90766961724102cf2cebd6')
+source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2")
+md5sums=('a1a2848db0c5c8f3321ebe4ee3842e31')
build() {
cd "${pkgname}-${pkgver}"
- patch -p1 -i "$srcdir/gnutls-3.patch"
./autogen.sh
./configure \
--prefix=/usr \
diff --git a/community/gmtk/PKGBUILD b/community/gmtk/PKGBUILD
index f7c68c23b..0704b7726 100644
--- a/community/gmtk/PKGBUILD
+++ b/community/gmtk/PKGBUILD
@@ -3,12 +3,12 @@
pkgname=gmtk
pkgver=1.0.5
-pkgrel=1
+pkgrel=2
pkgdesc='Common functions for gnome-mplayer and gecko-mediaplay.'
arch=('i686' 'x86_64')
url='http://gmtk.googlecode.com/'
license=('GPL')
-depends=('glib' 'gtk3' 'dconf')
+depends=('glib2' 'gtk3' 'dconf')
makedepends=('intltool' 'pkg-config')
options=(!libtool)
source=("http://gmtk.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD
index e12494bab..5038f5816 100644
--- a/community/libvirt/PKGBUILD
+++ b/community/libvirt/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 60347 2011-12-11 20:18:29Z spupykin $
+# $Id: PKGBUILD 61826 2012-01-08 18:22:27Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Jonathan Wiersma <archaur at jonw dot org>
pkgname=libvirt
-pkgver=0.9.8
-pkgrel=2
+pkgver=0.9.9
+pkgrel=1
pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)"
arch=('i686' 'x86_64')
url="http://libvirt.org/"
@@ -37,7 +37,7 @@ source=("http://libvirt.org/sources/$pkgname-$pkgver.tar.gz"
openbsd-netcat-default.patch
unixperms.patch
yajl-2.x.patch)
-md5sums=('5bb74092e469d773c3d63128a8c57501'
+md5sums=('37c4bf8cdd4c76150bc0c1d249945d27'
'c43244c40a0437038c82089618e7beaa'
'3ed0e24f5b5e25bf553f5427d64915e6'
'737ec24aa56871fbabfa892789457db4'
diff --git a/community/mingw32-binutils/PKGBUILD b/community/mingw32-binutils/PKGBUILD
index f4b23c144..930f97380 100644
--- a/community/mingw32-binutils/PKGBUILD
+++ b/community/mingw32-binutils/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 59022 2011-11-20 20:22:21Z spupykin $
+# $Id: PKGBUILD 61841 2012-01-08 20:30:41Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Ondrej Jirman <megous@megous.com>
# Contributor: mosra <mosra@centrum.cz>
pkgname=mingw32-binutils
-pkgver=2.21.53
+pkgver=2.22
pkgrel=1
_uprel=1
arch=(i686 x86_64)
@@ -13,10 +13,12 @@ pkgdesc="A set of programs to assemble and manipulate binary and object files (m
depends=('glibc' 'zlib')
license=(GPL)
source=(https://downloads.sourceforge.net/project/mingw/MinGW/Base/binutils/binutils-$pkgver/binutils-$pkgver-${_uprel}-mingw32-src.tar.lzma)
-md5sums=('e7f6602056f594acc9a4a559909d4649')
+md5sums=('35419c797be081e081a664f95c3d3361')
build() {
- tar --lzma -xf binutils-$pkgver-${_uprel}-mingw32-src.tar.lzma
+ [ $NOEXTRACT -eq 1 ] || tar --lzma -xf binutils-$pkgver-${_uprel}-mingw32-src.tar.lzma
+ [ $NOEXTRACT -eq 1 ] || tar xjf binutils-$pkgver-${_uprel}-mingw32-src/binutils-$pkgver.tar.bz2
+
cd $srcdir/binutils-$pkgver
./configure \
--target=i486-mingw32 \
diff --git a/community/mingw32-gcc-base/PKGBUILD b/community/mingw32-gcc-base/PKGBUILD
index 94d509968..08da00e6d 100644
--- a/community/mingw32-gcc-base/PKGBUILD
+++ b/community/mingw32-gcc-base/PKGBUILD
@@ -1,14 +1,14 @@
-# $Id: PKGBUILD 59028 2011-11-20 20:24:08Z spupykin $
+# $Id: PKGBUILD 61843 2012-01-08 20:32:16Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Ondrej Jirman <megous@megous.com>
pkgname=mingw32-gcc-base
-pkgver=4.6.1
+pkgver=4.6.2
_w32apiver=3.17
_runtimever=3.20
-_uprel=2
+_uprel=1
_upw32rel=1
-pkgrel=2
+pkgrel=1
arch=(i686 x86_64)
pkgdesc="A C cross-compiler for building Windows executables on Linux"
depends=(mingw32-binutils)
@@ -16,12 +16,12 @@ makedepends=(p7zip mingw32-runtime mingw32-w32api)
conflicts=(mingw32-gcc)
options=(!strip)
license=(GPL LGPL)
-url="http://mingw.sf.net"
+url="http://sourceforge.net/projects/mingw/files/MinGW/Base/gcc/Version4/"
source=(gcc-$pkgver-${_uprel}-mingw32-src.tar.lzma::http://downloads.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-$pkgver-${_uprel}/gcc-$pkgver-${_uprel}-mingw32-src.tar.lzma
http://downloads.sourceforge.net/project/mingw/MinGW/Base/w32api/w32api-${_w32apiver}/w32api-${_w32apiver}-${_upw32rel}-mingw32-src.tar.lzma
http://downloads.sourceforge.net/project/mingw/MinGW/Base/mingw-rt/mingwrt-${_runtimever}/mingwrt-${_runtimever}-mingw32-src.tar.gz
gcc-1-mingw-float.patch)
-md5sums=('f8b09b7e51223e1ae1c1e466af3ac82e'
+md5sums=('1f71a7f486bdf7a9875b7932f628b2b4'
'89e5800096aa334009f98e7c1743d825'
'26c0886cc60729b94956cc6d81cd076c'
'2407123c35c0aa92ee5ffc27decca9a7')
diff --git a/community/mingw32-gcc/PKGBUILD b/community/mingw32-gcc/PKGBUILD
index ba05b01ee..058236e68 100644
--- a/community/mingw32-gcc/PKGBUILD
+++ b/community/mingw32-gcc/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 59025 2011-11-20 20:23:13Z spupykin $
+# $Id: PKGBUILD 61845 2012-01-08 21:08:39Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Ondrej Jirman <megous@megous.com>
pkgname=mingw32-gcc
-pkgver=4.6.1
-pkgrel=2
-_uprel=2
+pkgver=4.6.2
+pkgrel=1
+_uprel=1
arch=(i686 x86_64)
pkgdesc="A C and C++ cross-compilers for building Windows executables on Linux"
depends=('mingw32-pthreads' 'mingw32-runtime' 'mingw32-binutils' 'mingw32-w32api'
@@ -17,7 +17,7 @@ url="http://sourceforge.net/projects/mingw/files/MinGW/Base/gcc/Version4/"
license=(GPL LGPL)
source=(gcc-$pkgver-${_uprel}-mingw32-src.tar.lzma::http://downloads.sourceforge.net/project/mingw/MinGW/Base/gcc/Version4/gcc-$pkgver-${_uprel}/gcc-$pkgver-${_uprel}-mingw32-src.tar.lzma
gcc-1-mingw-float.patch)
-md5sums=('f8b09b7e51223e1ae1c1e466af3ac82e'
+md5sums=('1f71a7f486bdf7a9875b7932f628b2b4'
'2407123c35c0aa92ee5ffc27decca9a7')
build()
diff --git a/community/torcs/PKGBUILD b/community/torcs/PKGBUILD
index 9326ea1d5..1d6c27f91 100644
--- a/community/torcs/PKGBUILD
+++ b/community/torcs/PKGBUILD
@@ -1,21 +1,22 @@
-# $Id: PKGBUILD 59309 2011-11-23 10:18:01Z spupykin $
+# $Id: PKGBUILD 61835 2012-01-08 19:53:39Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Shahar Weiss <sweiss4@gmx.net>
pkgname=torcs
-pkgver=1.3.2_test1
-pkgrel=2
+pkgver=1.3.2_test2
+pkgrel=1
pkgdesc="A 3D racing cars simulator using OpenGL"
url="http://torcs.sourceforge.net"
license=("GPL")
arch=('i686' 'x86_64')
-depends=('freeglut' 'libpng' 'freealut' 'libxi' 'libxmu' 'libxrandr' 'torcs-data')
+depends=('freeglut' 'libpng' 'freealut' 'libxi' 'libxmu' 'libxrandr' 'torcs-data'
+ 'libvorbis')
makedepends=('plib')
options=('!makeflags')
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-${pkgver/_/-}.tar.bz2
torcs.desktop
torcs-gcc.patch)
-md5sums=('978b908a42ff6bc235a791bba3fa66b9'
+md5sums=('7851c1149587451bd64a6a55d785af40'
'328e419e9f985c3e7b69924fe299330d'
'5ae7e903df37300d3b8744328c756bff')
diff --git a/community/vym/PKGBUILD b/community/vym/PKGBUILD
index cca7d0132..73710b116 100644
--- a/community/vym/PKGBUILD
+++ b/community/vym/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 56624 2011-10-09 08:27:22Z jlichtblau $
+# $Id: PKGBUILD 61822 2012-01-08 17:53:27Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: S�ren Holm <sgh@sgh.dk>
pkgname=vym
-pkgver=1.99.0
+pkgver=2.0.3
pkgrel=1
pkgdesc="A mindmapping tool"
arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@ changelog=$pkgname.changelog
install=$pkgname.install
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2 \
$pkgname.desktop)
-sha256sums=('0393aca3d88103bdfe4bce829a41664510dd0f6b8599299bf58ea797a913e583'
+sha256sums=('b04b57647adef84920c140fb5900ca884235a00bfd88ef6352ecf700a96717c4'
'e299c69c213e7aac3f5b5d0ab088132b4ec7cb63a391f272e75ed64f049d541b')
build() {
diff --git a/community/vym/vym.changelog b/community/vym/vym.changelog
index b61af921b..f3146af3a 100644
--- a/community/vym/vym.changelog
+++ b/community/vym/vym.changelog
@@ -1,3 +1,6 @@
+2012-01-08 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+ * vym 2.0.3-1
+
2011-10-09 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
* vym 1.99.0-1