summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/alure/PKGBUILD29
-rw-r--r--community/cdfs/PKGBUILD4
-rw-r--r--community/dsniff/PKGBUILD15
-rw-r--r--community/fb-client/PKGBUILD27
-rw-r--r--community/grass/PKGBUILD5
-rw-r--r--community/gtypist/PKGBUILD12
-rw-r--r--community/kadu/PKGBUILD8
-rw-r--r--community/ngrep/PKGBUILD30
-rw-r--r--community/open-vm-tools-modules/PKGBUILD26
-rw-r--r--community/open-vm-tools-modules/open-vm-tools-modules.install3
-rw-r--r--community/open-vm-tools/PKGBUILD25
-rw-r--r--community/php-memcache/PKGBUILD6
-rw-r--r--community/ruby-atk/PKGBUILD6
-rw-r--r--community/ruby-gdkpixbuf2/PKGBUILD6
-rw-r--r--community/ruby-gio2/PKGBUILD4
-rw-r--r--community/ruby-glib2/PKGBUILD6
-rw-r--r--community/ruby-gtk2/PKGBUILD16
-rw-r--r--community/ruby-pango/PKGBUILD15
-rw-r--r--community/springlobby/PKGBUILD6
-rw-r--r--community/tea/PKGBUILD15
-rw-r--r--community/tracker/PKGBUILD6
-rw-r--r--community/virtualbox/PKGBUILD13
-rw-r--r--community/virtualbox/virtualbox-guest-modules.install2
-rw-r--r--community/xapian-core/PKGBUILD19
-rw-r--r--community/xsel/PKGBUILD25
-rw-r--r--community/zziplib/PKGBUILD30
26 files changed, 207 insertions, 152 deletions
diff --git a/community/alure/PKGBUILD b/community/alure/PKGBUILD
new file mode 100644
index 000000000..daa057cef
--- /dev/null
+++ b/community/alure/PKGBUILD
@@ -0,0 +1,29 @@
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Markus Martin <markus@archwyrm.net>
+
+pkgname=alure
+pkgver=1.1
+pkgrel=2
+pkgdesc='Utility library to help manage common tasks with OpenAL applications.'
+arch=('i686' 'x86_64')
+url='http://kcat.strangesoft.net/alure.html'
+license=('LGPL')
+depends=('openal')
+makedepends=('cmake')
+optdepends=('sndfile: Uncompressed audio support'
+ 'vorbisfile: OGG Vorbis support'
+ 'flac: FLAC support')
+source=("http://kcat.strangesoft.net/alure-releases/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('a2f6934d3783c8478c460965a13e4e12')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ cmake . -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}
diff --git a/community/cdfs/PKGBUILD b/community/cdfs/PKGBUILD
index bf4dd2d8b..af18a5dbb 100644
--- a/community/cdfs/PKGBUILD
+++ b/community/cdfs/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 38934 2011-02-03 15:17:27Z spupykin $
+# $Id: PKGBUILD 42474 2011-03-16 21:46:25Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: J. Santiago Hirschfeld <jsantiagoh@yahoo.com.ar>
pkgname=cdfs
pkgver=2.6.27
-pkgrel=13
+pkgrel=14
pkgdesc="File system module that 'exports' all tracks and boot images on a CD as normal files."
arch=(i686 x86_64)
url="http://www.elis.UGent.be/~ronsse/cdfs/"
diff --git a/community/dsniff/PKGBUILD b/community/dsniff/PKGBUILD
index 648521f0c..a5a66f858 100644
--- a/community/dsniff/PKGBUILD
+++ b/community/dsniff/PKGBUILD
@@ -1,34 +1,35 @@
-# $Id: PKGBUILD 30651 2010-10-19 13:53:33Z spupykin $
+# $Id: PKGBUILD 44707 2011-04-11 12:21:58Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: ViNS <gladiator@fastwebnet.it>
pkgname=dsniff
pkgver=2.4b1
-pkgrel=18
+pkgrel=19
pkgdesc="Collection of tools for network auditing and penetration testing"
url="http://www.monkey.org/~dugsong/dsniff/"
arch=('i686' 'x86_64')
-license=('GPL')
+license=('BSD')
depends=('libpcap' 'openssl' 'db' 'libxmu' 'glib2' 'libnet' 'libnids')
source=(http://www.monkey.org/~dugsong/dsniff/beta/$pkgname-$pkgver.tar.gz \
http://ftp.de.debian.org/debian/pool/main/d/dsniff/dsniff_2.4b1+debian-18.diff.gz)
md5sums=('2f761fa3475682a7512b0b43568ee7d6'
- 'fbc9f62f9ab2f98f24f53ad497c1ce5d')
+ 'fbc9f62f9ab2f98f24f53ad497c1ce5d')
build() {
cd $srcdir/$pkgname-2.4
- patch -N < ../dsniff_2.4b1+debian-18.diff || return 1
+ patch -N < ../dsniff_2.4b1+debian-18.diff
for i in *.dpatch; do
patch -N < "$i"
done
[ $NOEXTRACT -eq 1 ] || LDFLAGS="-lresolv -lglib-2.0 -lgthread-2.0 $LDFLAGS" ./configure --prefix=/usr
- make || return 1
+ make
}
package() {
cd $srcdir/$pkgname-2.4
- make prefix=$pkgdir/usr install || return 1
+ make prefix=$pkgdir/usr install
+ install -D -m0644 LICENSE $pkgdir/usr/share/licenses/dsniff/LICENSE
mkdir -p $pkgdir/usr/share
mv $pkgdir/usr/man $pkgdir/usr/share/
diff --git a/community/fb-client/PKGBUILD b/community/fb-client/PKGBUILD
new file mode 100644
index 000000000..fc997509f
--- /dev/null
+++ b/community/fb-client/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer: Florian "Bluewind" Pritz <flo@xssn.at>
+pkgname=fb-client
+pkgver=0.7.1
+pkgrel=2
+pkgdesc="Client for paste.xinu.at"
+arch=('i686' 'x86_64')
+url="http://paste.xinu.at"
+license=('GPL3')
+depends=('curl')
+optdepends=('xclip: for automatically copying the URL into the clipboard')
+source=(http://paste.xinu.at/data/client/fb-$pkgver.tar.gz)
+
+build() {
+ cd "$srcdir/fb-$pkgver"
+
+ make
+}
+
+package() {
+ cd "$srcdir/fb-$pkgver"
+
+ make DESTDIR="$pkgdir" install
+ install -Dm644 COPYING "$pkgdir/usr/share/licenses/fb/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:
+md5sums=('a14be40bb23986c45a26b3cdb56d04f6')
diff --git a/community/grass/PKGBUILD b/community/grass/PKGBUILD
index 9edb6063d..d96b4e57f 100644
--- a/community/grass/PKGBUILD
+++ b/community/grass/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=grass
pkgver=6.4.1RC2
-pkgrel=1
+pkgrel=2
pkgdesc='Geographic Information System (GIS) used for geospatial data management and analysis, image processing, graphics/maps production, spatial modeling, and visualization.'
arch=('i686' 'x86_64')
url='http://grass.itc.it/index.php'
@@ -15,7 +15,8 @@ optdepends=('fftw: required for i.fft and i.ifft modules'
'r: R language interface'
'lapack: required for GMATH library'
'blas: required for GMATH library'
- 'xorg-server: required for the graphical interface')
+ 'xorg-server: required for the graphical interface'
+ 'wxpython: to enable the GUI')
options=('!libtool' '!makeflags')
install='grass.install'
source=("http://grass.itc.it/grass64/source/grass-${pkgver}.tar.gz"
diff --git a/community/gtypist/PKGBUILD b/community/gtypist/PKGBUILD
index a4da3bd68..3b4276fd9 100644
--- a/community/gtypist/PKGBUILD
+++ b/community/gtypist/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 20472 2010-07-08 11:19:12Z spupykin $
+# $Id: PKGBUILD 44710 2011-04-11 12:22:30Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Ben Mazer <blm@groknil.org>
# Contributor: Mike Douglas <code_monkey@gooeylinux.org>
pkgname=gtypist
-pkgver=2.8.3
-pkgrel=3
+pkgver=2.8.5
+pkgrel=1
pkgdesc="universal typing tutor"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/gtypist/gtypist.html"
@@ -13,12 +13,12 @@ license=("GPL")
depends=('ncurses>=5.2' 'perl')
install=gtypist.install
source=(ftp://ftp.gnu.org/gnu/gtypist/$pkgname-$pkgver.tar.gz)
-md5sums=('ea3c7faa01d7052c156d50fa0e0506b8')
+md5sums=('49ea1bb5ac51c74a9c75c0dd6d890463')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr
- make || return 1
- make prefix=$pkgdir/usr install || return 1
+ make
+ make prefix=$pkgdir/usr install
rm -f $pkgdir/usr/share/info/dir
}
diff --git a/community/kadu/PKGBUILD b/community/kadu/PKGBUILD
index 1d3a46aaa..0b52f0653 100644
--- a/community/kadu/PKGBUILD
+++ b/community/kadu/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 42953 2011-03-22 21:04:40Z mherych $
+# $Id: PKGBUILD 44782 2011-04-11 20:09:55Z mherych $
# Maintainer: Mateusz Herych
# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
pkgname=kadu
-pkgver=0.9.0
-pkgrel=2
+pkgver=0.9.1
+pkgrel=1
pkgdesc="A Qt-based Gadu-Gadu client"
arch=('i686' 'x86_64')
url="http://www.kadu.net/"
@@ -12,7 +12,7 @@ license=('GPL')
depends=('libgadu' 'libxss' 'aspell' 'phonon' 'qca-ossl' 'libidn')
makedepends=('cmake' 'libao' 'libsndfile' 'libxtst' 'curl')
source=(http://www.kadu.net/download/stable/$pkgname-$pkgver.tar.bz2)
-md5sums=('9bd6f39235acea4287664a0bff40b10a')
+md5sums=('99cb6e9d4acea6dbb15ff98dfe44dff9')
build() {
cd $srcdir/kadu-$pkgver
diff --git a/community/ngrep/PKGBUILD b/community/ngrep/PKGBUILD
index d7063e9d4..e6bc0d3d1 100644
--- a/community/ngrep/PKGBUILD
+++ b/community/ngrep/PKGBUILD
@@ -1,23 +1,29 @@
-# $Id: PKGBUILD 20363 2008-12-03 00:59:17Z eric $
-# Maintainer: Eric Belanger <eric@archlinux.org>
+# $Id: PKGBUILD 44742 2011-04-11 13:48:14Z lfleischer $
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Eric Belanger <eric@archlinux.org>
# Contributor: dorphell <dorphell@archlinux.org>
pkgname=ngrep
pkgver=1.45
-pkgrel=5
-pkgdesc="A grep-like utility that allows you to search for network packets on an interface"
+pkgrel=6
+pkgdesc='A grep-like utility that allows you to search for network packets on an interface.'
arch=('i686' 'x86_64')
-url="http://ngrep.sourceforge.net/"
+url='http://ngrep.sourceforge.net/'
license=('custom')
depends=('libpcap>=1.0.0')
-source=(http://downloads.sourceforge.net/sourceforge/ngrep/ngrep-${pkgver}.tar.bz2)
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
md5sums=('bc8150331601f3b869549c94866b4f1c')
-sha1sums=('f26090a6ac607db66df99c6fa9aef74968f3330f')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
- ./configure --prefix=/usr --with-pcap-includes=/usr/include/pcap
- make || return 1
- make DESTDIR=${pkgdir} install
- install -D -m644 LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./configure --prefix=/usr --with-pcap-includes=/usr/include/pcap --enable-ipv6
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+ install -Dm0644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
}
diff --git a/community/open-vm-tools-modules/PKGBUILD b/community/open-vm-tools-modules/PKGBUILD
index da5b81257..7c9125ade 100644
--- a/community/open-vm-tools-modules/PKGBUILD
+++ b/community/open-vm-tools-modules/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 39956 2011-02-18 23:30:08Z spupykin $
+# $Id: PKGBUILD 44312 2011-04-05 15:06:23Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Krzysztof Raczkowski <raczkow@gmail.com>
pkgname=open-vm-tools-modules
-pkgver=2011.01.24
-_pkgsubver=354108
+pkgver=2011.03.28
+_pkgsubver=387002
pkgrel=1
pkgdesc="The Open Virtual Machine Tools (open-vm-tools) are the open source implementation of VMware Tools."
arch=('i686' 'x86_64')
@@ -14,27 +14,25 @@ makedepends=('libdnet' 'icu' 'uriparser' 'kernel26-headers')
depends=("kernel26")
install=$pkgname.install
source=(http://easynews.dl.sourceforge.net/sourceforge/open-vm-tools/open-vm-tools-$pkgver-${_pkgsubver}.tar.gz)
-md5sums=('b324efa55bb3f1198100cad838e9272b')
+md5sums=('a9c72ab0b8f7778d444e69e9d3b95527')
build() {
-_kernver=`pacman -Q kernel26 | cut -d . -f 3 | cut -f 1 -d -`
-depends=("kernel26>=2.6.${_kernver}" "kernel26<2.6.`expr ${_kernver} + 1`")
-
- KERNEL_VERSION="2.6.${_kernver}-ARCH"
- msg "Kernel = $KERNEL_VERSION"
-
cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
-
sed -i 's#-lproc-3.2.7#-lproc-3.2.8#' configure
-
[ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr
-
(cd modules && make modules)
+}
+
+package() {
+ _kernver=`pacman -Q kernel26 | cut -d . -f 3 | cut -f 1 -d -`
+ depends=("kernel26>=2.6.${_kernver}" "kernel26<2.6.`expr ${_kernver} + 1`")
+ KERNEL_VERSION="2.6.${_kernver}-ARCH"
+ msg "Kernel = $KERNEL_VERSION"
+ cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
mkdir -p $pkgdir/lib/modules/$KERNEL_VERSION/misc/
for MOD in `find -type f -name '*.ko'`; do
install -D -m644 $MOD $pkgdir/lib/modules/$KERNEL_VERSION/misc/
done
-
sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='$KERNEL_VERSION'/" $startdir/$pkgname.install
}
diff --git a/community/open-vm-tools-modules/open-vm-tools-modules.install b/community/open-vm-tools-modules/open-vm-tools-modules.install
index 19c60c520..7f44b03ef 100644
--- a/community/open-vm-tools-modules/open-vm-tools-modules.install
+++ b/community/open-vm-tools-modules/open-vm-tools-modules.install
@@ -1,4 +1,4 @@
-KERNEL_VERSION='2.6.37-ARCH'
+KERNEL_VERSION='2.6.38-ARCH'
post_install() {
depmod -a -v $KERNEL_VERSION > /dev/null 2>&1
@@ -32,4 +32,3 @@ post_remove() {
echo ">>> Remember to un-blacklist pcnet32 driver in /etc/rc.conf."
echo ">>>"
}
-
diff --git a/community/open-vm-tools/PKGBUILD b/community/open-vm-tools/PKGBUILD
index d324026d1..4102311d9 100644
--- a/community/open-vm-tools/PKGBUILD
+++ b/community/open-vm-tools/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 39959 2011-02-18 23:30:44Z spupykin $
+# $Id: PKGBUILD 44320 2011-04-05 15:30:39Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Krzysztof Raczkowski <raczkow@gmail.com>
pkgname=open-vm-tools
-pkgver=2011.01.24
-_pkgsubver=354108
+pkgver=2011.03.28
+_pkgsubver=387002
pkgrel=1
pkgdesc="The Open Virtual Machine Tools (open-vm-tools) are the open source implementation of VMware Tools."
arch=('i686' 'x86_64')
@@ -24,7 +24,7 @@ source=(http://switch.dl.sourceforge.net/$pkgname/$pkgname-$pkgver-${_pkgsubver}
tools.conf
vmware-guestd
xautostart.conf)
-md5sums=('b324efa55bb3f1198100cad838e9272b'
+md5sums=('a9c72ab0b8f7778d444e69e9d3b95527'
'06f7448e274db2a911f582e276088fc9'
'b183ec265200d68431a5e4eb1b0c8cf5'
'8c333a979578bdc0c3134c1dd6bb7353'
@@ -36,16 +36,17 @@ md5sums=('b324efa55bb3f1198100cad838e9272b'
build() {
cd "$srcdir/$pkgname-${pkgver}-${_pkgsubver}"
-
-# [ $NOEXTRACT -eq 1 ] || patch -Np1 -i $srcdir/open-vm-tools-X11Bool.patch
-
- [ $NOEXTRACT -eq 1 ] || sed -i 's#3.2.7#3.2.8#' configure
- [ $NOEXTRACT -eq 1 ] || sed -i 's#3.2.7#3.2.8#' configure.ac
-
- unset LDFLAGS
-
+ [ $NOEXTRACT -eq 1 ] || {
+ sed -i 's#3.2.7#3.2.8#' configure configure.ac
+ sed -i 's#CFLAGS="$CFLAGS -Werror"##' configure configure.ac
+ }
[ -f Makefile ] || ./configure --prefix=/usr --without-kernel-modules
make
+}
+
+package() {
+ cd "$srcdir/$pkgname-${pkgver}-${_pkgsubver}"
+
make install DESTDIR=$pkgdir
install -D -m 755 scripts/common/vmware-xdg-detect-de $pkgdir/usr/bin/vmware-xdg-detect-de
chmod 07755 $pkgdir/usr/bin/vmware-user-suid-wrapper
diff --git a/community/php-memcache/PKGBUILD b/community/php-memcache/PKGBUILD
index f60e2edc5..050930166 100644
--- a/community/php-memcache/PKGBUILD
+++ b/community/php-memcache/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 28768 2010-10-05 18:31:24Z foutrelis $
+# $Id: PKGBUILD 44760 2011-04-11 15:50:58Z foutrelis $
# Maintainer: Evangelos Foutras <foutrelis@gmail.com>
pkgname=php-memcache
-pkgver=3.0.5
+pkgver=3.0.6
pkgrel=1
pkgdesc="Memcache module for PHP"
arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@ depends=('php')
backup=('etc/php/conf.d/memcache.ini')
install=php-memcache.install
source=(http://pecl.php.net/get/memcache-$pkgver.tgz)
-md5sums=('2c7429a2d6b861a9d4ed0b9ad3cf0231')
+md5sums=('23c2a1548f3fc7658b98b1c60e6d83b1')
build() {
cd "$srcdir/memcache-$pkgver"
diff --git a/community/ruby-atk/PKGBUILD b/community/ruby-atk/PKGBUILD
index 14e59001f..d39683e6a 100644
--- a/community/ruby-atk/PKGBUILD
+++ b/community/ruby-atk/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 39907 2011-02-18 21:05:47Z bfanella $
+# $Id: PKGBUILD 44814 2011-04-12 01:26:00Z bfanella $
# Maintainer: Brad Fanella <bradfanella@archlinux.us>
# Contributor: Bjorn Lindeijer <bjorn@lindeijer.nl>
# Contributor: kritoke <kritoke@nospam.gmail.com>
pkgname=ruby-atk
-pkgver=0.90.7
+pkgver=0.90.8
pkgrel=1
pkgdesc="Ruby bindings for atk."
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ license=('LGPL')
depends=('ruby-glib2')
makedepends=('ruby-glib2' 'atk' 'ruby-pkgconfig')
source=(http://downloads.sourceforge.net/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz)
-md5sums=('82ebea3ebb6fa51ffc5ec631b31d519a')
+md5sums=('74966bde5366bc9d09701e9f464d60c9')
build() {
cd "$srcdir/ruby-gtk2-$pkgver"
diff --git a/community/ruby-gdkpixbuf2/PKGBUILD b/community/ruby-gdkpixbuf2/PKGBUILD
index 5381edbe9..58cc56824 100644
--- a/community/ruby-gdkpixbuf2/PKGBUILD
+++ b/community/ruby-gdkpixbuf2/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 39912 2011-02-18 21:06:33Z bfanella $
+# $Id: PKGBUILD 44824 2011-04-12 01:33:28Z bfanella $
# Maintainer: Brad Fanella <bradfanella@archlinux.us>
# Contributor: Bjorn Lindeijer <bjorn@lindeijer.nl>
# Contributor: kritoke <kritoke@nospam.gmail.com>
pkgname=ruby-gdkpixbuf2
-pkgver=0.90.7
+pkgver=0.90.8
pkgrel=1
pkgdesc="Ruby bindings for gdkpixbuf2."
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ license=('LGPL')
depends=('ruby-glib2' 'gtk2')
makedepends=('ruby-glib2' 'ruby-pkgconfig')
source=(http://downloads.sourceforge.net/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz)
-md5sums=('82ebea3ebb6fa51ffc5ec631b31d519a')
+md5sums=('74966bde5366bc9d09701e9f464d60c9')
build() {
cd "$srcdir/ruby-gtk2-$pkgver"
diff --git a/community/ruby-gio2/PKGBUILD b/community/ruby-gio2/PKGBUILD
index fcd704b39..e4eb57305 100644
--- a/community/ruby-gio2/PKGBUILD
+++ b/community/ruby-gio2/PKGBUILD
@@ -2,7 +2,7 @@
# Maintainer: Brad Fanella <bradfanella@archlinux.us>
pkgname=ruby-gio2
-pkgver=0.90.7
+pkgver=0.90.8
pkgrel=1
pkgdesc="Ruby bindings for gio2."
arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@ license=('LGPL')
depends=('ruby-glib2')
makedepends=('ruby-pkgconfig')
source=(http://downloads.sourceforge.net/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz)
-md5sums=('82ebea3ebb6fa51ffc5ec631b31d519a')
+md5sums=('74966bde5366bc9d09701e9f464d60c9')
build() {
cd "$srcdir/ruby-gtk2-$pkgver"
diff --git a/community/ruby-glib2/PKGBUILD b/community/ruby-glib2/PKGBUILD
index bf9424418..8c885ead8 100644
--- a/community/ruby-glib2/PKGBUILD
+++ b/community/ruby-glib2/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 39922 2011-02-18 21:07:32Z bfanella $
+# $Id: PKGBUILD 44809 2011-04-12 00:27:03Z bfanella $
# Maintainer: Brad Fanella <bradfanella@archlinux.us>
# Contributor: Bjorn Lindeijer <bjorn@lindeijer.nl>
# Contributor: kritoke <kritoke@nospam.gmail.com>
pkgname=ruby-glib2
-pkgver=0.90.7
+pkgver=0.90.8
pkgrel=1
pkgdesc="Ruby bindings for glib2."
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ license=('LGPL')
depends=('ruby')
makedepends=('ruby-pkgconfig')
source=(http://downloads.sourceforge.net/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz)
-md5sums=('82ebea3ebb6fa51ffc5ec631b31d519a')
+md5sums=('74966bde5366bc9d09701e9f464d60c9')
build() {
cd "$srcdir/ruby-gtk2-$pkgver"
diff --git a/community/ruby-gtk2/PKGBUILD b/community/ruby-gtk2/PKGBUILD
index c46eff5b5..0d50843f3 100644
--- a/community/ruby-gtk2/PKGBUILD
+++ b/community/ruby-gtk2/PKGBUILD
@@ -1,28 +1,22 @@
-# $Id: PKGBUILD 40204 2011-02-21 19:23:54Z bfanella $
+# $Id: PKGBUILD 44834 2011-04-12 02:45:00Z bfanella $
# Maintainer: Brad Fanella <bradfanella@archlinux.us>
# Contributor: Bjorn Lindeijer <bjorn@lindeijer.nl>
# Contributor: kritoke <kritoke@nospam.gmail.com>
pkgname=ruby-gtk2
-pkgver=0.90.7
-pkgrel=2
+pkgver=0.90.8
+pkgrel=1
pkgdesc="Ruby bindings for gtk2."
arch=('i686' 'x86_64')
url="http://ruby-gnome2.sourceforge.jp"
license=('LGPL')
depends=('ruby-glib2' 'ruby-pango' 'ruby-atk' 'ruby-gdkpixbuf2')
makedepends=('ruby-pkgconfig' 'ruby-cairo')
-source=(http://downloads.sourceforge.net/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz
- 'mkmf-gnome2.patch')
-md5sums=('82ebea3ebb6fa51ffc5ec631b31d519a'
- '93dac3212aa8fccfc83b2cd518750cf7')
+source=(http://downloads.sourceforge.net/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz)
+md5sums=('74966bde5366bc9d09701e9f464d60c9')
build() {
cd "$srcdir/ruby-gtk2-$pkgver"
-
- # Apply ruby-cairo fixes
- patch -Np1 -i ../mkmf-gnome2.patch glib2/lib/mkmf-gnome2.rb
-
ruby extconf.rb gtk2 --topdir=$pkgdir
make
}
diff --git a/community/ruby-pango/PKGBUILD b/community/ruby-pango/PKGBUILD
index 68eab5ac8..fd5e51805 100644
--- a/community/ruby-pango/PKGBUILD
+++ b/community/ruby-pango/PKGBUILD
@@ -1,27 +1,22 @@
-# $Id: PKGBUILD 40199 2011-02-21 19:17:14Z bfanella $
+# $Id: PKGBUILD 44819 2011-04-12 01:30:34Z bfanella $
# Maintainer: Brad Fanella <bradfanella@archlinux.us>
# Contributor: Bjorn Lindeijer <bjorn@lindeijer.nl>
# Contributor: kritoke <kritoke@nospam.gmail.com>
pkgname=ruby-pango
-pkgver=0.90.7
-pkgrel=2
+pkgver=0.90.8
+pkgrel=1
pkgdesc="Ruby bindings for pango."
arch=('i686' 'x86_64')
url="http://ruby-gnome2.sourceforge.jp"
license=('LGPL')
depends=('ruby-glib2' 'ruby-cairo')
makedepends=('ruby-glib2' 'pango' 'ruby-pkgconfig' 'ruby-cairo')
-source=(http://downloads.sourceforge.net/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz
- 'mkmf-gnome2.patch')
-md5sums=('82ebea3ebb6fa51ffc5ec631b31d519a'
- '93dac3212aa8fccfc83b2cd518750cf7')
+source=(http://downloads.sourceforge.net/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz)
+md5sums=('74966bde5366bc9d09701e9f464d60c9')
build() {
cd "$srcdir/ruby-gtk2-$pkgver"
- # Apply ruby-cairo fixes
- patch -Np1 -i ../mkmf-gnome2.patch glib2/lib/mkmf-gnome2.rb
-
ruby extconf.rb pango --topdir=$pkgdir
make
}
diff --git a/community/springlobby/PKGBUILD b/community/springlobby/PKGBUILD
index 455587739..47b2f0cc8 100644
--- a/community/springlobby/PKGBUILD
+++ b/community/springlobby/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 42784 2011-03-20 21:37:46Z svenstaro $
+# $Id: PKGBUILD 44777 2011-04-11 19:41:39Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: DuGi <dugi@irc.pl>
pkgname=springlobby
-pkgver=0.127
+pkgver=0.128
pkgrel=1
pkgdesc="A free cross-platform lobby client for the Spring RTS project."
arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@ makedepends=('boost' 'asio' 'cmake')
source=(http://www.springlobby.info/tarballs/${pkgname}-${pkgver}.tar.bz2
springlobby.desktop
springlobby.png)
-md5sums=('4d470bebc7fef1b1a4e4189dd0bc4a89'
+md5sums=('14a67b499366f500645d6174f7753674'
'45f8b59d033931d02e734fe3bd7777dd'
'1f388187539aeb0358b51995e26ed890')
diff --git a/community/tea/PKGBUILD b/community/tea/PKGBUILD
index 6d0054ea0..050285831 100644
--- a/community/tea/PKGBUILD
+++ b/community/tea/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 44438 2011-04-07 13:23:53Z spupykin $
+# $Id: PKGBUILD 44713 2011-04-11 12:23:03Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Roman Kyrylych <roman@archlinux.org>
@@ -6,7 +6,7 @@
# Contributor: Zsolt Varadi <sysop_xxl@fibermail.hu>
pkgname=tea
-pkgver=29.0.1
+pkgver=29.0.2
pkgrel=1
pkgdesc="A QT-based text editor for Linux and *BSD. With an ultimate small size TEA provides you hundreds of functions."
arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@ depends=('qt' 'aspell' 'hunspell')
install=tea.install
source=(http://downloads.sourceforge.net/tea-editor/$pkgname-$pkgver.tar.bz2
tea.desktop)
-md5sums=('079e5beb796a5df9da15c59df94ade77'
+md5sums=('7b93a54df1a699cb02b188d918ecc9e8'
'377ace3363124f4c086de0babb820761')
build() {
@@ -26,12 +26,9 @@ build() {
make
make INSTALL_ROOT=${pkgdir} install
- install -Dm755 ${pkgdir}/usr/local/bin/tea \
- ${pkgdir}/usr/bin/tea
+ install -Dm755 ${pkgdir}/usr/local/bin/tea ${pkgdir}/usr/bin/tea
rm -rf ${pkgdir}/usr/local
- install -Dm644 ${srcdir}/tea.desktop \
- ${pkgdir}/usr/share/applications/tea.desktop
- install -Dm644 icons/tea_icon_v2.png \
- ${pkgdir}/usr/share/pixmaps/tea.png
+ install -Dm644 ${srcdir}/tea.desktop ${pkgdir}/usr/share/applications/tea.desktop
+ install -Dm644 icons/tea_icon_v2.png ${pkgdir}/usr/share/pixmaps/tea.png
}
diff --git a/community/tracker/PKGBUILD b/community/tracker/PKGBUILD
index 92c7ac0e3..d34590a66 100644
--- a/community/tracker/PKGBUILD
+++ b/community/tracker/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 43588 2011-03-27 20:42:19Z spupykin $
+# $Id: PKGBUILD 44716 2011-04-11 12:23:36Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Alexander Fehr <pizzapunk gmail com>
pkgname=tracker
-pkgver=0.10.5
+pkgver=0.10.8
pkgrel=1
pkgdesc="Powerful object database, tag/metadata database, search tool and indexer"
arch=('i686' 'x86_64')
@@ -25,7 +25,7 @@ conflicts=('libtracker')
provides=("libtracker")
install=tracker.install
source=(http://ftp.gnome.org/pub/GNOME/sources/tracker/0.10/tracker-$pkgver.tar.bz2)
-md5sums=('6c2040ba96a34932a073317071b3da91')
+md5sums=('58407c7ee04df4043cadd9095d64da5d')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/virtualbox/PKGBUILD b/community/virtualbox/PKGBUILD
index 82dcee682..6191165c1 100644
--- a/community/virtualbox/PKGBUILD
+++ b/community/virtualbox/PKGBUILD
@@ -1,20 +1,20 @@
-# $Id: PKGBUILD 41913 2011-03-11 00:29:44Z ibiru $
+# $Id: PKGBUILD 42565 2011-03-17 13:26:20Z ibiru $
#Maintainer: Ionut Biru <ibiru@archlinux.org>
pkgbase=virtualbox
pkgname=('virtualbox' 'virtualbox-guest-additions' 'virtualbox-guest-modules' 'virtualbox-sdk')
pkgver=4.0.4
-pkgrel=2
+pkgrel=3
arch=('i686' 'x86_64')
url='http://virtualbox.org'
license=('GPL' 'custom')
makedepends=('libstdc++5' 'bin86' 'dev86' 'iasl' 'libxslt' 'libxml2' 'libxcursor' 'qt' 'libidl2' 'sdl_ttf' 'alsa-lib' 'libpulse' 'libxtst'
-'xalan-c' 'sdl' 'libxmu' 'curl' 'python2' 'kernel26-headers>=2.6.37' 'mesa' 'libxrandr' 'libxinerama' 'libvncserver' 'jdk' 'gsoap' 'vde2')
+'xalan-c' 'sdl' 'libxmu' 'curl' 'python2' 'kernel26-headers>=2.6.38' 'mesa' 'libxrandr' 'libxinerama' 'libvncserver' 'jdk' 'gsoap' 'vde2')
[[ $CARCH == "x86_64" ]] && makedepends=("${makedepends[@]}" 'gcc-multilib' 'lib32-glibc')
source=(http://download.virtualbox.org/virtualbox/${pkgver}/VirtualBox-${pkgver}.tar.bz2
http://download.virtualbox.org/virtualbox/${pkgver}/UserManual.pdf
virtualbox-4-makeself-check.patch virtualbox-4-mkisofs-check.patch
10-vboxdrv.rules 60-vboxguest.rules vboxdrv-reference.patch LocalConfig.kmk vboxdrv.sh)
-_kernver=2.6.37-ARCH
+_kernver=2.6.38-ARCH
build() {
cd "$srcdir/VirtualBox-${pkgver}_OSE"
@@ -43,7 +43,6 @@ package_virtualbox() {
depends=('libxml2' 'libxcursor' 'libidl2' 'libxinerama' 'sdl' 'libxmu' 'curl' 'libvncserver' 'libpng' 'kernel26-headers' 'gcc' 'make')
optdepends=('libxt: for shared clipboard'
'python2: for python support'
- 'java-runtime: java bindings'
'qt: for VirtualBox GUI'
'vde2: Virtual Distributed Ethernet support'
'virtualbox-sdk: developer kit')
@@ -140,7 +139,7 @@ package_virtualbox-sdk() {
}
package_virtualbox-guest-additions(){
pkgdesc="VirtualBox user-space tools for Linux guests"
- depends=("virtualbox-guest-modules=$pkgver" 'gcc-libs' 'libxmu')
+ depends=("virtualbox-guest-modules=$pkgver" 'gcc-libs' 'libxmu' 'xorg-xrandr')
replaces=('virtualbox-ose-additions')
conflicts=('virtualbox-ose-additions')
@@ -175,7 +174,7 @@ package_virtualbox-guest-modules(){
pkgdesc="VirtualBox kernel modules for Linux guests"
license=('GPL')
install=virtualbox-guest-modules.install
- depends=('kernel26>=2.6.37' 'kernel26<2.6.38')
+ depends=('kernel26>=2.6.38' 'kernel26<2.6.39')
replaces=('virtualbox-ose-additions-modules')
conflicts=('virtualbox-ose-additions-modules')
diff --git a/community/virtualbox/virtualbox-guest-modules.install b/community/virtualbox/virtualbox-guest-modules.install
index 51389ca87..3681c28e3 100644
--- a/community/virtualbox/virtualbox-guest-modules.install
+++ b/community/virtualbox/virtualbox-guest-modules.install
@@ -1,4 +1,4 @@
-KERNEL_VERSION='2.6.37-ARCH'
+KERNEL_VERSION='2.6.38-ARCH'
post_install() {
cat << EOM
diff --git a/community/xapian-core/PKGBUILD b/community/xapian-core/PKGBUILD
index 5b589388f..223dc8f8c 100644
--- a/community/xapian-core/PKGBUILD
+++ b/community/xapian-core/PKGBUILD
@@ -1,10 +1,11 @@
+# $Id: PKGBUILD 44794 2011-04-11 20:41:06Z ebelanger $
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Alexander Fehr <pizzapunk gmail com>
# Contributor: William Rea <sillywilly@gmail.com>
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=xapian-core
-pkgver=1.2.4
+pkgver=1.2.5
pkgrel=1
pkgdesc='Open source search engine library.'
arch=('i686' 'x86_64')
@@ -12,21 +13,17 @@ url='http://www.xapian.org/'
license=('GPL')
depends=('sh' 'gcc-libs' 'zlib')
# xapian config requires libxapian.la
-#options=('!libtool')
+options=('libtool')
source=("http://oligarchy.co.uk/xapian/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-md5sums=('9715684900547649e0cbec42e6a157e9')
+md5sums=('775995b7036b01b8b864a95d5646f42d')
build() {
- cd ${pkgname}-${pkgver}
-
- ./configure \
- --prefix=/usr
-
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
make
}
package() {
- cd ${pkgname}-${pkgver}
-
- make DESTDIR=${pkgdir} install
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
}
diff --git a/community/xsel/PKGBUILD b/community/xsel/PKGBUILD
index 5a71a94a2..5961b7fb0 100644
--- a/community/xsel/PKGBUILD
+++ b/community/xsel/PKGBUILD
@@ -1,21 +1,32 @@
-# $Id: PKGBUILD 17449 2010-05-24 10:42:48Z spupykin $
+# $Id: PKGBUILD 44722 2011-04-11 12:24:43Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=xsel
pkgver=1.2.0
-pkgrel=2
+pkgrel=3
pkgdesc="XSel is a command-line program for getting and setting the contents of the X selection"
arch=(i686 x86_64)
url="http://www.vergenet.net/~conrad/software/xsel/"
-license=("GPL")
-depends=(libxext libsm)
+license=("custom")
+depends=(libx11)
source=(http://www.vergenet.net/~conrad/software/xsel/download/$pkgname-$pkgver.tar.gz)
md5sums=('75983f143ce83dc259796c6eaf85c8f5')
build() {
- cd $startdir/src/$pkgname-$pkgver
+ cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr
- make || return 1
- make DESTDIR=$startdir/pkg install
+ make
+ make DESTDIR=$pkgdir install
+ mkdir -p $pkgdir/usr/share/licenses/xsel/
+ cat >$pkgdir/usr/share/licenses/xsel/LICENSE <<EOF
+Copyright (C) 2001 Conrad Parker <conrad@vergenet.net>
+
+Permission to use, copy, modify, distribute, and sell this software and its
+documentation for any purpose is hereby granted without fee, provided that
+the above copyright notice appear in all copies and that both that copyright
+notice and this permission notice appear in supporting documentation. No
+representations are made about the suitability of this software for any purpose.
+It is provided "as is" without express or implied warranty.
+EOF
}
diff --git a/community/zziplib/PKGBUILD b/community/zziplib/PKGBUILD
index b54fb1dfd..6a00ad342 100644
--- a/community/zziplib/PKGBUILD
+++ b/community/zziplib/PKGBUILD
@@ -1,35 +1,35 @@
-# $Id: PKGBUILD 38805 2011-02-01 07:57:10Z andrea $
+# $Id: PKGBUILD 44844 2011-04-12 03:54:14Z ebelanger $
# Maintainer:
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com>
pkgname=zziplib
-pkgver=0.13.58
-pkgrel=2
+pkgver=0.13.60
+pkgrel=1
pkgdesc="A lightweight library that offers the ability to easily extract data from files archived in a single zip file"
arch=('i686' 'x86_64')
url="http://zziplib.sourceforge.net"
license=('LGPL' 'MPL')
depends=('zlib')
makedepends=('python2')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('a0f743a5a42ca245b2003ecaea958487')
options=('!libtool')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('54a6aa53262483a4d54f7c59f0a7258b')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
+ cd "${srcdir}/${pkgname}-${pkgver}"
- export PYTHON=/usr/bin/python2
- ./configure --prefix=/usr
- make
+ export PYTHON=/usr/bin/python2
+ ./configure --prefix=/usr
+ make
}
package() {
- cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
- #fix permission
- chmod -s ${pkgdir}/usr/share/man/man3
- chmod 644 ${pkgdir}/usr/share/man/man3/*
- chown -R root:root ${pkgdir}/usr/share/man/man3
+#fix permission
+ chmod -s "${pkgdir}/usr/share/man/man3"
+ chmod 644 "${pkgdir}"/usr/share/man/man3/*
+ chown -R root:root "${pkgdir}/usr/share/man/man3"
}