From 4d91fc9a2dc38054b8748f27193dc3a6950bda3c Mon Sep 17 00:00:00 2001 From: root Date: Tue, 7 Jun 2011 22:47:46 +0000 Subject: Tue Jun 7 22:47:46 UTC 2011 --- community/atanks/PKGBUILD | 29 ++++++++++++-------- community/couchdb/PKGBUILD | 34 +++++++++++++---------- community/libmicrohttpd/PKGBUILD | 6 ++-- community/libvirt/PKGBUILD | 10 +++---- community/libvirt/openbsd-netcat-default.patch | 38 +++++++++++++------------- community/luaexpat/PKGBUILD | 30 ++++++++++++-------- community/luxrays/PKGBUILD | 33 ++++++++++++++++++++++ community/luxrender/PKGBUILD | 33 ++++++++++------------ community/nginx/PKGBUILD | 6 ++-- community/prosody/PKGBUILD | 16 +++++++---- community/qps/PKGBUILD | 17 +++++++----- community/shotwell/PKGBUILD | 14 ++++------ community/xfe/PKGBUILD | 11 ++++++-- 13 files changed, 167 insertions(+), 110 deletions(-) create mode 100644 community/luxrays/PKGBUILD (limited to 'community') diff --git a/community/atanks/PKGBUILD b/community/atanks/PKGBUILD index 17a1c5c84..df575a001 100644 --- a/community/atanks/PKGBUILD +++ b/community/atanks/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 42290 2011-03-16 10:36:27Z spupykin $ +# $Id: PKGBUILD 48863 2011-06-06 21:45:37Z tdziedzic $ # Maintainer: Sergej Pupykin # Contributor: Jacek Poplawski # Contributor: Charlie Cox pkgname=atanks -pkgver=4.8 +pkgver=5.0 pkgrel=1 pkgdesc="Atomic Tanks" url="http://atanks.sourceforge.net" @@ -12,25 +12,32 @@ license=('GPL') arch=('i686' 'x86_64') makedepends=('sed') depends=('allegro>=4.4.0.1' 'gcc-libs') -source=(http://downloads.sourceforge.net/project/atanks/atanks/atanks-$pkgver/atanks-$pkgver.tar.gz) -md5sums=('a00b709f6aec4e0e33ab0d56a6e932e7') +source=("http://downloads.sourceforge.net/project/atanks/atanks/atanks-${pkgver}/atanks-${pkgver}.tar.gz") +md5sums=('1978fabfb5ab2c33bd079eb492ee4362') build() { - cd "$srcdir/$pkgname-$pkgver" + cd atanks-${pkgver} #debug messages fix - sed -i '/lines->Display_All(TRUE)/d' src/files.cpp - sed -i '/Scroll Offset:/d' src/files.cpp - sed -i '/T offset:/d' src/files.cpp + #sed -i '/lines->Display_All(TRUE)/d' src/files.cpp + #sed -i '/Scroll Offset:/d' src/files.cpp + #sed -i '/T offset:/d' src/files.cpp # - sed -i '1,1i#include ' src/files.cpp + #sed -i '1,1i#include ' src/files.cpp make +} + +package() { + cd atanks-${pkgver} + make PREFIX=${pkgdir}/usr/ INSTALL="install -c" install sed -i 's/^Name=atanks/Name=Atomic Tanks/' atanks.desktop sed -i 's/^Categories=Game;/Categories=Game;StrategyGame;/' atanks.desktop - install -Dm644 atanks.desktop $pkgdir/usr/share/applications/atanks.desktop - install -Dm644 atanks.png $pkgdir/usr/share/pixmaps/atanks.png + install -Dm644 atanks.desktop \ + $pkgdir/usr/share/applications/atanks.desktop + install -Dm644 atanks.png \ + $pkgdir/usr/share/pixmaps/atanks.png } diff --git a/community/couchdb/PKGBUILD b/community/couchdb/PKGBUILD index 4327a8094..c7c3d708b 100644 --- a/community/couchdb/PKGBUILD +++ b/community/couchdb/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 48637 2011-06-03 16:51:06Z stephane $ +# $Id: PKGBUILD 48868 2011-06-06 21:47:32Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua # Previous Contributor: Michael Fellinger pkgname=couchdb -pkgver=1.0.2 -pkgrel=3 +pkgver=1.1.0 +pkgrel=1 pkgdesc="A document-oriented database that can be queried and indexed in a MapReduce fashion using JSON" arch=('i686' 'x86_64') url="http://couchdb.apache.org" @@ -19,22 +19,26 @@ backup=('etc/couchdb/local.ini' 'etc/logrotate.d/couchdb') source=("http://www.apache.org/dist/$pkgname/$pkgver/apache-$pkgname-$pkgver.tar.gz" "rc-script.patch") -md5sums=('7ffbbe0f23f672181c89923c9f7a1de1' +md5sums=('907b763d3a14b6649bf0371ffa75a36b' 'e9b5595338efbdc1a5db13284a296612') build() { - cd "$srcdir/apache-$pkgname-$pkgver" + cd "$srcdir/apache-$pkgname-$pkgver" - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var - make - patch etc/init/couchdb <$srcdir/rc-script.patch - make DESTDIR="$pkgdir" install + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var + make + patch etc/init/couchdb <$srcdir/rc-script.patch +} + +package() { + cd "$srcdir/apache-$pkgname-$pkgver" + make DESTDIR="$pkgdir" install - install -Dm755 etc/default/couchdb $pkgdir/etc/conf.d/couchdb - sed -i 's|\(CONFIGURATION_FILE=/etc/\)default\(/couchdb\)|\1conf.d\2|' $pkgdir/etc/rc.d/couchdb - sed -i 's|\(COUCHDB_OPTIONS=\)|\1"-p /var/run/couchdb/couchdb.pid"|' $pkgdir/etc/conf.d/couchdb - sed -i 's|$COUCHDB -s|$COUCHDB $COUCHDB_OPTIONS -s|' $pkgdir/etc/rc.d/couchdb - sed -i 's|su $COUCHDB_USER -c|su $COUCHDB_USER -s /bin/bash -c|' $pkgdir/etc/rc.d/couchdb + install -Dm755 etc/default/couchdb $pkgdir/etc/conf.d/couchdb + sed -i 's|\(CONFIGURATION_FILE=/etc/\)default\(/couchdb\)|\1conf.d\2|' $pkgdir/etc/rc.d/couchdb + sed -i 's|\(COUCHDB_OPTIONS=\)|\1"-p /var/run/couchdb/couchdb.pid"|' $pkgdir/etc/conf.d/couchdb + sed -i 's|$COUCHDB -s|$COUCHDB $COUCHDB_OPTIONS -s|' $pkgdir/etc/rc.d/couchdb + sed -i 's|su $COUCHDB_USER -c|su $COUCHDB_USER -s /bin/bash -c|' $pkgdir/etc/rc.d/couchdb - rm -rf $pkgdir/etc/default/ $pkgdir/var/run + rm -rf $pkgdir/etc/default/ $pkgdir/var/run } diff --git a/community/libmicrohttpd/PKGBUILD b/community/libmicrohttpd/PKGBUILD index cf578117f..c942a6761 100644 --- a/community/libmicrohttpd/PKGBUILD +++ b/community/libmicrohttpd/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 45868 2011-04-30 09:25:16Z spupykin $ +# $Id: PKGBUILD 47393 2011-05-22 11:59:43Z jelle $ # Maintainer: Sergej Pupykin # Maintainer: Norberto Lopes # Contributor: Kao Dome @@ -6,7 +6,7 @@ # Contributor: Mathias Rohnstock pkgname=libmicrohttpd -pkgver=0.9.10 +pkgver=0.9.11 pkgrel=1 pkgdesc="a small C library that is supposed to make it easy to run an HTTP server as part of another application." arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ options=('!libtool') depends=('gnutls') install=libmicrohttpd.install source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz) -md5sums=('7cc44373fe1b03348510755839091578') +md5sums=('69b97b11437e53863e92d5f0221f339b') build() { cd ${pkgname}-${pkgver} diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD index 184051106..78737f3b2 100644 --- a/community/libvirt/PKGBUILD +++ b/community/libvirt/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 46367 2011-05-06 10:37:16Z spupykin $ +# $Id: PKGBUILD 48842 2011-06-06 14:43:46Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Jonathan Wiersma pkgname=libvirt -pkgver=0.9.1 +pkgver=0.9.2 pkgrel=1 pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)" arch=('i686' 'x86_64') @@ -37,10 +37,10 @@ source=("http://libvirt.org/sources/$pkgname-$pkgver.tar.gz" openbsd-netcat-default.patch unixperms.patch yajl-2.x.patch) -md5sums=('4182dbe290cca4344a5387950dc06433' +md5sums=('a9f974e173471a9c9b381ad1e93642b0' '018d97dafc0049075fba6f2850f17a12' '3ed0e24f5b5e25bf553f5427d64915e6' - '7d5a841d51321be56ad3c4f93d112fb0' + '1c151434af552b8a30fe87d21ef5d783' 'db95aecdf2ccf3693fef5821cdcb7eba' '5745bb8d0b254abb7a3528c66e03b0f9') @@ -62,7 +62,7 @@ build() { [ $NOEXTRACT -eq 1 ] || patch -Np1 -i "$srcdir"/openbsd-netcat-default.patch # fixes for yajl 2.0 API changes - [ $NOEXTRACT -eq 1 ] || patch -Np1 -i "$srcdir/yajl-2.x.patch" +# [ $NOEXTRACT -eq 1 ] || patch -Np1 -i "$srcdir/yajl-2.x.patch" export LDFLAGS=-lX11 [ -f Makefile ] || ./configure --prefix=/usr --libexec=/usr/lib/"$pkgname" \ diff --git a/community/libvirt/openbsd-netcat-default.patch b/community/libvirt/openbsd-netcat-default.patch index 382611c74..8a0d9aec8 100644 --- a/community/libvirt/openbsd-netcat-default.patch +++ b/community/libvirt/openbsd-netcat-default.patch @@ -1,24 +1,24 @@ -diff -wbBur libvirt-0.9.0/src/qemu/qemu_migration.c libvirt-0.9.0.my/src/qemu/qemu_migration.c ---- libvirt-0.9.0/src/qemu/qemu_migration.c 2011-03-29 14:18:53.000000000 +0000 -+++ libvirt-0.9.0.my/src/qemu/qemu_migration.c 2011-04-04 14:34:43.000000000 +0000 -@@ -819,7 +819,7 @@ +diff -wbBur libvirt-0.9.2/src/qemu/qemu_migration.c libvirt-0.9.2.my/src/qemu/qemu_migration.c +--- libvirt-0.9.2/src/qemu/qemu_migration.c 2011-06-06 06:47:32.000000000 +0400 ++++ libvirt-0.9.2.my/src/qemu/qemu_migration.c 2011-06-06 18:27:38.000000000 +0400 +@@ -1770,7 +1770,7 @@ + ret = qemuMonitorMigrateToUnix(priv->mon, background_flags, unixfile); - } - else if (qemuCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_EXEC)) { + } else if (qemuCapsGet(priv->qemuCaps, QEMU_CAPS_MIGRATE_QEMU_EXEC)) { - const char *args[] = { "nc", "-U", unixfile, NULL }; + const char *args[] = { "nc.openbsd", "-U", unixfile, NULL }; - internalret = qemuMonitorMigrateToCommand(priv->mon, QEMU_MONITOR_MIGRATE_BACKGROUND, args); + ret = qemuMonitorMigrateToCommand(priv->mon, QEMU_MONITOR_MIGRATE_BACKGROUND, args); } else { - internalret = -1; -diff -wbBur libvirt-0.9.0/src/remote/remote_driver.c libvirt-0.9.0.my/src/remote/remote_driver.c ---- libvirt-0.9.0/src/remote/remote_driver.c 2011-03-29 12:57:01.000000000 +0000 -+++ libvirt-0.9.0.my/src/remote/remote_driver.c 2011-04-04 14:34:23.000000000 +0000 -@@ -777,7 +777,7 @@ - cmd_argv[j++] = strdup ("none"); + ret = -1; +diff -wbBur libvirt-0.9.2/src/remote/remote_driver.c libvirt-0.9.2.my/src/remote/remote_driver.c +--- libvirt-0.9.2/src/remote/remote_driver.c 2011-06-06 04:15:12.000000000 +0400 ++++ libvirt-0.9.2.my/src/remote/remote_driver.c 2011-06-06 18:27:52.000000000 +0400 +@@ -774,7 +774,7 @@ + virCommandAddArgList(cmd, "-T", "-o", "BatchMode=yes", "-e", + "none", NULL); } - cmd_argv[j++] = strdup (priv->hostname); -- cmd_argv[j++] = strdup (netcat ? netcat : "nc"); -+ cmd_argv[j++] = strdup (netcat ? netcat : "nc.openbsd"); - cmd_argv[j++] = strdup ("-U"); - cmd_argv[j++] = strdup (sockname ? sockname : - (flags & VIR_CONNECT_RO +- virCommandAddArgList(cmd, priv->hostname, netcat ? netcat : "nc", ++ virCommandAddArgList(cmd, priv->hostname, netcat ? netcat : "nc.openbsd", + "-U", (sockname ? sockname : + (flags & VIR_CONNECT_RO + ? LIBVIRTD_PRIV_UNIX_SOCKET_RO diff --git a/community/luaexpat/PKGBUILD b/community/luaexpat/PKGBUILD index e0f61fa82..a69a617b8 100644 --- a/community/luaexpat/PKGBUILD +++ b/community/luaexpat/PKGBUILD @@ -1,22 +1,28 @@ # Contributor: Lucas Hermann Negri -pkgname='luaexpat' -pkgver='1.1' -pkgrel='3' + +pkgname=luaexpat +pkgver=1.2.0 +pkgrel=1 pkgdesc='LuaExpat is a SAX XML parser based on the Expat library. LuaExpat is free software and uses the same license as Lua 5.0.' arch=('i686' 'x86_64') -url='http://luaforge.net/projects/luaexpat/' +url='http://code.matthewwild.co.uk/lua-expat' license=('MIT') makedepends=('gcc' 'lua>=5.1' 'expat>=2') depends=('lua' 'expat') -source=(http://luaforge.net/frs/download.php/2469/$pkgname-$pkgver.tar.gz 'newconfig') -md5sums=('6ecb895ccf5cff1e7f2facd438b1f8d0' 'b89a09379d3e46e6496255e44cecc316') +source=("http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz" + 'newconfig') +md5sums=('03efe50c7f30a34580701e6527d7bfee' + 'b89a09379d3e46e6496255e44cecc316') build() { - cd $startdir/src/ - mv newconfig $pkgname-$pkgver/config - cd $pkgname-$pkgver - make || return 1 - make DESTDIR=$startdir/pkg install || return 1 - mv usr $startdir/pkg + cd $startdir/src/ + mv newconfig $pkgname-$pkgver/config + cd $pkgname-$pkgver + make } +package() { + cd $startdir/src/$pkgname-$pkgver + make DESTDIR=$startdir/pkg install + mv usr $startdir/pkg +} diff --git a/community/luxrays/PKGBUILD b/community/luxrays/PKGBUILD new file mode 100644 index 000000000..47f1abe5d --- /dev/null +++ b/community/luxrays/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 48847 2011-06-06 14:44:47Z stativ $ +# Maintainer: Lukas Jirkovsky +pkgname=luxrays +pkgver=0.8 +_pkgver=ed424ec77571 +pkgrel=1 +epoch=0 +pkgdesc="Accelerate the ray intersection process by using GPUs" +arch=('i686' 'x86_64') +url="http://www.luxrender.net/" +license=('GPL') +depends=('freeimage' 'freeglut' 'glew' 'libgl' 'libcl') +makedepends=('cmake' 'boost' 'opencl-headers') +source=(http://src.luxrender.net/luxrays/archive/$_pkgver.tar.bz2) +md5sums=('32ac9ebd0a4de217fb3362494ce16a8e') + +build() { + cd "$srcdir/$pkgname-$_pkgver" + + cmake -DCMAKE_INSTALL_PREFIX=/usr . + make +} + +package() { + cd "$srcdir/$pkgname-$_pkgver" + + install -d -m755 "$pkgdir"/usr/{bin,include,lib} + install -m755 bin/* "$pkgdir"/usr/bin + install -m644 lib/* "$pkgdir"/usr/lib + cp -a include/luxrays "$pkgdir"/usr/include +} + +# vim:set ts=2 sw=2 et: diff --git a/community/luxrender/PKGBUILD b/community/luxrender/PKGBUILD index d32a5be5b..578bf6588 100644 --- a/community/luxrender/PKGBUILD +++ b/community/luxrender/PKGBUILD @@ -2,30 +2,26 @@ # Initial contributor: flixie <69one@gmx.net> # Contributor: Imanol Celaya pkgname=luxrender -pkgver=0.7.1 -_pkgver=9206b3ba7011 -_luxblend=f93faf8189c1 -pkgrel=5 +pkgver=0.8 +_pkgver=45d3e13eb94c +_luxblend=9cb3fcee0be8 +_blender=2.57 +pkgrel=1 pkgdesc="Rendering system for physically correct, unbiased image synthesis" arch=('i686' 'x86_64') url="http://www.luxrender.net/" license=('GPL') -depends=('boost-libs' 'freeimage') -optdepends=('python2: luxblend' 'qt: Qt GUI' 'wxgtk: wxGTK GUI') -makedepends=('cmake' 'boost' 'mesa' 'wxgtk' 'qt' 'libpng' 'openexr') +depends=('boost-libs' 'luxrays' 'openexr') +optdepends=('blender: Blender exporter' 'qt: Qt GUI') +makedepends=('cmake' 'boost' 'qt' 'opencl-headers') source=(http://src.luxrender.net/lux/archive/$_pkgver.tar.bz2 - http://src.luxrender.net/luxblend/archive/$_luxblend.tar.bz2 - libpng.patch) -md5sums=('44b819d37c2cccd8b1a890e6c67061a8' - 'daf70af98123d31303c2c037244c527c' - '4bbd82a31aa3f6ee2644a712bf2bfc05') + http://src.luxrender.net/luxblend25/archive/$_luxblend.tar.bz2) +md5sums=('ad8d2ede00aa244cad884d9696ff5fbb' + '29c34f97791db3af1b827d9e9a1b3d79') + build() { cd "$srcdir"/lux-$_pkgver - patch -Np1 -i "${srcdir}/libpng.patch" || true - - export CXXFLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=2" - cmake -DCMAKE_INSTALL_PREFIX=/usr . make } @@ -38,8 +34,9 @@ package() { [ "$CARCH" = "x86_64" ] && mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib # install blender exporter - install -d -m755 "$pkgdir"/usr/share/blender/scripts - install -m644 "$srcdir"/luxblend-$_luxblend/*.py "$pkgdir"/usr/share/blender/scripts + install -d -m755 "$pkgdir"/usr/share/blender/$_blender/scripts/addons + cp -a "$srcdir"/luxblend25-$_luxblend/src/luxrender \ + "$pkgdir"/usr/share/blender/$_blender/scripts/addons } # vim:set ts=2 sw=2 et: diff --git a/community/nginx/PKGBUILD b/community/nginx/PKGBUILD index 873f69556..6fd5e2b2b 100644 --- a/community/nginx/PKGBUILD +++ b/community/nginx/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 47990 2011-05-26 22:02:37Z tdziedzic $ +# $Id: PKGBUILD 48812 2011-06-06 11:51:15Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Miroslaw Szot @@ -11,7 +11,7 @@ _user=http _group=http pkgname=nginx -pkgver=1.0.3 +pkgver=1.0.4 pkgrel=1 pkgdesc="lightweight HTTP server and IMAP/POP3 proxy server" arch=('i686' 'x86_64') @@ -27,7 +27,7 @@ backup=("etc/nginx/conf/nginx.conf" "etc/logrotate.d/nginx") source=(http://sysoev.ru/nginx/nginx-${pkgver}.tar.gz nginx) -md5sums=('eebf1e9c7e86f923923b828ae0156103' +md5sums=('d23f6e6b07b57ac061e790b1ed64bb98' '837b010afcbdfe82d8e65ef00c4e14ba') build() { diff --git a/community/prosody/PKGBUILD b/community/prosody/PKGBUILD index e7622f468..70fc356c9 100644 --- a/community/prosody/PKGBUILD +++ b/community/prosody/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 44453 2011-04-07 16:06:39Z spupykin $ +# $Id: PKGBUILD 48848 2011-06-06 14:44:51Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Dwayne Bent # Contributor: Paul-Sebastian Manole pkgname=prosody -pkgver=0.8.0 +pkgver=0.8.1 pkgrel=1 pkgdesc="Lightweight and extensible Jabber/XMPP server written in Lua." arch=('i686' 'x86_64') @@ -12,7 +12,8 @@ url="http://prosody.im/" license=('MIT') depends=('lua>=5.1' 'luasocket' 'luaexpat' 'luafilesystem' 'libidn>=0.5.18' 'openssl') optdepends=('luasec: TLS encryption support' - 'lua-zlib: compression support') + 'lua-zlib: compression support' + 'luadbi: SQL storage support') install=prosody.install backup=('etc/logrotate.d/prosody' 'etc/prosody/prosody.cfg.lua') @@ -20,19 +21,22 @@ source=("http://prosody.im/depot/${pkgver}/prosody-${pkgver}.tar.gz" 'prosody.rcd' 'prosody.logrotated' 'fix-config.patch') -md5sums=('8b057f62875b46b4a8061853a0953473' +md5sums=('2be3e9deed0b96f109efc5707d7728ba' 'd2b5f9c8e42bb31819e715eb1756ee53' '26466fdbea87963a3ca6f48f76fe4a29' '59a1bf2dfd0bd386cef6fa646e2a3752') build() { cd "$srcdir/prosody-$pkgver" - patch -p1 <$srcdir/fix-config.patch - ./configure --prefix=/usr --sysconfdir=/etc/prosody \ --datadir=/var/lib/prosody make +} + +package() { + cd "$srcdir/prosody-$pkgver" + make DESTDIR="$pkgdir" install rm $pkgdir/etc/prosody/certs/* diff --git a/community/qps/PKGBUILD b/community/qps/PKGBUILD index c1fc2b755..60bc67be0 100644 --- a/community/qps/PKGBUILD +++ b/community/qps/PKGBUILD @@ -1,24 +1,27 @@ -# $Id: PKGBUILD 43435 2011-03-26 08:43:39Z spupykin $ +# $Id: PKGBUILD 48817 2011-06-06 11:52:03Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: David Rosenstrauch pkgname=qps -pkgver=1.10.12.2 +pkgver=1.10.12.3 pkgrel=1 -_dlpkgver=5843 +_dlpkgver=5930 pkgdesc="Qps is a visual process manager, an X11 version of 'top' or 'ps'." -url="http://qps.kldp.net/" +url="http://qps.kldp.net/projects/qps" depends=('qt') -source=(http://kldp.net/frs/download.php/$_dlpkgver/qps-$pkgver.tar.bz2) -md5sums=('26ed0f55828229dd6000d3487455e9b4') arch=('i686' 'x86_64') license="GPL" -md5sums=('59a456fe5fc6af3743137e5bf8c25a88') +source=(http://kldp.net/frs/download.php/$_dlpkgver/qps-$pkgver.tar.bz2) +md5sums=('43f8c0c00e31c869d6a4bb5e42d6680a') build() { cd $srcdir/$pkgname-$pkgver qmake make +} + +package() { + cd $srcdir/$pkgname-$pkgver install -D -m 755 qps $pkgdir/usr/bin/qps install -D -m 644 qps.1 $pkgdir/usr/share/man/man1/qps.1 install -D -m 644 qps.desktop $pkgdir/usr/share/applications/qps.desktop diff --git a/community/shotwell/PKGBUILD b/community/shotwell/PKGBUILD index 6e7e40006..f9c878cc3 100644 --- a/community/shotwell/PKGBUILD +++ b/community/shotwell/PKGBUILD @@ -1,35 +1,33 @@ -# $Id: PKGBUILD 48133 2011-05-28 22:32:26Z tdziedzic $ +# $Id: PKGBUILD 48825 2011-06-06 11:53:22Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer : Ionut Biru # Contributor: Joeny Ang pkgname=shotwell -pkgver=0.10 +pkgver=0.10.1 pkgrel=1 pkgdesc="A digital photo organizer designed for the GNOME desktop environment" arch=('i686' 'x86_64') url="http://yorba.org/shotwell/" license=('LGPL2.1') -depends=('gconf' 'libgee' 'libgphoto2' 'libunique' 'libwebkit' 'libgexiv2' 'libraw' 'librsvg' 'json-glib' 'desktop-file-utils' 'gnome-vfs') +depends=('gconf' 'libgee' 'libgphoto2' 'libunique' 'libwebkit' 'libgexiv2' 'libraw' + 'librsvg' 'json-glib' 'desktop-file-utils' 'gnome-vfs') makedepends=('intltool' 'vala') install=shotwell.install -source=("http://yorba.org/download/shotwell/${pkgver}/shotwell-${pkgver}.tar.bz2") -md5sums=('680c688cefdf6929f0a995d755b9f8f7') +source=("http://yorba.org/download/shotwell/0.10/shotwell-${pkgver}.tar.bz2") +md5sums=('ef75923257e8554d14a6545c83406700') build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr \ --with-gconf-schema-file-dir=/usr/share/gconf/schemas \ --disable-schemas-install \ --disable-desktop-update \ --disable-icon-update - make } package() { cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install } diff --git a/community/xfe/PKGBUILD b/community/xfe/PKGBUILD index e0f55d3b7..20ba88822 100644 --- a/community/xfe/PKGBUILD +++ b/community/xfe/PKGBUILD @@ -1,23 +1,28 @@ -# $Id: PKGBUILD 43121 2011-03-24 07:49:15Z spupykin $ +# $Id: PKGBUILD 48873 2011-06-06 21:48:23Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Eric Belanger # Contributor: Ravi Desai pkgname=xfe -pkgver=1.32.3 +pkgver=1.32.4 pkgrel=1 pkgdesc="X File Explorer (Xfe) is an MS-Explorer like file manager for X." arch=('i686' 'x86_64') url="http://roland65.free.fr/xfe" license=("GPL") depends=('fox') +makedepends=('intltool') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('f9fe72a2a9cf55fb36ac2f9d20f8210a') +md5sums=('ed9db4338b9191adb5267fd12f64e774') build() { cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr sed -i 's|inline||' src/xfeutils.cpp make +} + +package() { + cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir install } -- cgit v1.2.3-54-g00ecf