From 94ded0cb27161b972228cfef8ea2e6f60af0f2b2 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 24 Oct 2013 00:56:32 -0700 Subject: Thu Oct 24 00:55:58 PDT 2013 --- community/cwiid/PKGBUILD | 38 ++++++++++++++++++-------------------- community/io/PKGBUILD | 32 ++++++++++++++++++++++++++++++++ community/ldc/PKGBUILD | 7 ++++--- community/lz4/PKGBUILD | 6 +++--- community/oolite/PKGBUILD | 8 ++++---- community/parcellite/ChangeLog | 17 ----------------- community/parcellite/PKGBUILD | 2 +- community/pgadmin3/PKGBUILD | 10 ++++------ community/spice-gtk3/PKGBUILD | 10 +++++++--- community/xbmc-pvr-addons/PKGBUILD | 13 +++++++------ community/xmms-pulse/PKGBUILD | 4 ++-- 11 files changed, 82 insertions(+), 65 deletions(-) create mode 100644 community/io/PKGBUILD delete mode 100644 community/parcellite/ChangeLog (limited to 'community') diff --git a/community/cwiid/PKGBUILD b/community/cwiid/PKGBUILD index 780155b0d..ae777b4f8 100644 --- a/community/cwiid/PKGBUILD +++ b/community/cwiid/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 92496 2013-06-07 09:28:55Z tomegun $ +# $Id: PKGBUILD 99065 2013-10-23 22:02:55Z speps $ # Maintainer : speps # Contributor: Ray Rashif # Contributor: Wieland Hoffmann @@ -7,41 +7,39 @@ # 2012/06/05 : pkgname=cwiid -pkgver=0.6.00 -pkgrel=13 +pkgver=0.6.00+svn201 +pkgrel=1 pkgdesc="Linux Nintendo Wiimote interface" arch=('i686' 'x86_64') url="http://abstrakraft.org/cwiid" depends=('bluez-libs' 'gtk2' 'python2') -makedepends=('python2') license=('GPL') install="$pkgname.install" -source=("$url/downloads/$pkgname-$pkgver.tgz" - "$url/raw-attachment/ticket/70/bluez_4_api_changes.patch") -md5sums=('8d574afdeedc5e5309c87a72d744316a' - '19b288723d1f2b97a3e5288ab9de3313') +source=("https://github.com/abstrakraft/cwiid/archive/svn_history.tar.gz") +md5sums=('e1bc290504dc53f02581866eed0b85c3') + +prepare() { + cd $pkgname-svn_history + sed -i '/ldconfig/s/WITH/ENABLE/' configure.ac + aclocal + autoconf -f +} build() { - cd "$srcdir/$pkgname-$pkgver" - - # bluez v4 compatibility - patch -Np1 -i "$srcdir/bluez_4_api_changes.patch" - + cd $pkgname-svn_history ./configure --prefix=/usr \ --sysconfdir=/etc \ - --disable-ldconfig \ - --with-python=python2 + --with-python=python2 \ + --enable-ldconfig=no - LDFLAGS+="$(pkg-config --libs bluez) -lrt -pthread" make + LDFLAGS+="$(pkg-config --libs bluez) -lpthread" \ + make } package() { - cd "$srcdir/$pkgname-$pkgver" + cd $pkgname-svn_history make DESTDIR="$pkgdir" install - # fix static lib permissions - chmod 644 "$pkgdir/usr/lib/libcwiid.a" - # wminput README install -Dm644 wminput/README \ "$pkgdir/usr/share/doc/$pkgname/wminput/README" diff --git a/community/io/PKGBUILD b/community/io/PKGBUILD new file mode 100644 index 000000000..52ddc03cb --- /dev/null +++ b/community/io/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 99046 2013-10-23 12:00:03Z arodseth $ +# Maintainer: Alexander Rødseth +# Contributor: Gergely Imreh + +pkgname=io +pkgver=2011.09.12 +pkgrel=1 +pkgdesc='IO programming language' +arch=('x86_64' 'i686') +url='http://iolanguage.com/' +license=('BSD') +depends=('pcre' 'libsndfile' 'libxmu' 'freetype2' 'libedit' 'libxml2' 'libtiff' 'libevent' 'yajl' 'libmysqlclient' 'lzo2' 'libpng' 'python2' 'util-linux' 'freeglut' 'libjpeg-turbo' 'libtheora') +makedepends=('cmake') +source=("$pkgname-$pkgver.tar.gz::https://github.com/stevedekorte/io/tarball/$pkgver") +options=('!makeflags' '!buildflags') +sha256sums=('7b4cb97a0aa3abb562703e1dbfe46925c22820eeca6969865b979c397799d092') + +build() { + mkdir -p stevedekorte-io-23afbcc/build + cd stevedekorte-io-23afbcc/build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. + make +} + +package() { + cd stevedekorte-io-23afbcc/build + make DESTDIR="$pkgdir" install + install -Dm644 ../license/bsd_license.txt \ + "$pkgdir/usr/share/licenses/$pkgname/bsd_license.txt" +} + +# vim:set ts=2 sw=2 et: diff --git a/community/ldc/PKGBUILD b/community/ldc/PKGBUILD index df83c72ca..b93f4c0e5 100644 --- a/community/ldc/PKGBUILD +++ b/community/ldc/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 97980 2013-10-02 14:03:48Z dicebot $ +# $Id: PKGBUILD 99051 2013-10-23 12:11:03Z dicebot $ # Maintainer: Mihails Strasuns # Contributor: Sven-Hendrik Haase pkgname=('ldc' 'liblphobos-devel') groups=('dlang' 'dlang-ldc') -pkgver=0.11.0 +pkgver=0.12.0 epoch=1 -pkgrel=4 +pkgrel=1 pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2" arch=('i686' 'x86_64') url="https://github.com/ldc-developers/ldc" @@ -59,6 +59,7 @@ package_ldc() { package_liblphobos-devel() { depends=("ldc") provides=("d-runtime" "d-stdlib") + options=("staticlibs") # libraries install -D -m644 $srcdir/ldc/build/lib/libphobos-ldc.a $pkgdir/usr/lib/liblphobos.a diff --git a/community/lz4/PKGBUILD b/community/lz4/PKGBUILD index 127a04730..4fcf145a9 100644 --- a/community/lz4/PKGBUILD +++ b/community/lz4/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 98004 2013-10-03 00:48:10Z seblu $ +# $Id: PKGBUILD 99061 2013-10-23 18:48:04Z seblu $ # Maintainer: Sébastien Luttringer # Contacted by mail, author use svn commit as release version. @@ -6,11 +6,11 @@ pkgname=lz4 pkgver=106 -pkgrel=1 +pkgrel=2 pkgdesc='Very fast lossless compression algorithm' arch=('i686' 'x86_64') url='https://code.google.com/p/lz4/' -license=('BSD') +license=('BSD' 'GPL2') makedepends=('svn') depends=('glibc') source=("$pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver") diff --git a/community/oolite/PKGBUILD b/community/oolite/PKGBUILD index e0f8c5388..89dd0894a 100644 --- a/community/oolite/PKGBUILD +++ b/community/oolite/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 96992 2013-09-09 20:32:19Z bgyorgy $ +# $Id: PKGBUILD 99040 2013-10-23 00:39:15Z svenstaro $ # Maintainer: Sven-Hendrik Haase # Contributor: Lone_Wolf pkgname=oolite -pkgver=1.77 -pkgrel=3 +pkgver=1.77.1 +pkgrel=1 pkgdesc="A space-sim based on the classic Elite" arch=('i686' 'x86_64') url="http://oolite-linux.berlios.de" @@ -14,7 +14,7 @@ options=(!makeflags) source=(oolite http://download.berlios.de/oolite-linux/oolite-source-${pkgver}.tar.bz2) md5sums=('b182976fade9b64a3b3702e2a8c72bf0' - '78e0f1da12d1478534eb2af4d0983b01') + '6d446df433fde796964c68856389c8dd') build() { cd $srcdir diff --git a/community/parcellite/ChangeLog b/community/parcellite/ChangeLog deleted file mode 100644 index aff4a9e4b..000000000 --- a/community/parcellite/ChangeLog +++ /dev/null @@ -1,17 +0,0 @@ -2009-05-05 Biru Ionut - * parcellite-0.9.1-1: - New upstream release. - -2008-12-14 Alexander Fehr - - * parcellite-0.9-1: - New upstream release. - -2008-08-14 Alexander Fehr - - * parcellite-0.8-1: - New upstream release. - Changed url. - Added make dependency on intltool. - Changed download location to downloads.sourceforge.net. - Added ChangeLog. diff --git a/community/parcellite/PKGBUILD b/community/parcellite/PKGBUILD index 78ec29e5d..5b26e980c 100644 --- a/community/parcellite/PKGBUILD +++ b/community/parcellite/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 95071 2013-08-05 10:50:54Z spupykin $ +# $Id: PKGBUILD 99050 2013-10-23 12:05:36Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Alexander Fehr diff --git a/community/pgadmin3/PKGBUILD b/community/pgadmin3/PKGBUILD index 1dccc5945..fe73a337c 100644 --- a/community/pgadmin3/PKGBUILD +++ b/community/pgadmin3/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 98468 2013-10-11 10:07:30Z spupykin $ +# $Id: PKGBUILD 99053 2013-10-23 12:11:30Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Douglas Soares de Andrade # Contributor: Benjamin Andresen @@ -6,21 +6,19 @@ pkgname=pgadmin3 pkgver=1.18.1 -pkgrel=1 +pkgrel=2 pkgdesc="Comprehensive design and management interface for PostgreSQL" arch=('i686' 'x86_64') url="http://www.pgadmin.org" license=('custom') depends=('wxgtk' 'postgresql-libs' 'libxslt') makedepends=('libpqxx' 'krb5' 'postgresql' 'imagemagick') -_categories="Development;Application" source=(http://ftp.postgresql.org/pub/pgadmin3/release/v${pkgver}/src/pgadmin3-${pkgver}.tar.gz) md5sums=('7dde96680407c900af72d0839a377de4') build() { cd "$srcdir" convert pgadmin3-${pkgver}/pgadmin/include/images/pgAdmin3.ico pgadmin3.png - cp pgadmin3-3.png pgadmin3.png cd "pgadmin3-${pkgver}" [ -f Makefile ] || ./configure --prefix=/usr @@ -33,7 +31,7 @@ package() { make DESTDIR=$pkgdir/ install 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.png" "$pkgdir/usr/share/pixmaps/pgadmin3.png" + install -Dm644 pgadmin/include/images/pgAdmin3.ico $pkgdir/usr/share/pgadmin3/pgAdmin3.ico + install -Dm644 "$srcdir/pgadmin3-3.png" "$pkgdir/usr/share/pgadmin3/pgAdmin3.png" install -Dm644 "pkg/pgadmin3.desktop" "$pkgdir/usr/share/applications/pgadmin3.desktop" } diff --git a/community/spice-gtk3/PKGBUILD b/community/spice-gtk3/PKGBUILD index 840b6a390..5d8896ec3 100644 --- a/community/spice-gtk3/PKGBUILD +++ b/community/spice-gtk3/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 98296 2013-10-08 04:33:16Z bgyorgy $ +# $Id: PKGBUILD 99055 2013-10-23 12:11:51Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Stefano Facchini # Contributor: Jonathan Lestrelin @@ -6,7 +6,7 @@ pkgname=spice-gtk3 pkgver=0.21 -pkgrel=2 +pkgrel=3 pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 version)" arch=('i686' 'x86_64') url="http://spice-space.org" @@ -14,12 +14,16 @@ license=('LGPL2.1') depends=('celt0.5.1' 'gtk3' 'libcacard' 'libpulse' 'usbredir') makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 'qemu' 'spice-protocol' 'usbutils' 'vala') options=('!libtool') -source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2") +source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2" + "usb-fix.patch::https://bugs.freedesktop.org/attachment.cgi?id=86818") sha256sums=('73d418ffa97d6cf5edb1920d46f1d51fc40d14a8d4edfab3be6041e25062c564') +sha256sums=('73d418ffa97d6cf5edb1920d46f1d51fc40d14a8d4edfab3be6041e25062c564' + '1b3c7d20ebd3644faf95e387f7d2696fcd773539db8ffdda2e316a7c516ce6d2') prepare() { cd "$srcdir/spice-gtk-$pkgver" sed -i 's,/usr/bin/env python,/usr/bin/python2,' spice-common/spice_codegen.py + patch -p1 <$srcdir/usb-fix.patch } build() { diff --git a/community/xbmc-pvr-addons/PKGBUILD b/community/xbmc-pvr-addons/PKGBUILD index 0e867b56c..13872453e 100644 --- a/community/xbmc-pvr-addons/PKGBUILD +++ b/community/xbmc-pvr-addons/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 86252 2013-03-14 11:10:40Z spupykin $ +# $Id: PKGBUILD 99057 2013-10-23 12:22:48Z spupykin $ # Maintainer: Sergej Pupykin pkgname=xbmc-pvr-addons -pkgver=12.0_Frodo +pkgver=20131023git pkgrel=1 pkgdesc="XBMC PVR add-ons for current stable xbmc" arch=('i686' 'x86_64') @@ -12,17 +12,18 @@ depends=('xbmc' 'libmysqlclient') makedepends=('git' 'libmysqlclient' 'boost') optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend') conflicts=('xbmc-pvr-addons-git') -source=("$pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${pkgver/_/-}.tar.gz") -md5sums=('4411848a648597037daf97562dd0fcd2') +#source=("$pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${pkgver/_/-}.tar.gz") +source=("git://github.com/opdenkamp/xbmc-pvr-addons.git") +md5sums=('SKIP') build() { - cd "$srcdir/$pkgname-${pkgver/_/-}" + cd "$srcdir/$pkgname" ./bootstrap ./configure --prefix=/usr --enable-addons-with-dependencies make } package() { - cd "$srcdir/$pkgname-${pkgver/_/-}" + cd "$srcdir/$pkgname" make DESTDIR="$pkgdir/" install } diff --git a/community/xmms-pulse/PKGBUILD b/community/xmms-pulse/PKGBUILD index 019e8a140..cc6a5b988 100644 --- a/community/xmms-pulse/PKGBUILD +++ b/community/xmms-pulse/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 68002 2012-03-17 00:12:40Z giovanni $ +# $Id: PKGBUILD 99059 2013-10-23 16:59:38Z heftig $ # Maintainer: Jan "heftig" Steffens # Contributor: Corrado Primier # Contributor: William Rea @@ -6,7 +6,7 @@ pkgname=xmms-pulse pkgver=0.9.4 -pkgrel=3 +pkgrel=4 pkgdesc="An XMMS output plugin for the PulseAudio sound server" arch=('i686' 'x86_64') url="http://0pointer.de/lennart/projects/xmms-pulse" -- cgit v1.2.3-54-g00ecf