diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-09-26 13:21:55 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-09-26 13:21:55 -0300 |
commit | 60e119a0f3297314f4bcd2b2b821eccd28992cd6 (patch) | |
tree | 83078f34ba0e5220164fe3f3b5cdff27ce87aaf9 /community | |
parent | 8aa6cf7dacd74c155e7b2dd7af68a5cb4460e5b3 (diff) | |
parent | 21efc9511d14394cc1d8426e2e0a6c668964fbe9 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community-testing/lightspark/PKGBUILD
community/camlp5/PKGBUILD
community/gnote/PKGBUILD
community/gtk-gnutella/PKGBUILD
extra/ffmpeg/PKGBUILD
extra/koffice/PKGBUILD
extra/pyopenssl/PKGBUILD
extra/virtuoso/PKGBUILD
gnome-unstable/empathy/PKGBUILD
gnome-unstable/epiphany/PKGBUILD
gnome-unstable/folks/PKGBUILD
gnome-unstable/gdm/PKGBUILD
gnome-unstable/gjs/PKGBUILD
gnome-unstable/gnome-games/PKGBUILD
gnome-unstable/gnome-session/PKGBUILD
gnome-unstable/gnome-shell/PKGBUILD
gnome-unstable/gobject-introspection/PKGBUILD
gnome-unstable/gthumb/PKGBUILD
gnome-unstable/libgnomekbd/PKGBUILD
gnome-unstable/libpeas/PKGBUILD
gnome-unstable/mutter/PKGBUILD
gnome-unstable/totem/PKGBUILD
multilib/lib32-libffi/PKGBUILD
multilib/wine/PKGBUILD
testing/xorg-server/PKGBUILD
Diffstat (limited to 'community')
47 files changed, 514 insertions, 163 deletions
diff --git a/community/bacula/PKGBUILD b/community/bacula/PKGBUILD new file mode 100644 index 000000000..b48447f75 --- /dev/null +++ b/community/bacula/PKGBUILD @@ -0,0 +1,68 @@ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: Xavion <Xavion (dot) 0 (at) Gmail (dot) com> +# Contributor: Calogero Lo Leggio <kalos@autistici.org> +# Contributor: Matias Hernandez <msdark@archlinux.cl> + +pkgname=bacula +pkgver=5.0.3 +pkgrel=5 +pkgdesc="An advanced backup tool with network and tape changer support (MySQL backend)" +arch=("i686" "x86_64") +url="http://www.${pkgname}.org" +license=("GPL") +depends=("libmysqlclient") +makedepends=("qt" "wxgtk" "gtk2") +optdepends=("qt: for bat" + "wxgtk: for bwx console" + "gtk2: for tray monitor") +options=(!buildflags) +conflicts=("${pkgname}-sqlite" "${pkgname}-postgresql" "${pkgname}-client") +backup=("etc/${pkgname}/bconsole.conf" + "etc/${pkgname}/${pkgname}-dir.conf" + "etc/${pkgname}/${pkgname}-fd.conf" + "etc/${pkgname}/${pkgname}-sd.conf") +install="${pkgname}.install" +source=(http://downloads.sourceforge.net/project/bacula/bacula/${pkgver}/${pkgname}-${pkgver}.tar.gz + ${pkgname}-sd.rc.d + ${pkgname}-fd.rc.d + ${pkgname}-dir.rc.d) +md5sums=('9de254ae39cab0587fdb2f5d8d90b03b' + 'e7be4c9fb3c7ce334f9ee24d71652d3e' + 'a9a070a862e9cf39ae4bc374409c721d' + '55619ae3094c698541a3bfedc87bdb48') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + # Build + ./configure --prefix=/usr \ + --enable-build-dird --enable-build-stored --enable-smartalloc \ + --enable-bat --enable-tray-monitor --enable-bwx-console \ + --with-mysql --without-openssl \ + --with-dir-user=${pkgname} --with-dir-group=${pkgname} \ + --with-sd-user=${pkgname} --with-sd-group=${pkgname} \ + --sysconfdir=/etc/${pkgname} --with-scriptdir=/etc/${pkgname}/scripts \ + --with-working-dir=/var/cache/${pkgname}/working \ + --with-subsys-dir=/var/cache/${pkgname}/working \ + --with-archivedir=/var/cache/${pkgname}/archive + + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install + + # Permissions + chmod a+x ${pkgdir}/etc/${pkgname}/scripts/{update_${pkgname}_tables,delete_catalog_backup,update_mysql_tables,make_catalog_backup,bconsole} + + # Daemons + mkdir -p ${pkgdir}/etc/rc.d/ + install -Dm755 ${srcdir}/*.rc.d ${pkgdir}/etc/rc.d/ + + # Logs + install -D -m644 ${srcdir}/${pkgname}-${pkgver}/scripts/logrotate ${pkgdir}/etc/logrotate.d/${pkgname} + sed -i "s|/var/cache/${pkgname}/working/log|/var/log/${pkgname}.log|g" ${pkgdir}/etc/{${pkgname}/${pkgname}-dir.conf,logrotate.d/${pkgname}} +} + diff --git a/community/bacula/bacula-dir.rc.d b/community/bacula/bacula-dir.rc.d new file mode 100644 index 000000000..a5a103dca --- /dev/null +++ b/community/bacula/bacula-dir.rc.d @@ -0,0 +1,41 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions + +case "$1" in + start) + + [ -d /var/run/bacula ] || mkdir -p /var/run/bacula + chown bacula:bacula /var/run/bacula + + stat_busy "Starting Bacula Director Daemon" + /usr/sbin/bacula-dir + if [ $? -gt 0 ]; then + stat_fail + else + add_daemon bacula-dir + stat_done + fi + ;; + stop) + stat_busy "Stopping Bacula Director Daemon" + killall bacula-dir > /dev/null + if [ $? -gt 0 ]; then + stat_fail + else + rm_daemon bacula-dir + stat_done + fi + ;; + restart) + $0 stop + sleep 1 + $0 start + ;; + *) + echo "usage: $0 {start|stop|restart}" +esac +exit 0 +~ +~ diff --git a/community/bacula/bacula-fd.rc.d b/community/bacula/bacula-fd.rc.d new file mode 100644 index 000000000..3817a0fed --- /dev/null +++ b/community/bacula/bacula-fd.rc.d @@ -0,0 +1,41 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions + +case "$1" in + start) + + [ -d /var/run/bacula ] || mkdir -p /var/run/bacula + chown bacula:bacula /var/run/bacula + + stat_busy "Starting Bacula File Daemon" + /usr/sbin/bacula-fd + if [ $? -gt 0 ]; then + stat_fail + else + add_daemon bacula-fd + stat_done + fi + ;; + stop) + stat_busy "Stopping Bacula File Daemon" + killall bacula-fd > /dev/null + if [ $? -gt 0 ]; then + stat_fail + else + rm_daemon bacula-fd + stat_done + fi + ;; + restart) + $0 stop + sleep 1 + $0 start + ;; + *) + echo "usage: $0 {start|stop|restart}" +esac +exit 0 +~ +~ diff --git a/community/bacula/bacula-sd.rc.d b/community/bacula/bacula-sd.rc.d new file mode 100644 index 000000000..96f200916 --- /dev/null +++ b/community/bacula/bacula-sd.rc.d @@ -0,0 +1,41 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions + +case "$1" in + start) + + [ -d /var/run/bacula ] || mkdir -p /var/run/bacula + chown bacula:bacula /var/run/bacula + + stat_busy "Starting Bacula Storage Daemon" + /usr/sbin/bacula-sd + if [ $? -gt 0 ]; then + stat_fail + else + add_daemon bacula-sd + stat_done + fi + ;; + stop) + stat_busy "Stopping Bacula Storage Daemon" + killall bacula-sd > /dev/null + if [ $? -gt 0 ]; then + stat_fail + else + rm_daemon bacula-sd + stat_done + fi + ;; + restart) + $0 stop + sleep 1 + $0 start + ;; + *) + echo "usage: $0 {start|stop|restart}" +esac +exit 0 +~ +~ diff --git a/community/bacula/bacula.install b/community/bacula/bacula.install new file mode 100644 index 000000000..9b8a3669a --- /dev/null +++ b/community/bacula/bacula.install @@ -0,0 +1,49 @@ +post_install() { + if [ -z "`grep '^bacula::' /etc/group`" ]; then + echo "Adding bacula system group... " + groupadd -g 73 bacula >& /dev/null + fi + + if [ -z "`grep '^bacula::' /etc/passwd`" ]; then + echo "Adding bacula system user... " + useradd -u 73 -c "Bacula Daemon" -d / -g bacula -s /bin/false bacula + fi + + echo "Locking Bacula User Account..." + passwd -l bacula &>/dev/null + + post_upgrade +} + +post_upgrade() { + +cat << EOM + +Note: +==> Please don't forget to config your MySQL database for the program. +==> +==> 1. If you have not init your MySQL DB yet, run mysql_install_db. +==> 2. Run /etc/bacula/scripts/grant_mysql_privileges. This script creates database user +==> 'bacula' with unrestricted rights to the bacula's database. The +==> script create user is without any password. You may want to edit +==> the script before run it. +==> 3. Run /etc/bacula/scripts/create_mysql_database to create the Database +==> Bacula. +==> 4. Run /etc/bacula/scripts/make_mysql_tables to create tables used by bacula. + +==> The archive directory is: /var/cache/bacula + +==> Bacula's offical website : http://www.bacula.org + +EOM +} + +post_remove() { + echo "Removing Bacula's system users..." + userdel bacula &> /dev/null + groupdel bacula &> /dev/null +} + +op=$1 +shift +[ "$(type -t "$op")" = "function" ] && $op "$@" diff --git a/community/calibre/PKGBUILD b/community/calibre/PKGBUILD index 70b8796d6..1a7defe84 100644 --- a/community/calibre/PKGBUILD +++ b/community/calibre/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 55681 2011-09-17 19:15:18Z giovanni $ +# $Id: PKGBUILD 55873 2011-09-24 07:43:10Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Petrov Roman <nwhisper@gmail.com> # Contributor: Andrea Fagiani <andfagiani _at_ gmail dot com> pkgname=calibre -pkgver=0.8.19 +pkgver=0.8.20 pkgrel=1 pkgdesc="Ebook management application" arch=('i686' 'x86_64' 'mips64el') @@ -20,7 +20,7 @@ optdepends=('ipython: to use calibre-debug') install=calibre.install source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz" 'desktop_integration.patch') -md5sums=('156c1fb275b774ce971f4ef820b9885d' +md5sums=('1b14bd08233302e3475d9dca0e0941e7' '253ce4fe5d01f8ff76b63cd3825755ea') build() { diff --git a/community/camlp5/PKGBUILD b/community/camlp5/PKGBUILD index ebf6bfc98..6582c4754 100644 --- a/community/camlp5/PKGBUILD +++ b/community/camlp5/PKGBUILD @@ -4,21 +4,36 @@ # Contributor: Massimiliano Brocchini <brocchini@netseven.it> pkgname=('camlp5' 'camlp5-transitional') -pkgver=6.02.3 -pkgrel=2 +_baseversion=6.02.3 +_patchlevel=1 +pkgver=${_baseversion}.${_patchlevel} +pkgrel=1 arch=('i686' 'x86_64' 'mips64el') url='http://pauillac.inria.fr/~ddr/camlp5/' license=('BSD') depends=('sh') makedepends=('ocaml') options=('!makeflags') -source=("http://pauillac.inria.fr/~ddr/camlp5/distrib/src/camlp5-${pkgver}.tgz") -md5sums=('a4f5e0dc13c43d50eb655c8e929f556e') +source=("http://pauillac.inria.fr/~ddr/camlp5/distrib/src/camlp5-${_baseversion}.tgz") +# upstream likes to release occasional patches instead of releasing new versions +for i in $(seq ${_patchlevel}); do + source+=("http://pauillac.inria.fr/~ddr/camlp5/distrib/src/patch-${_baseversion}-${i}") +done +md5sums=('a4f5e0dc13c43d50eb655c8e929f556e' + 'bd5afff0952b407bc63a7b1928e5d6d6') build() { - cp -r camlp5-${pkgver} camlp5-transitional-${pkgver} + cd camlp5-${_baseversion} - cd ${srcdir}/camlp5-${pkgver} + for i in $(seq ${_patchlevel}); do + patch -Np0 -i ${srcdir}/patch-${_baseversion}-${i} + done + + cd ${srcdir} + + cp -r camlp5-${_baseversion} camlp5-transitional-${_baseversion} + + cd ${srcdir}/camlp5-${_baseversion} ./configure \ -prefix '/usr' \ @@ -27,7 +42,7 @@ build() { make world.opt - cd ${srcdir}/camlp5-transitional-${pkgver} + cd ${srcdir}/camlp5-transitional-${_baseversion} ./configure \ -prefix '/usr' \ @@ -41,7 +56,7 @@ package_camlp5() { pkgdesc='A preprocessor-pretty-printer of OCaml.' conflicts=('camlp5-transitional') - cd camlp5-${pkgver} + cd camlp5-${_baseversion} make DESTDIR=${pkgdir} install @@ -53,7 +68,7 @@ package_camlp5-transitional() { pkgdesc='A preprocessor-pretty-printer of OCaml. (transitional)' conflicts=('camlp5') - cd camlp5-transitional-${pkgver} + cd camlp5-transitional-${_baseversion} make DESTDIR=${pkgdir} install diff --git a/community/cegui/PKGBUILD b/community/cegui/PKGBUILD index 336bf7cdd..9bd00f25a 100644 --- a/community/cegui/PKGBUILD +++ b/community/cegui/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 48542 2011-06-01 17:05:37Z stephane $ +# $Id: PKGBUILD 55877 2011-09-24 16:48:18Z stephane $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Juergen Hoetzel <juergen@archlinux.org> # Contributor: William Rea <sillywilly@gmail.com>, @@ -6,7 +6,7 @@ pkgname=cegui pkgver=0.7.5 -pkgrel=4 +pkgrel=5 pkgdesc="A free library providing windowing and widgets for graphics APIs/engines" arch=('i686' 'x86_64' 'mips64el') url="http://crayzedsgui.sourceforge.net" diff --git a/community/clementine/PKGBUILD b/community/clementine/PKGBUILD index c1f015aa3..32f7ebcb0 100644 --- a/community/clementine/PKGBUILD +++ b/community/clementine/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 49329 2011-06-14 11:51:15Z stephane $ +# $Id: PKGBUILD 55879 2011-09-24 16:48:26Z stephane $ #Maintainer: Stéphane Gaudreault <stephane@archlinux.org> #Contributor: BlackEagle < ike DOT devolder AT gmail DOT com > #Contributor: Dany Martineau <dany.luc.martineau@gmail.com> pkgname=clementine pkgver=0.7.1 -pkgrel=6 +pkgrel=7 pkgdesc="A music player and library organizer" url="http://www.clementine-player.org/" license=('GPL') diff --git a/community/clementine/clementine.install b/community/clementine/clementine.install index 2d71a7563..2f0338d8a 100644 --- a/community/clementine/clementine.install +++ b/community/clementine/clementine.install @@ -1,5 +1,6 @@ post_install() { gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + update-desktop-database -q } post_upgrade() { diff --git a/community/conkeror-git/PKGBUILD b/community/conkeror-git/PKGBUILD index 1eaf9f4ce..d44bd1188 100644 --- a/community/conkeror-git/PKGBUILD +++ b/community/conkeror-git/PKGBUILD @@ -1,10 +1,10 @@ # Contributor: Heeru Kiyura <M8R-p9i5nh@mailinator.com> # Maintainer: Stefan Husmann <stefan-husmann@t-online.de> -_commit=0b48f8c21f90f26e78f06c15e144d85683981b85 +_commit=c53588e0e42330f65e8c3be41900900da17a7eda pkgname=conkeror-git pkgver=1.0pre -pkgrel=1 +pkgrel=2 pkgdesc="A highly programmable web browser based on Mozilla XULRunner." arch=('i686' 'x86_64' 'mips64el') url="http://conkeror.mozdev.org/" diff --git a/community/cython/PKGBUILD b/community/cython/PKGBUILD index d7d5563a1..24093969c 100644 --- a/community/cython/PKGBUILD +++ b/community/cython/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 53594 2011-08-06 09:09:34Z spupykin $ +# $Id: PKGBUILD 55808 2011-09-21 20:41:16Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Igor Scabini <furester @ gmail.com> pkgname=cython -pkgver=0.15 +pkgver=0.15.1 pkgrel=1 pkgdesc="C-Extensions for Python " arch=(i686 x86_64 'mips64el') @@ -11,7 +11,7 @@ url="http://www.cython.org" license=('APACHE') depends=('python2') source=("http://cython.org/release/Cython-$pkgver.tar.gz") -md5sums=('794b93c4c1c4cc031f90302cacd834ca') +md5sums=('171021b3845c9ca8bd6d8185b3cde664') build() { cd $srcdir/Cython-$pkgver diff --git a/community/deadbeef/PKGBUILD b/community/deadbeef/PKGBUILD index be91a3d52..6886b088e 100644 --- a/community/deadbeef/PKGBUILD +++ b/community/deadbeef/PKGBUILD @@ -1,31 +1,35 @@ -# $Id: PKGBUILD 48027 2011-05-27 16:02:04Z lfleischer $ +# $Id: PKGBUILD 55804 2011-09-21 11:27:26Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Alexey Yakovenko <waker@users.sourceforge.net> pkgname=deadbeef pkgver=0.5.1 -pkgrel=1 +pkgrel=2 pkgdesc='An audio player for GNU/Linux based on GTK2.' arch=('i686' 'x86_64' 'mips64el') url='http://deadbeef.sourceforge.net' license=('GPL2') -depends=('gtk2' 'libsamplerate' 'alsa-lib' 'hicolor-icon-theme' 'desktop-file-utils') -makedepends=('libvorbis' 'libmad' 'flac' 'curl' 'wavpack' 'libsndfile' 'libcdio' 'libcddb' 'ffmpeg' - 'libx11' 'faad2' 'zlib' 'intltool' 'pkgconfig' 'libpulse' 'libzip') -optdepends=('libvorbis: for Ogg Vorbis playback' +depends=('gtk2' 'alsa-lib' 'hicolor-icon-theme' 'desktop-file-utils') +makedepends=('libvorbis' 'libmad' 'flac' 'curl' 'imlib2' 'wavpack' 'libsndfile' 'libcdio' 'libcddb' + 'ffmpeg' 'libx11' 'faad2' 'zlib' 'intltool' 'pkgconfig' 'libpulse' 'libzip' + 'libsamplerate') +optdepends=('libsamplerate: for Resampler plugin' + 'libvorbis: for Ogg Vorbis playback' 'libmad: for MP1/MP2/MP3 playback' 'flac: for FLAC playback' 'curl: for Last.fm scrobbler, SHOUTcast, Icecast, Podcast support' + 'imlib2: for artwork plugin' 'wavpack: for WavPack playback' 'libsndfile: for Wave playback' 'libcdio: audio cd plugin' 'libcddb: audio cd plugin' 'ffmpeg: for WMA, AA, OMA, AC, etc.' - 'libmms: for MMS protocol support' 'faad2: for AAC/MP4 support' 'dbus: for OSD notifications support' 'pulseaudio: for PulseAudio output plugin' - 'libx11: for global hotkeys plugin') + 'libx11: for global hotkeys plugin' + 'zlib: for Audio Overload plugin' + 'libzip: for vfs_zip plugin') options=('!libtool') install='deadbeef.install' source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver}.tar.bz2") diff --git a/community/duplicity/PKGBUILD b/community/duplicity/PKGBUILD index 75c28d059..4cc7fc406 100644 --- a/community/duplicity/PKGBUILD +++ b/community/duplicity/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 43020 2011-03-23 21:31:21Z kchen $ +# $Id: PKGBUILD 55816 2011-09-22 11:26:50Z lfleischer $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Contributor: Aaron Schaefer <aaron@elasticdog.com> pkgname=duplicity -pkgver=0.6.12 +pkgver=0.6.15 pkgrel=1 pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync algorithm' arch=('i686' 'x86_64' 'mips64el') @@ -11,7 +11,7 @@ url='http://www.nongnu.org/duplicity/' license=('GPL') depends=('librsync' 'ncftp' 'python2' 'python-boto' 'python-gnupginterface') source=("http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('9b84c984054550bbb2ba29b553567b7b') +md5sums=('88f3c990f41fde86cd7d5af5a1bc7b81') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/community/freewrl/PKGBUILD b/community/freewrl/PKGBUILD index 840c9b62e..da9e1278d 100644 --- a/community/freewrl/PKGBUILD +++ b/community/freewrl/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 51056 2011-07-04 16:35:05Z spupykin $ +# $Id: PKGBUILD 55881 2011-09-24 16:48:32Z stephane $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=freewrl pkgver=1.22.10 -pkgrel=6 +pkgrel=7 pkgdesc="VRML viewer" arch=('i686' 'x86_64' 'mips64el') url="http://freewrl.sourceforge.net/" diff --git a/community/gambas3/PKGBUILD b/community/gambas3/PKGBUILD index 4253059e5..ab0bb8702 100644 --- a/community/gambas3/PKGBUILD +++ b/community/gambas3/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 55150 2011-09-04 08:52:45Z lcarlier $ +# $Id: PKGBUILD 55911 2011-09-24 19:25:08Z lcarlier $ # Maintainer: Laurent Carlier <lordheavym@gmail.com> pkgbase=gambas3 @@ -12,7 +12,7 @@ pkgname=('gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 'gambas3-script' 'gamba 'gambas3-gb-pdf' 'gambas3-gb-qt4' 'gambas3-gb-qt4-ext' 'gambas3-gb-qt4-opengl' 'gambas3-gb-qt4-webkit' 'gambas3-gb-report' 'gambas3-gb-sdl' 'gambas3-gb-sdl-sound' 'gambas3-gb-settings' 'gambas3-gb-signal' 'gambas3-gb-v4l' 'gambas3-gb-vb' 'gambas3-gb-xml' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 'gambas3-gb-web') -pkgver=2.99.3 +pkgver=2.99.4 pkgrel=1 pkgdesc="A free development environment based on a Basic interpreter." arch=('i686' 'x86_64' 'mips64el') @@ -20,14 +20,14 @@ url="http://gambas.sourceforge.net/" license=('GPL') groups=('gambas3') makedepends=('intltool' 'mysql' 'postgresql' 'libffi' 'bzip2' 'glib2' 'v4l-utils' - 'zlib' 'mesa' 'libgl' 'glew' 'xdg-utils' 'qt' 'gtk2' 'imlib2' 'gdk-pixbuf2' + 'zlib' 'mesa' 'libgl' 'glew>=1.7.0' 'xdg-utils' 'qt' 'gtk2' 'imlib2' 'gdk-pixbuf2' 'postgresql-libs' 'libmysqlclient' 'unixodbc' 'sqlite2' 'sqlite3' 'librsvg' 'curl' 'poppler-glib' 'sdl_mixer' 'sdl_ttf' 'libxtst' 'pcre' 'libxcursor' 'libsm' 'dbus-core' 'libxml2' 'libxslt' 'libgnome-keyring') options=('!emptydirs' '!makeflags') source=("http://downloads.sourceforge.net/gambas/${pkgbase}-${pkgver}.tar.bz2" 'gambas3-script.install' 'gambas3-runtime.install') -md5sums=('e576fa9e72863dab0196250cb35f2a9b' +md5sums=('4f918a701a862c7755b35d6eba988dad' 'b284be39d147ec799f1116a6abc068b4' 'b5cc403990f31b8ea1c5cf37366d3d29') diff --git a/community/gnote/PKGBUILD b/community/gnote/PKGBUILD index 6bf0b4acf..600afe34b 100644 --- a/community/gnote/PKGBUILD +++ b/community/gnote/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 53049 2011-07-30 13:32:24Z ibiru $ +# $Id: PKGBUILD 55914 2011-09-24 20:06:05Z ibiru $ # Maintainer: Ionut Biru <ibiru@archlinux.org> # Contributor: uastasi <uastasi@archlinux.us> pkgname=gnote -pkgver=0.7.5 +pkgver=0.8.0 pkgrel=1 -pkgdesc="Experimental port of Tomboy to C++ " +pkgdesc="A note taking application." arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/Gnote" -license=('GPL') -depends=('gtkmm' 'gconf' 'gtkspell' 'libxslt') +license=('GPL3') +depends=('gtkmm3' 'libxslt' 'hicolor-icon-theme' 'desktop-file-utils' 'dconf') makedepends=('intltool' 'gnome-doc-utils' 'boost') options=('!libtool') install=gnote.install -source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz) -sha256sums=('ccb8a4922f167d9727fbc69f559b722004fb6bad3af329dad1fe5e2a3d3d18b8') +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.8/${pkgname}-${pkgver}.tar.xz) +sha256sums=('f009852b264fb8754575524ef2937147c4d2c25eff97ecca507624ca8730c213') build() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -22,7 +22,7 @@ build() { --localstatedir=/var \ --libexecdir=/usr/lib/gnote \ --disable-scrollkeeper \ - --disable-schemas-install \ + --disable-schemas-compile \ --disable-static make } @@ -30,7 +30,4 @@ build() { package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install - install -m755 -d "${pkgdir}/usr/share/gconf/schemas" - gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gnote ${pkgdir}/etc/gconf/schemas/*.schemas - rm -rf ${pkgdir}/etc/ } diff --git a/community/gnote/gnote.install b/community/gnote/gnote.install index 780fae868..0f8eb1012 100644 --- a/community/gnote/gnote.install +++ b/community/gnote/gnote.install @@ -1,22 +1,21 @@ pkgname=gnote post_install() { - usr/sbin/gconfpkg --install ${pkgname} - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + glib-compile-schemas usr/share/glib-2.0/schemas + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + update-desktop-database -q } pre_upgrade() { - pre_remove $1 + if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then + usr/sbin/gconfpkg --uninstall ${pkgname} + fi } post_upgrade() { - post_install -} - -pre_remove() { - usr/sbin/gconfpkg --uninstall ${pkgname} + post_install } post_remove() { - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + post_install } diff --git a/community/gnunet-gtk/PKGBUILD b/community/gnunet-gtk/PKGBUILD index 1e9063374..2c72a660c 100644 --- a/community/gnunet-gtk/PKGBUILD +++ b/community/gnunet-gtk/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 43132 2011-03-24 08:17:21Z spupykin $ +# $Id: PKGBUILD 55842 2011-09-23 16:15:44Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: wahnby <wahnby@yahoo.fr> pkgname=gnunet-gtk -pkgver=0.9.0pre2 +pkgver=0.9.0pre3 pkgrel=1 pkgdesc="A frontend for GNUnet" arch=('i686' 'x86_64' 'mips64el') @@ -13,11 +13,15 @@ license=('GPL') depends=('gnunet' 'libnotify' 'libglade' 'adns') makedepends=('pkgconfig' 'glade') source=(ftp://ftp.gnu.org/gnu/gnunet/$pkgname-$pkgver.tar.gz) -md5sums=('2aab6fcf5a40cfdef481a7e17b150c0b') +md5sums=('42f90a00aee541cef576ead682d7fb44') build() { cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr --with-gnunet=/usr --disable-libgksu2 make +} + +package() { + cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir install } diff --git a/community/gnunet/PKGBUILD b/community/gnunet/PKGBUILD index 1de036745..736657c44 100644 --- a/community/gnunet/PKGBUILD +++ b/community/gnunet/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 43135 2011-03-24 08:18:05Z spupykin $ +# $Id: PKGBUILD 55840 2011-09-23 16:14:42Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: wahnby <wahnby@yahoo.fr> pkgname=gnunet -pkgver=0.9.0pre2 +pkgver=0.9.0pre3 pkgrel=1 pkgdesc="A framework for secure peer-to-peer networking" arch=('i686' 'x86_64' 'mips64el') @@ -16,19 +16,19 @@ backup=(etc/gnunetd.conf) options=('!libtool' '!makeflags') source=(ftp://ftp.gnu.org/gnu/gnunet/gnunet-$pkgver.tar.gz gnunet.rc - gnunet.conf.d - build-fix.patch) -md5sums=('a4d0fad4f6fc6b520b3b73ee54167270' + gnunet.conf.d) +md5sums=('34665809d6913a54547b19dcd260a951' '0d62ab7f2a28af3ac082015696ee6ef3' - 'f161b46915736e4017e77ad735521453' - 'c646e634754e29004bb569873a270bf1') + 'f161b46915736e4017e77ad735521453') build() { cd $srcdir/gnunet-$pkgver - unset LDFLAGS - patch -p1 <$srcdir/build-fix.patch [ -f Makefile ] || ./configure --prefix=/usr --without-mysql make +} + +package() { + cd $srcdir/gnunet-$pkgver make DESTDIR=$pkgdir install install -D -m0755 $srcdir/gnunet.rc $pkgdir/etc/rc.d/gnunetd install -D -m0644 $srcdir/gnunet.conf.d $pkgdir/etc/conf.d/gnunetd diff --git a/community/gource/PKGBUILD b/community/gource/PKGBUILD index e60cbd141..fe5dea471 100644 --- a/community/gource/PKGBUILD +++ b/community/gource/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 52209 2011-07-21 16:34:07Z svenstaro $ +# $Id: PKGBUILD 55887 2011-09-24 16:48:53Z stephane $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Jose Valecillos <valecillosjg (at) gmail (dot) com> # Contributor: Olivier Ramonat <olivier at ramonat dot fr> pkgname=gource pkgver=0.35 -pkgrel=1 +pkgrel=2 pkgdesc="software version control visualization" license=(GPL3) arch=(i686 x86_64 'mips64el') diff --git a/community/gtk-gnutella/PKGBUILD b/community/gtk-gnutella/PKGBUILD index 68736c13a..4af3a9970 100644 --- a/community/gtk-gnutella/PKGBUILD +++ b/community/gtk-gnutella/PKGBUILD @@ -1,22 +1,23 @@ -# $Id: PKGBUILD 54455 2011-08-18 15:06:51Z bluewind $ +# $Id: PKGBUILD 55800 2011-09-21 05:45:26Z ebelanger $ # Contributor: Dan McGee <dan@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> # Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=gtk-gnutella -pkgver=0.97 -pkgrel=2 -pkgdesc="A Gnutella client written in C" +pkgver=0.97.1 +pkgrel=1 +pkgdesc="A Gnutella server/client" arch=('i686' 'x86_64' 'mips64el') url="http://gtk-gnutella.sourceforge.net/" license=('GPL') depends=('gtk2') source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2) -md5sums=('d44e1af3441fb07a5e5712b0d522fae5') -sha1sums=('1b50790adc494d7023a7cf9319d7cdef1c9ab51e') +md5sums=('7ded76ca9892b58b0e9314ee563e4bae') +sha1sums=('14a4b5fd8c35cbed443e9997e55e44aafba05906') build() { cd "${srcdir}/${pkgname}-${pkgver}" + sed -i '/gnutls_transport_set_lowat(ctx->session, 0);/d' src/core/tls_common.c ./build.sh --prefix=/usr --gtk2 --disable-dbus } diff --git a/community/hatari/PKGBUILD b/community/hatari/PKGBUILD index 22f9de6b3..564c9888f 100644 --- a/community/hatari/PKGBUILD +++ b/community/hatari/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 27018 2010-09-16 17:37:18Z schuay $ +# $Id: PKGBUILD 55846 2011-09-23 18:34:08Z lcarlier $ # Maintainer: Shinlun Hsieh <yngwiexx@yahoo.com.tw> pkgname=hatari -pkgver=1.4.0 -pkgrel=2 +pkgver=1.5.0 +pkgrel=1 pkgdesc='An Atari ST and STE emulator' arch=('i686' 'x86_64' 'mips64el') url='http://hatari.sourceforge.net/' @@ -11,7 +11,7 @@ license=('GPL') depends=('sdl' 'libpng') makedepends=('cmake') source=("http://download.berlios.de/hatari/${pkgname}-${pkgver}.tar.bz2") -md5sums=('2f30e5c9e146ee92e3f2f5ae1cef3673') +md5sums=('16277cff73ec3a342b87b7b7ea3932f4') build() { cd ${pkgname}-${pkgver} diff --git a/community/iasl/PKGBUILD b/community/iasl/PKGBUILD index a15ee47aa..81ddf0964 100644 --- a/community/iasl/PKGBUILD +++ b/community/iasl/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 44052 2011-04-01 20:24:21Z lcarlier $ +# $Id: PKGBUILD 55855 2011-09-23 21:20:50Z lcarlier $ # Maintainer : Laurent Carlier <lordheavym@gmail.com> # Contributor: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Alessio 'mOlOk' Bolognino <themolok@gmail.com> pkgname=iasl -pkgver=20110316 +pkgver=20110623 pkgrel=1 pkgdesc="Intel ACPI Source Language compiler" arch=('i686' 'x86_64' 'mips64el') @@ -16,12 +16,15 @@ options=('!makeflags') install=iasl.install source=(http://acpica.org/download/acpica-unix-${pkgver}.tar.gz LICENSE) -md5sums=('785813b0e4ad38383fb7bfb15e7a2e6e' +md5sums=('93e827bf4b1f1971a1b3c2074c5f9ccb' '8615526144f69ea4e870d9bc37df9b29') build() { cd "${srcdir}/acpica-unix-${pkgver}" + # fix building with gcc-4.6 + sed -i -e 's/-Werror//g' compiler/Makefile tools/acpisrc/Makefile + cd compiler make diff --git a/community/john/PKGBUILD b/community/john/PKGBUILD index 44de6d951..5ba335310 100644 --- a/community/john/PKGBUILD +++ b/community/john/PKGBUILD @@ -6,8 +6,8 @@ pkgname=john pkgver=1.7.8 -pkgrel=3 -_jumbover=5 +pkgrel=4 +_jumbover=7 pkgdesc="John The Ripper - A fast password cracker (jumbo-$_jumbover included)" arch=('i686' 'x86_64' 'mips64el') url="http://www.openwall.com/$pkgname/" @@ -19,7 +19,7 @@ source=(http://www.openwall.com/$pkgname/g/$pkgname-$pkgver.tar.bz2 ftp://ftp.kfki.hu/pub/packages/security/ssh/ossh/libdes-4.04b.tar.gz params.h.patch) md5sums=('e6d7f261829610d6949c706ebac0517c' - '4dc38d4539fa019301c98a7a4094d6af' + '6513d201dfc2e87033a4068143de3ef0' 'c8d5c69f86c2eedb485583b0305284a1' 'f69ed632eba8fb9e45847a4b4a323787') diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD index c67671680..8e1348240 100644 --- a/community/libvirt/PKGBUILD +++ b/community/libvirt/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 55789 2011-09-20 16:59:20Z spupykin $ +# $Id: PKGBUILD 55818 2011-09-22 13:29:51Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Jonathan Wiersma <archaur at jonw dot org> pkgname=libvirt -pkgver=0.9.5 +pkgver=0.9.6 pkgrel=1 pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)" arch=('i686' 'x86_64' 'mips64el') @@ -35,7 +35,7 @@ source=("http://libvirt.org/sources/$pkgname-$pkgver.tar.gz" openbsd-netcat-default.patch unixperms.patch yajl-2.x.patch) -md5sums=('2b4aae1ff231bd31057ff40ab6eb4696' +md5sums=('b74df374b524d00a22a6c89cfc23099f' 'c43244c40a0437038c82089618e7beaa' '3ed0e24f5b5e25bf553f5427d64915e6' '6f36bf189ef0e5847038787d13535420' diff --git a/community/lightspark/PKGBUILD b/community/lightspark/PKGBUILD index e7bd4e2ad..b886299a0 100644 --- a/community/lightspark/PKGBUILD +++ b/community/lightspark/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com> pkgname=lightspark -pkgver=0.5.0 -pkgrel=1 +pkgver=0.5.1 +pkgrel=2 pkgdesc='An alternative Flash Player for Linux.' arch=('i686' 'x86_64' 'mips64el') url='http://lightspark.sourceforge.net' @@ -13,8 +13,8 @@ depends=('mesa' 'ftgl' 'sdl' 'gtk2' 'curl' 'zlib' 'ffmpeg' 'glew' 'pcre' 'libpul makedepends=('cmake' 'nasm' 'xulrunner' 'llvm' 'glproto' 'boost' 'fontconfig') optdepends=('gnash-gtk: fallback support') install="lightspark.install" -source=("http://launchpad.net/lightspark/trunk/lightspark-${pkgver:0:5}/+download/lightspark-${pkgver}.tar.gz") -md5sums=('7d42c8e92c3c3b318076393a7e9508fb') +source=("http://launchpad.net/lightspark/trunk/lightspark-${pkgver}/+download/lightspark-${pkgver}.tgz") +md5sums=('aa0daa22646c2a663ec5045074451d45') build() { rm -rf build @@ -26,7 +26,7 @@ build() { -DCOMPILE_PLUGIN=1 \ -DCMAKE_BUILD_TYPE=Release \ -DGNASH_EXE_PATH=/usr/bin/gtk-gnash \ - ../lightspark-${pkgver} + .. make } diff --git a/community/luxrays/PKGBUILD b/community/luxrays/PKGBUILD index b45a50ee4..cb10cf454 100644 --- a/community/luxrays/PKGBUILD +++ b/community/luxrays/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 54517 2011-08-19 16:16:33Z stativ $ +# $Id: PKGBUILD 55891 2011-09-24 16:49:03Z stephane $ # Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com> pkgname=luxrays pkgver=0.8 _pkgver=ed424ec77571 -pkgrel=3 +pkgrel=5 epoch=0 pkgdesc="Accelerate the ray intersection process by using GPUs" arch=('i686' 'x86_64' 'mips64el') diff --git a/community/mtpfs/PKGBUILD b/community/mtpfs/PKGBUILD new file mode 100644 index 000000000..96766ddf9 --- /dev/null +++ b/community/mtpfs/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 55836 2011-09-23 12:06:39Z lcarlier $ +# Maintainer: Laurent Carlier <lordheavym@gmail.com> +# Contributor: yugrotavele <yugrotavele at archlinux dot us> +# Contributor: Anton Pirogov <anton.pirogov <AT> googlemail.com> + +pkgname=mtpfs +pkgver=1.0 +pkgrel=1 +pkgdesc="A FUSE filesystem that supports reading and writing from any MTP device" +arch=('i686' 'x86_64') +url="http://www.adebenham.com/mtpfs/" +license=('GPL3') +depends=('libmtp' 'glib2' 'libid3tag' 'fuse' 'libmad') +makedepends=('pkg-config' 'namcap') +source=(http://www.adebenham.com/debian/${pkgname}-${pkgver}.tar.gz) +md5sums=('7d62fdfdb59d87d115e2f804d0dc7f85') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install +} diff --git a/community/openssh-askpass/PKGBUILD b/community/openssh-askpass/PKGBUILD index 148bc03ca..66a24c3df 100644 --- a/community/openssh-askpass/PKGBUILD +++ b/community/openssh-askpass/PKGBUILD @@ -3,8 +3,8 @@ # Contributor: Massimiliano Torromeo <Massimiliano.Torromeo AT gmail DOT com> pkgname=openssh-askpass -pkgver=1.3.1 -pkgrel=2 +pkgver=1.3.2 +pkgrel=1 pkgdesc='A plasma-like passphrase dialog for ssh' arch=('i686' 'x86_64' 'mips64el') url='http://www.phenix.bnl.gov/WWW/publish/hpereira/software/index.php?page=package&package_list=software_list_qt4&package=openssh-askpass&full=1' @@ -14,7 +14,7 @@ provides=('x11-ssh-askpass') conflicts=('x11-ssh-askpass') source=("http://www.phenix.bnl.gov/WWW/publish/hpereira/software/tgz/$pkgname-$pkgver.tar.gz" "$pkgname.sh") -md5sums=('39178e7ef71a1846c0a464cef08ba38e' +md5sums=('89ca29f3b21c7ca87829269866dd623b' '961738244318f3723ba99cdcaac91a21') build() { diff --git a/community/openttd/PKGBUILD b/community/openttd/PKGBUILD index 10d4fee18..0d384a226 100644 --- a/community/openttd/PKGBUILD +++ b/community/openttd/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 48779 2011-06-05 15:15:50Z vegai $ +# $Id: PKGBUILD 55851 2011-09-23 18:46:03Z lcarlier $ # Maintainer: Vesa Kaihlavirta <vegai@iki.fi> pkgname=openttd -pkgver=1.1.1 +pkgver=1.1.3 pkgrel=1 pkgdesc='An engine for running Transport Tycoon Deluxe.' arch=('i686' 'x86_64' 'mips64el') @@ -13,6 +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=('a0a730a8e40133fe789f34f2bc9601a9') build() { cd ${pkgname}-${pkgver} @@ -35,5 +36,3 @@ package() { make install } - -md5sums=('825f6274bd46a1d56f4e95ef25a325ca') diff --git a/community/performous/PKGBUILD b/community/performous/PKGBUILD index ee1122d1a..721cd0098 100644 --- a/community/performous/PKGBUILD +++ b/community/performous/PKGBUILD @@ -1,15 +1,15 @@ -# $Id: PKGBUILD 55515 2011-09-13 21:33:10Z ebelanger $ +# $Id: PKGBUILD 55893 2011-09-24 16:49:07Z stephane $ # Maintainer : Laurent Carlier <lordheavym@gmail.com> # Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org> pkgname=performous pkgver=0.6.1 -pkgrel=8 +pkgrel=9 pkgdesc='A free game like "Singstar", "Rockband" or "Stepmania"' arch=('i686' 'x86_64' 'mips64el') url="http://performous.org/" license=('GPL') -depends=('boost-libs>=1.47' 'sdl' 'jack' 'imagemagick' 'ffmpeg' 'glew' 'libxml++' 'portaudio' 'portmidi' \ +depends=('boost-libs>=1.47' 'sdl' 'jack' 'imagemagick' 'ffmpeg' 'glew>=1.7.0' 'libxml++' 'portaudio' 'portmidi' \ 'opencv' 'librsvg' 'libjpeg' 'libpng' 'cairo') makedepends=('cmake' 'pkgconfig' 'help2man' 'boost>=1.47') optdepends=('performous-freesongs: free songs for performous') diff --git a/community/pgadmin3/PKGBUILD b/community/pgadmin3/PKGBUILD index bb4441b0a..c05aceb50 100644 --- a/community/pgadmin3/PKGBUILD +++ b/community/pgadmin3/PKGBUILD @@ -1,41 +1,34 @@ -# $Id: PKGBUILD 46331 2011-05-05 10:45:23Z spupykin $ +# $Id: PKGBUILD 55823 2011-09-22 21:47:07Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org> # Contributor: Benjamin Andresen <benny@klapmuetz.org> # Contributor: bekks <eduard.warkentin@gmx.de> pkgname=pgadmin3 -pkgver=1.12.3 -_realver=1.12.3 +pkgver=1.14.0 pkgrel=1 pkgdesc="A comprehensive design and management interface for PostgreSQL database" arch=('i686' 'x86_64' 'mips64el') url="http://www.pgadmin.org" license=('custom') -depends=('wxgtk' 'postgresql-libs>=8.4.1' 'libxslt') -makedepends=('libpqxx' 'krb5') -source=(ftp://ftp.de.postgresql.org/pub/packages/databases/PostgreSQL/pgadmin3/release/v${_realver}/src/pgadmin3-${_realver}.tar.gz +depends=('wxgtk' 'postgresql-libs' 'libxslt') +makedepends=('libpqxx' 'krb5' 'postgresql') +source=(ftp://ftp.de.postgresql.org/pub/packages/databases/PostgreSQL/pgadmin3/release/v${pkgver}/src/pgadmin3-${pkgver}.tar.gz pgadmin3.desktop) -md5sums=('0ff7a970a14757ee951a4e8b1a246a70' +md5sums=('27bf1694809a7d9adf4feec508374df2' 'd07ba4df54baead30b66d19d7450bcad') build() { - cd $srcdir/pgadmin3-${_realver} - unset LDFLAGS - [ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr + cd $srcdir/pgadmin3-${pkgver} + [ -f Makefile ] || ./configure --prefix=/usr make } package() { - cd $srcdir/pgadmin3-${_realver} + cd $srcdir/pgadmin3-${pkgver} make DESTDIR=$pkgdir/ install - - install -D -m 644 i18n/$pkgname.lng $pkgdir/usr/share/pgadmin3/i18n - install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE - - mkdir -p $pkgdir/usr/share/pgadmin3/pixmaps/ - mkdir -p $pkgdir/usr/share/applications/ - - install -D -m 644 pgadmin/include/images/pgAdmin3.ico $pkgdir/usr/share/pgadmin3/pixmaps/pgAdmin3.ico - install -D -m 644 $srcdir/pgadmin3.desktop $pkgdir/usr/share/applications/ + install -Dm644 i18n/$pkgname.lng $pkgdir/usr/share/pgadmin3/i18n + install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE + install -Dm644 pgadmin/include/images/pgAdmin3.ico $pkgdir/usr/share/pgadmin3/pixmaps/pgAdmin3.ico + install -Dm644 $srcdir/pgadmin3.desktop $pkgdir/usr/share/applications/pgadmin3.desktop } diff --git a/community/root/PKGBUILD b/community/root/PKGBUILD index a6ed080c9..9779a5141 100644 --- a/community/root/PKGBUILD +++ b/community/root/PKGBUILD @@ -3,7 +3,7 @@ pkgname=root pkgver=5.30.01 -pkgrel=1 +pkgrel=2 pkgdesc='C++ data analysis framework and interpreter from CERN.' arch=('i686' 'x86_64' 'mips64el') url='http://root.cern.ch' diff --git a/community/rss-glx/PKGBUILD b/community/rss-glx/PKGBUILD index d452c5880..f1e4c060c 100644 --- a/community/rss-glx/PKGBUILD +++ b/community/rss-glx/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 55517 2011-09-13 21:33:18Z ebelanger $ +# $Id: PKGBUILD 55897 2011-09-24 16:49:31Z stephane $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Corrado 'bardo' Primier <corrado.primier@mail.polimi.it> # Contributor: Tate "Tatey" Johnson <tatey86@tpg.com.au> pkgname=rss-glx pkgver=0.9.1 -pkgrel=7 +pkgrel=8 pkgdesc="The Really Slick Screensavers port to GLX" arch=('i686' 'x86_64' 'mips64el') url="http://rss-glx.sourceforge.net/" diff --git a/community/sfml/PKGBUILD b/community/sfml/PKGBUILD index 8867a38b6..29a22b46e 100644 --- a/community/sfml/PKGBUILD +++ b/community/sfml/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 54051 2011-08-12 21:19:26Z svenstaro $ +# $Id: PKGBUILD 55899 2011-09-24 16:49:39Z stephane $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Ondrej Martinak <omartinak@gmail.com> @@ -7,7 +7,7 @@ pkgname=sfml _git=true if [[ "${_git}" = "true" ]]; then - pkgver=1.99.git20110812 + pkgver=1.99.git20110917 fi pkgrel=1 diff --git a/community/shotwell/PKGBUILD b/community/shotwell/PKGBUILD index 33df62a70..6af2855cb 100644 --- a/community/shotwell/PKGBUILD +++ b/community/shotwell/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 55302 2011-09-09 14:03:59Z spupykin $ +# $Id: PKGBUILD 55810 2011-09-21 20:42:30Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Joeny Ang <ang(dot)joeny(at)gmail(dot)com> pkgname=shotwell -pkgver=0.11.1 -pkgrel=2 +pkgver=0.11.2 +pkgrel=1 pkgdesc="A digital photo organizer designed for the GNOME desktop environment" arch=('i686' 'x86_64' 'mips64el') url="http://yorba.org/shotwell/" @@ -15,7 +15,7 @@ depends=('gconf' 'libgee' 'libgphoto2' 'libunique' 'libwebkit' 'libgexiv2' 'libr makedepends=('intltool' 'vala') install=shotwell.install source=("http://yorba.org/download/shotwell/0.11/shotwell-${pkgver}.tar.bz2") -md5sums=('e2c388bfce992b5437281c4fc29357d9') +md5sums=('bbb479eaa4bbcf67d8ff454b406ed249') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/community/spring/PKGBUILD b/community/spring/PKGBUILD index f4c1b9bd5..940681ffd 100644 --- a/community/spring/PKGBUILD +++ b/community/spring/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 52636 2011-07-26 15:57:38Z svenstaro $ +# $Id: PKGBUILD 55901 2011-09-24 16:49:52Z stephane $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Arkham <arkham at archlinux dot us> # Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org> pkgname=spring pkgver=0.82.7.1 -pkgrel=6 +pkgrel=7 pkgdesc='A free 3D real-time-strategy (RTS) game engine' arch=('i686' 'x86_64' 'mips64el') url="http://springrts.com/" diff --git a/community/stunnel/PKGBUILD b/community/stunnel/PKGBUILD index 6429387c5..02fa70f7d 100644 --- a/community/stunnel/PKGBUILD +++ b/community/stunnel/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 55577 2011-09-14 10:56:19Z lfleischer $ +# $Id: PKGBUILD 55918 2011-09-24 21:57:57Z dreisner $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> # Contributor: Kevin Piche <kevin@archlinux.org> pkgname=stunnel -pkgver=4.43 +pkgver=4.44 pkgrel=1 pkgdesc="A program that allows you to encrypt arbitrary TCP connections inside SSL" arch=('i686' 'x86_64' 'mips64el') @@ -16,8 +16,8 @@ options=('!libtool') source=("ftp://ftp.stunnel.org/stunnel/$pkgname-$pkgver.tar.gz"{,.asc} 'Makefile.patch' 'stunnel.rc.d') -md5sums=('84174925a0f2632cc5cd52b3503cf07b' - 'bc1280f59a117f01bb037d9376f9baf6' +md5sums=('c9dd51fc02b913ce5bf7b3fc12f9cb4a' + 'e86fc2578e5304ae5a7b586ce170f843' 'f15398497e10e080c2406d2fc541660c' 'cb647c71ff4cb1e035b6e515d5f13ebf') diff --git a/community/subtitleeditor/PKGBUILD b/community/subtitleeditor/PKGBUILD index 8ca4582bf..e0d167b0d 100644 --- a/community/subtitleeditor/PKGBUILD +++ b/community/subtitleeditor/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 38397 2011-01-26 20:18:42Z jelle $ +# $Id: PKGBUILD 55853 2011-09-23 20:07:37Z lcarlier $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> pkgname=subtitleeditor -pkgver=0.38.0 +pkgver=0.39.0 pkgrel=1 pkgdesc="A GTK+2 tool to edit subtitles for GNU/Linux/*BSD" arch=('i686' 'x86_64' 'mips64el') @@ -16,13 +16,22 @@ optdepends=('gstreamer0.10-ffmpeg: to be able to view movies inside the subtitle options=('!libtool') install=$pkgname.install changelog=$pkgname.changelog -source=(http://download.gna.org/$pkgname/0.38/$pkgname-$pkgver.tar.gz) -md5sums=('2c4d7d4bd79f45effcea279a2e06ca66') +source=(http://download.gna.org/$pkgname/0.39/$pkgname-$pkgver.tar.gz + fix-taking-address-of-temporary-error.patch) +md5sums=('17666e652edd27abfd3104a82385f6a8' + '13e4fde005a9017da9fd24a5c2b928ed') build() { cd ${srcdir}/$pkgname-$pkgver + # fix building with gcc-4.6.0, taken from upstream + patch -Np1 -i "../fix-taking-address-of-temporary-error.patch" + ./configure --prefix=/usr - make + make +} +package() { + cd ${srcdir}/$pkgname-$pkgver + make DESTDIR=${pkgdir} install } diff --git a/community/subtitleeditor/fix-taking-address-of-temporary-error.patch b/community/subtitleeditor/fix-taking-address-of-temporary-error.patch new file mode 100644 index 000000000..a35746d62 --- /dev/null +++ b/community/subtitleeditor/fix-taking-address-of-temporary-error.patch @@ -0,0 +1,56 @@ +--- trunk/plugins/subtitleformats/sami/sami.cc 2011/06/18 08:06:45 772 ++++ trunk/plugins/subtitleformats/sami/sami.cc 2011/07/02 13:01:33 777 +@@ -155,7 +155,7 @@ + int state = 0; + Glib::ustring line; + Glib::ustring text; +- Subtitle* curSt; ++ Subtitle curSt; + char tmptext[MAXBUF+1] = ""; + char *p = NULL, *q = NULL; + if (!file.getline(line)) +@@ -174,8 +174,8 @@ + start_sync = utility::string_to_int(inptr + 6); + + // Get a line from the current subtitle on memory +- curSt = &subtitles.append(); +- curSt->set_start(start_sync); ++ curSt = subtitles.append(); ++ curSt.set_start(start_sync); + + state = SAMI_STATE_SYNC_START; + continue; +@@ -239,14 +239,14 @@ + // Now we are sure that this line is the end sync. + + end_sync = utility::string_to_int(q + 6); +- curSt->set_end(end_sync); ++ curSt.set_end(end_sync); + + *p = '\0'; + trail_space(tmptext); + + // finalize the end sync of current line + if (tmptext[0] != '\0') +- curSt->set_text(tmptext); ++ curSt.set_text(tmptext); + + // an important check if this is end sync. + // Is there any delimiter " " in this line? +@@ -276,14 +276,14 @@ + else + { + end_sync = SAMISYNC_MAXVAL; +- curSt->set_end(end_sync); ++ curSt.set_end(end_sync); + + *p = '\0'; + trail_space(tmptext); + + // finalize the end sync of current line + if (tmptext[0] != '\0') +- curSt->set_text(tmptext); ++ curSt.set_text(tmptext); + + state = SAMI_STATE_FORCE_QUIT; + break; diff --git a/community/supertux/PKGBUILD b/community/supertux/PKGBUILD index 83d737e9f..563f2e415 100644 --- a/community/supertux/PKGBUILD +++ b/community/supertux/PKGBUILD @@ -5,7 +5,7 @@ pkgname=supertux pkgver=0.3.3 -pkgrel=3 +pkgrel=4 pkgdesc="A classic 2D jump'n run sidescroller game in a style similar to the original SuperMario games" arch=('i686' 'x86_64' 'mips64el') url="http://super-tux.sourceforge.net/" @@ -19,6 +19,7 @@ build() { cd ${srcdir}/${pkgname}-${pkgver} sed -i '1i#include <cstddef>' src/supertux/screen_manager.hpp + sed -i '/types\.h/d' src/addon/addon_manager.cpp cmake -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_SUBDIR_BIN=bin . make } diff --git a/community/systemd/PKGBUILD b/community/systemd/PKGBUILD index 9cb264b24..3404835a9 100644 --- a/community/systemd/PKGBUILD +++ b/community/systemd/PKGBUILD @@ -1,15 +1,15 @@ -# $Id: PKGBUILD 55043 2011-09-01 00:45:34Z dreisner $ +# $Id: PKGBUILD 55861 2011-09-23 23:07:50Z dreisner $ # Maintainer: Dave Reisner <dreisner@archlinux.org> pkgname=systemd -pkgver=35 +pkgver=36 pkgrel=1 pkgdesc="Session and Startup manager" arch=('i686' 'x86_64' 'mips64el') url="http://www.freedesktop.org/wiki/Software/systemd" license=('GPL2') depends=('dbus-core' 'kbd' 'libcap' 'util-linux>=2.19' 'udev>=172') -makedepends=('docbook-xsl' 'gperf' 'libxslt' 'cryptsetup' 'gtk2' 'intltool' 'libnotify') +makedepends=('gperf' 'cryptsetup' 'gtk2' 'intltool' 'libnotify') optdepends=('cryptsetup: required for encrypted block devices' 'dbus-python: systemd-analyze' 'gtk2: systemadm' @@ -31,7 +31,7 @@ backup=(etc/dbus-1/system.d/org.freedesktop.systemd1.conf install=systemd.install source=("http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.bz2" "os-release") -md5sums=('6b37b385d22f28c184a04a4e6c3c69b4' +md5sums=('e1213338efb697abc8215d9a66a7f082' '752636def0db3c03f121f8b4f44a63cd') build() { diff --git a/community/vdrift/PKGBUILD b/community/vdrift/PKGBUILD index 03b3db760..5a9160e09 100644 --- a/community/vdrift/PKGBUILD +++ b/community/vdrift/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 55155 2011-09-04 13:08:06Z svenstaro $ +# $Id: PKGBUILD 55905 2011-09-24 16:50:06Z stephane $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Anton Bazhenov <anton.bazhenov at gmail> # Contributor: Lone_Wolf lonewolf@xs4all.nl pkgname=vdrift pkgver=2011.09.01 -pkgrel=1 +pkgrel=3 pkgdesc="An open source driving simulation made with drift racing in mind" arch=('i686' 'x86_64' 'mips64el') url="http://vdrift.net/" diff --git a/community/widelands/PKGBUILD b/community/widelands/PKGBUILD index c11c035a0..fd9cf1416 100644 --- a/community/widelands/PKGBUILD +++ b/community/widelands/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 47900 2011-05-26 00:39:20Z svenstaro $ +# $Id: PKGBUILD 55907 2011-09-24 16:50:18Z stephane $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Arkham <arkham at archlinux dot us> # Contributor: Christoph Zeiler <rabyte*gmail> @@ -6,7 +6,7 @@ pkgname=widelands pkgver=16 _realver=build16 -pkgrel=2 +pkgrel=3 pkgdesc="A realtime strategy game with emphasis on economy and transport" arch=('i686' 'x86_64' 'mips64el') url="http://widelands.org/" diff --git a/community/wine/PKGBUILD b/community/wine/PKGBUILD index 29c749205..07256a53f 100644 --- a/community/wine/PKGBUILD +++ b/community/wine/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 55318 2011-09-09 21:53:02Z svenstaro $ +# $Id: PKGBUILD 55863 2011-09-24 02:48:10Z svenstaro $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com> # Contributor: Eduardo Romero <eduardo@archlinux.org> # Contributor: Giovanni Scafora <giovanni@archlinux.org> pkgname=wine -pkgver=1.3.28 +pkgver=1.3.29 pkgrel=1 _pkgbasever=${pkgver/rc/-rc} source=(http://ibiblio.org/pub/linux/system/emulators/$pkgname/$pkgname-$_pkgbasever.tar.bz2) -md5sums=('70574d609161cec8523804cd9364bcd2') +md5sums=('6c4159ef53c81faf5e52f29211ac50de') pkgdesc="A compatibility layer for running Windows programs" url="http://www.winehq.com" diff --git a/community/znc/PKGBUILD b/community/znc/PKGBUILD index 96bb69c72..ab3c92e82 100644 --- a/community/znc/PKGBUILD +++ b/community/znc/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 55376 2011-09-10 20:15:39Z dreisner $ +# $Id: PKGBUILD 55922 2011-09-25 01:01:16Z dreisner $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Contributor: mickael9 <mickael9 at gmail dot com> pkgname=znc -pkgver=0.200 +pkgver=0.202 pkgrel=1 pkgdesc='An IRC bouncer with modules & scripts support' url='http://en.znc.in/wiki/index.php/ZNC' @@ -16,7 +16,7 @@ optdepends=('tcl: modtcl module' 'perl: modperl module' 'cyrus-sasl: saslauth module') source=("http://znc.in/releases/znc-${pkgver}.tar.gz") -md5sums=('da5b690bc31b007474a77aae70c9c049') +md5sums=('3c6ff4620e139e3d9745cd53111bab20') build() { cd "znc-$pkgver" |