summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--community-testing/qtractor/PKGBUILD34
-rw-r--r--community-testing/qtractor/qtractor.changelog14
-rw-r--r--community/camlp5/PKGBUILD2
-rw-r--r--community/dar/PKGBUILD14
-rw-r--r--community/gedit-plugins/PKGBUILD5
-rw-r--r--community/gtk-gnutella/PKGBUILD10
-rw-r--r--community/i3status/PKGBUILD6
-rw-r--r--community/kdenlive/PKGBUILD11
-rw-r--r--community/luakit/PKGBUILD12
-rw-r--r--community/virtualbox/PKGBUILD6
-rw-r--r--extra/audacious/PKGBUILD6
-rw-r--r--extra/libimobiledevice/PKGBUILD6
-rw-r--r--extra/libva/PKGBUILD10
-rw-r--r--extra/libva/libva-dont-install-tests.patch35
-rw-r--r--extra/lm_sensors/PKGBUILD27
-rw-r--r--extra/nasm/PKGBUILD8
-rw-r--r--extra/telepathy-glib/PKGBUILD6
-rw-r--r--extra/telepathy-mission-control/PKGBUILD8
-rw-r--r--extra/transmission/PKGBUILD10
-rw-r--r--testing/libgpg-error/PKGBUILD37
20 files changed, 173 insertions, 94 deletions
diff --git a/community-testing/qtractor/PKGBUILD b/community-testing/qtractor/PKGBUILD
new file mode 100644
index 000000000..0f47776b6
--- /dev/null
+++ b/community-testing/qtractor/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 52272 2011-07-22 23:53:54Z schiv $
+# Maintainer: Ray Rashif <schiv@archlinux.org>
+# Contributor: Philipp Überbacher <hollunder at gmx dot at>
+
+pkgname=qtractor
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="Audio/MIDI multitrack sequencer"
+arch=('i686' 'x86_64')
+url="http://qtractor.sourceforge.net/"
+license=('GPL')
+depends=('qt' 'jack' 'slv2>=0.6.6-6' 'libmad' 'liblo'
+ 'libsamplerate' 'rubberband')
+ # slv2 versioned for https://bugs.archlinux.org/task/25060
+makedepends=('ladspa' 'dssi')
+[ "$CARCH" = "i686" ] && optdepends=('dssi-vst: win32 VST support')
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('6dcc05532f71eaaa1aa0f336bcd265b0')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr
+ make
+}
+
+package () {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:
diff --git a/community-testing/qtractor/qtractor.changelog b/community-testing/qtractor/qtractor.changelog
new file mode 100644
index 000000000..c0c8a8e0c
--- /dev/null
+++ b/community-testing/qtractor/qtractor.changelog
@@ -0,0 +1,14 @@
+17 Jan 2010 (GMT+8) Ray Rashif <schiv@archlinux.org>
+
+ * 0.4.4-1
+ upstream update
+ new deps:
+ For LV2 support
+ --| slv2
+ ----| lv2core
+
+26 Dec 2009 (GMT+8) Ray Rashif <schiv@archlinux.org>
+
+ * 0.4.3-1
+ initial commit
+ only important changes will be logged
diff --git a/community/camlp5/PKGBUILD b/community/camlp5/PKGBUILD
index 348a197d0..404c76433 100644
--- a/community/camlp5/PKGBUILD
+++ b/community/camlp5/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=('camlp5' 'camlp5-transitional')
pkgver=6.02.3
-pkgrel=1
+pkgrel=2
arch=('i686' 'x86_64')
url='http://pauillac.inria.fr/~ddr/camlp5/'
license=('BSD')
diff --git a/community/dar/PKGBUILD b/community/dar/PKGBUILD
index fd4af6747..ab27e1625 100644
--- a/community/dar/PKGBUILD
+++ b/community/dar/PKGBUILD
@@ -1,24 +1,22 @@
-# $Id: PKGBUILD 49277 2011-06-13 15:55:00Z shusmann $
+# $Id: PKGBUILD 52259 2011-07-22 16:01:25Z shusmann $
# Contributor: Aaron Schaefer <aaron@elasticdog.com>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=dar
-pkgver=2.4.0
-pkgrel=3
+pkgver=2.4.1
+pkgrel=1
pkgdesc='A full featured command-line backup tool, short for Disk ARchive'
arch=('i686' 'x86_64')
url='http://dar.linux.free.fr/'
license=('GPL')
depends=('bzip2' 'lzo2' 'libgcrypt')
optdepends=('perl: for running some samples')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz"
-"patch-2.4.1_interim.patch.gz::http://sourceforge.net/tracker/download.php?group_id=65612&atid=511612&file_id=413935&aid=3312050")
-md5sums=('1e0e02d3c90cdaaaf2850eff25599fba'
- '006ab95d969f32771940a3115dea8199')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('727e0b266d761e4dfd48a6af759413cb')
options=('!libtool')
build() {
cd "$srcdir/$pkgname-$pkgver"
- patch -p2 < $srcdir/patch-2.4.1_interim.patch
+
./configure --prefix=/usr --sysconfdir=/etc
make
}
diff --git a/community/gedit-plugins/PKGBUILD b/community/gedit-plugins/PKGBUILD
index cb95763a3..12211f9ca 100644
--- a/community/gedit-plugins/PKGBUILD
+++ b/community/gedit-plugins/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 51128 2011-07-05 14:25:52Z ibiru $
+# $Id: PKGBUILD 52230 2011-07-22 09:30:43Z ibiru $
#Maintainer: Ionut Biru <ibiru@archlinux.org>
#Contributor: Hugo Doria <hugo@archlinux.org>
#Contributor: Sergej Chodarev <sergejx@centrum.sk>
@@ -6,12 +6,13 @@
pkgname=gedit-plugins
pkgver=3.0.5
-pkgrel=1
+pkgrel=2
pkgdesc="Set of plugins for gedit"
arch=('i686' 'x86_64')
license=('GPL')
url="http://live.gnome.org/GeditPlugins"
depends=('gedit' 'dbus-python')
+optdepends=('gucharmap: for charmap plugin')
makedepends=('intltool' 'gnome-doc-utils')
options=('!libtool' '!emptydirs')
install=gedit-plugins.install
diff --git a/community/gtk-gnutella/PKGBUILD b/community/gtk-gnutella/PKGBUILD
index d991ec063..fa9a562c3 100644
--- a/community/gtk-gnutella/PKGBUILD
+++ b/community/gtk-gnutella/PKGBUILD
@@ -1,19 +1,19 @@
-# $Id: PKGBUILD 42267 2011-03-15 22:06:14Z ebelanger $
+# $Id: PKGBUILD 52275 2011-07-23 01:33:22Z 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.96.9
+pkgver=0.97
pkgrel=1
pkgdesc="A Gnutella client written in C"
arch=('i686' 'x86_64')
url="http://gtk-gnutella.sourceforge.net/"
license=('GPL')
-depends=('gnutls>=2.4.1' 'gtk2' 'libxml2')
+depends=('gtk2')
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('77e1a66685f563c668d4bbf69e4db0bb')
-sha1sums=('4b9254a3d5152377ce65acf09d858c2b0bb4ca50')
+md5sums=('d44e1af3441fb07a5e5712b0d522fae5')
+sha1sums=('1b50790adc494d7023a7cf9319d7cdef1c9ab51e')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/community/i3status/PKGBUILD b/community/i3status/PKGBUILD
index 83c2a544f..9e174f2e7 100644
--- a/community/i3status/PKGBUILD
+++ b/community/i3status/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 27389 2010-09-22 23:16:02Z ttopper $
+# $Id: PKGBUILD 52225 2011-07-22 05:51:08Z ttopper $
# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de>
pkgname=i3status
-pkgver=2.2
+pkgver=2.3
pkgrel=1
pkgdesc="Generates status bar to use with dzen2 or xmobar"
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ makedepends=('asciidoc')
install=i3status.install
options=('docs')
source=(http://i3.zekjur.net/i3status/$pkgname-$pkgver.tar.bz2)
-md5sums=('07e0f44b6f40d48f976d6e3b977320c3')
+md5sums=('6a74863c525908be4465c0353ed5b999')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/community/kdenlive/PKGBUILD b/community/kdenlive/PKGBUILD
index 860b45f93..bce6212fc 100644
--- a/community/kdenlive/PKGBUILD
+++ b/community/kdenlive/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 51890 2011-07-17 20:51:02Z spupykin $
+# $Id: PKGBUILD 52254 2011-07-22 15:49:20Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Zuf <kontakt.zuf@gmail.com>
# Contributor: Darwin Bautista <djclue917@gmail.com>
pkgname=kdenlive
-pkgver=0.8
-pkgrel=3
+pkgver=0.8svn20110722
+pkgrel=1
pkgdesc="A non-linear video editor for Linux"
arch=('i686' 'x86_64')
url="http://www.kdenlive.org/"
@@ -13,8 +13,9 @@ license=('GPL')
depends=('kdebase-runtime' 'mlt' 'dvgrab' 'qjson' 'qimageblitz')
makedepends=('automoc4' 'cmake' 'gettext')
install=kdenlive.install
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
-md5sums=('26170b4360285e8a7bf53fd122d8854e')
+#source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+source=("http://arch.p5n.pp.ru/~sergej/dl/kdenlive-${pkgver}.tar.bz2")
+md5sums=('390fcbce02274ee99b2a6d6a234bef0c')
build() {
export LDFLAGS="$LDFLAGS -lX11"
diff --git a/community/luakit/PKGBUILD b/community/luakit/PKGBUILD
index 407c2c945..886d1c97b 100644
--- a/community/luakit/PKGBUILD
+++ b/community/luakit/PKGBUILD
@@ -2,24 +2,24 @@
# Contributor: J. W. Birdsong <jwbirdsong AT gmail DOT com>
pkgname=luakit
-pkgver=2011.05.06
-pkgrel=2
+pkgver=2011.07.22
+pkgrel=1
pkgdesc='luakit is a highly configurable, micro-browser framework based on the WebKit web content engine and the GTK+ toolkit."Stable" release'
arch=('i686' 'x86_64')
url='http://www.luakit.org/projects/luakit'
license=('GPL3')
-depends=('libwebkit' 'luafilesystem' )
+depends=('libwebkit' 'luafilesystem' 'libunique')
makedepends=('git' 'help2man')
options=(!makeflags)
conflicts=('luakit-git' 'luakit-develop-git')
install='luakit.install'
-source=("${pkgver}-r1.tar.gz::https://github.com/mason-larobina/luakit/tarball/${pkgver}-r1")
-md5sums=('ebf25ad1d37960ca8f70f13ebf45a874')
+source=("${pkgver}.tar.gz::https://github.com/mason-larobina/luakit/tarball/${pkgver}")
+md5sums=('f682275aa7ebc54beed187481dc4a1bc')
build() {
cd mason-larobina-luakit-*
- make PREFIX=/usr DESTDIR=${pkgdir} clean all
+ make PREFIX=/usr DESTDIR=${pkgdir} all
}
package() {
diff --git a/community/virtualbox/PKGBUILD b/community/virtualbox/PKGBUILD
index 589b5b720..59a8e93c9 100644
--- a/community/virtualbox/PKGBUILD
+++ b/community/virtualbox/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 52077 2011-07-19 22:16:29Z ibiru $
+# $Id: PKGBUILD 52263 2011-07-22 18:30:40Z ibiru $
#Maintainer: Ionut Biru <ibiru@archlinux.org>
pkgbase=virtualbox
pkgname=('virtualbox' 'virtualbox-archlinux-additions' 'virtualbox-archlinux-modules' 'virtualbox-sdk')
@@ -12,7 +12,7 @@ makedepends=('libstdc++5' 'bin86' 'dev86' 'iasl' 'libxslt' 'libxml2' 'libxcursor
'xorg-server-devel' 'xf86driproto' 'libxcomposite')
[[ $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
+ UserManual-$pkgver.pdf::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
change_default_driver_dir.patch)
@@ -58,7 +58,7 @@ package_virtualbox() {
mkdir -p "$pkgdir"/usr/{bin,lib/virtualbox/components,lib/virtualbox/ExtensionPacks,share/virtualbox/nls}
#doc
- install -m 0644 "$srcdir/UserManual.pdf" "$pkgdir/usr/share/virtualbox/UserManual.pdf"
+ install -m 0644 "$srcdir/UserManual-$pkgver.pdf" "$pkgdir/usr/share/virtualbox/UserManual.pdf"
#Binaries and Wrapper with Launchers
install -m 0755 VBox.sh "$pkgdir/usr/bin/VBox"
diff --git a/extra/audacious/PKGBUILD b/extra/audacious/PKGBUILD
index cfa168116..95f3bab04 100644
--- a/extra/audacious/PKGBUILD
+++ b/extra/audacious/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 132051 2011-07-19 15:33:15Z bisson $
+# $Id: PKGBUILD 132306 2011-07-22 16:28:25Z bisson $
# Contributor: Alexander Fehr <pizzapunk gmail com>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
pkgname=audacious
pkgver=3.0
-pkgrel=3
+pkgrel=5
pkgdesc='Lightweight, GTK-based advanced audio player focused on audio quality'
arch=('i686' 'x86_64')
url='http://audacious-media-player.org/'
license=('GPL3')
-depends=('gtk3' 'libmcs' 'dbus-glib' 'libguess' 'audacious-plugins' 'desktop-file-utils' 'hicolor-icon-theme')
+depends=('gtk3' 'libmcs' 'dbus-glib' 'libguess' 'libsm' 'audacious-plugins' 'desktop-file-utils' 'hicolor-icon-theme')
optdepends=('unzip: zipped skins support')
source=("http://distfiles.atheme.org/${pkgname}-${pkgver}.tar.gz")
sha1sums=('d32de719f5b09440d0f6c802a5140a32b3827475')
diff --git a/extra/libimobiledevice/PKGBUILD b/extra/libimobiledevice/PKGBUILD
index e7fa54a29..279afee1c 100644
--- a/extra/libimobiledevice/PKGBUILD
+++ b/extra/libimobiledevice/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 109895 2011-02-13 16:49:33Z ibiru $
+# $Id: PKGBUILD 132259 2011-07-22 09:16:48Z ibiru $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: Gabriel Martinez < reitaka at gmail dot com >
pkgname=libimobiledevice
-pkgver=1.1.0
+pkgver=1.1.1
pkgrel=1
pkgdesc="Is a software library that talks the protocols to support iPhone and iPod Touch devices on Linux"
url="http://libimobiledevice.org/"
@@ -14,7 +14,7 @@ makedepends=('swig' 'python2')
options=('!libtool')
source=(http://libimobiledevice.org/downloads/${pkgname}-${pkgver}.tar.bz2
swig-version-check.patch)
-md5sums=('b38bb70a41538a2ad593b0779651a636'
+md5sums=('cdc13037e822d9ac2e109536701d153a'
'8bb215e36fe0e08a72332c108c7842cc')
build() {
diff --git a/extra/libva/PKGBUILD b/extra/libva/PKGBUILD
index 36a228923..3996e0059 100644
--- a/extra/libva/PKGBUILD
+++ b/extra/libva/PKGBUILD
@@ -1,7 +1,7 @@
-# $Id: PKGBUILD 117421 2011-04-01 18:27:40Z ibiru $
+# $Id: PKGBUILD 125889 2011-05-31 13:21:31Z ibiru $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
pkgname=libva
-pkgver=1.0.12
+pkgver=1.0.13
pkgrel=1
pkgdesc="Video Acceleration (VA) API for Linux"
arch=('i686' 'x86_64')
@@ -13,12 +13,12 @@ optdepends=('vdpau-video: VDPAU backend for VA API')
options=('!libtool')
source=(http://cgit.freedesktop.org/libva/snapshot/${pkgname}-${pkgver}.tar.bz2
libva-dont-install-tests.patch)
-md5sums=('84408a0746a63b8cf308dc7b9f2451cf'
- '0a9bd14c36545c0e9819dfe32ea80f41')
+md5sums=('221207c386129e02fc05827147af7aa6'
+ 'd13d1868f2db99bedec1057bbfbd9c61')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
- patch -Np0 -i "${srcdir}/libva-dont-install-tests.patch"
+ patch -Np1 -i "${srcdir}/libva-dont-install-tests.patch"
./autogen.sh
./configure --prefix=/usr \
--enable-i965-driver \
diff --git a/extra/libva/libva-dont-install-tests.patch b/extra/libva/libva-dont-install-tests.patch
index 43e4cbaa7..97f33e32d 100644
--- a/extra/libva/libva-dont-install-tests.patch
+++ b/extra/libva/libva-dont-install-tests.patch
@@ -1,8 +1,6 @@
-Don't install some useeless tests programs
-
-
---- test/basic/Makefile.am~ 2010-02-12 09:42:10.000000000 -0500
-+++ test/basic/Makefile.am 2010-03-10 13:36:50.449834525 -0500
+diff -Nur libva-1.0.13.orig/test/basic/Makefile.am libva-1.0.13/test/basic/Makefile.am
+--- libva-1.0.13.orig/test/basic/Makefile.am 2011-05-31 13:10:55.021797329 +0000
++++ libva-1.0.13/test/basic/Makefile.am 2011-05-31 13:11:52.252331062 +0000
@@ -20,7 +20,7 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -11,9 +9,10 @@ Don't install some useeless tests programs
+check_PROGRAMS = test_01 test_02 test_03 test_04 test_05 test_06 \
test_07 test_08 test_09 test_10 test_11
- AM_CFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/x11 -DIN_LIBVA
---- test/decode/Makefile.am~ 2010-02-12 09:42:10.000000000 -0500
-+++ test/decode/Makefile.am 2010-03-10 13:37:09.636843464 -0500
+ AM_CFLAGS = -I$(top_srcdir)/va -I$(top_srcdir)/src/x11
+diff -Nur libva-1.0.13.orig/test/decode/Makefile.am libva-1.0.13/test/decode/Makefile.am
+--- libva-1.0.13.orig/test/decode/Makefile.am 2011-05-31 13:10:55.021797329 +0000
++++ libva-1.0.13/test/decode/Makefile.am 2011-05-31 13:12:12.175851534 +0000
@@ -20,7 +20,7 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -21,21 +20,23 @@ Don't install some useeless tests programs
-bin_PROGRAMS = mpeg2vldemo
+check_PROGRAMS = mpeg2vldemo
- AM_CFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/x11 -DIN_LIBVA
+ AM_CFLAGS = -I$(top_srcdir)/va -I$(top_srcdir)/src/x11
---- test/encode/Makefile.am~ 2010-02-12 09:42:10.000000000 -0500
-+++ test/encode/Makefile.am 2010-03-10 13:37:26.701846294 -0500
+diff -Nur libva-1.0.13.orig/test/encode/Makefile.am libva-1.0.13/test/encode/Makefile.am
+--- libva-1.0.13.orig/test/encode/Makefile.am 2011-05-31 13:10:55.021797329 +0000
++++ libva-1.0.13/test/encode/Makefile.am 2011-05-31 13:12:35.499399421 +0000
@@ -20,7 +20,7 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--bin_PROGRAMS = h264encode
-+check_PROGRAMS = h264encode
+-bin_PROGRAMS = h264encode avcenc
++check_PROGRAMS = h264encode avcenc
- AM_CFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/x11 -DIN_LIBVA
+ AM_CFLAGS = -I$(top_srcdir)/va -I$(top_srcdir)/src/x11
---- test/putsurface/Makefile.am~ 2010-03-10 13:18:55.270697040 -0500
-+++ test/putsurface/Makefile.am 2010-03-10 13:38:08.106713556 -0500
+diff -Nur libva-1.0.13.orig/test/putsurface/Makefile.am libva-1.0.13/test/putsurface/Makefile.am
+--- libva-1.0.13.orig/test/putsurface/Makefile.am 2011-05-31 13:10:55.021797329 +0000
++++ libva-1.0.13/test/putsurface/Makefile.am 2011-05-31 13:12:48.836190403 +0000
@@ -20,7 +20,7 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -43,5 +44,5 @@ Don't install some useeless tests programs
-bin_PROGRAMS = putsurface
+check_PROGRAMS = putsurface
- AM_CFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/x11 -DIN_LIBVA
+ AM_CFLAGS = -I$(top_srcdir)/va -I$(top_srcdir)/src/x11
diff --git a/extra/lm_sensors/PKGBUILD b/extra/lm_sensors/PKGBUILD
index fa90cc256..809f53c2e 100644
--- a/extra/lm_sensors/PKGBUILD
+++ b/extra/lm_sensors/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 123402 2011-05-11 03:51:18Z eric $
+# $Id: PKGBUILD 132325 2011-07-23 00:44:08Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>
pkgname=lm_sensors
-pkgver=3.3.0
-pkgrel=3
+pkgver=3.3.1
+pkgrel=1
pkgdesc="Collection of user space tools for general SMBus access and hardware monitoring"
arch=('i686' 'x86_64')
url="http://www.lm-sensors.org/"
@@ -14,37 +14,32 @@ optdepends=('rrdtool: for logging with sensord')
backup=('etc/sensors3.conf' 'etc/conf.d/healthd' 'etc/conf.d/sensord')
options=('!emptydirs')
source=(http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-${pkgver}.tar.bz2 \
- sensors.rc fancontrol.rc sensors-detect.patch healthd healthd.conf healthd.rc \
- sensord.conf sensord.rc daemonarg.patch \
- changeset_lm-sensors_trunk_prog_detect_sensors-detect_r5964.diff)
-md5sums=('5eb18d7531ead4f54f28a1133a606535'
+ sensors.rc fancontrol.rc healthd healthd.conf healthd.rc sensord.conf \
+ sensord.rc daemonarg.patch)
+md5sums=('8c0eebda8524fc87da1393b4564d279b'
'c370f5e620bfe41113354a1e22c0c18c'
'232bedf043dd5dedde82df1a399c682c'
- '47c40b381d1f25d6634ae84cecf35f33'
'6549050897c237514aeaa2bb6cfd29ea'
'f8af587038b0e2a89c441f7eeaa5e640'
'970408d2e509dc4138927020efefe323'
'96a8dd468e81d455ec9b165bdf33e0b7'
'41a5c20854bbff00ea7174bd2276b736'
- '40c8eb16af8249a0f1d851fc1057ea15'
- '2f1c004bd525bdc9b2495503a77d375a')
-sha1sums=('16c13a186557164fa51459a02209b120c0335f96'
+ '40c8eb16af8249a0f1d851fc1057ea15')
+sha1sums=('cb819e5a93adb36ef00e6d3c5363f5f474efa78a'
'b2e664b9b87759991f02d0a1e8cac5e95098c0a5'
'a068ac0a3115a6191a487e11422506baa922b40a'
- '47095a32a918d6be50bd8daa8aaa9c24940d60e9'
'78b5cd36c3cb8e98b972cdd8c4a12687d79a79a8'
'6c4e8a2d89dd2fd3ca2f0f4f3b1230111e01b0fc'
'e662881f5d3f3f35a1bc97ba45d2c471dd28c37f'
'de8d4d65406815c389f8a04e2a8508a1ae6749c8'
'72a60251d1d55a67307dab4105d9f3f01a080af4'
- '34241388c4001bfb6e49b7e10da1217e29a258d6'
- '0de66445805adaf65935764da9974df1db125865')
+ '34241388c4001bfb6e49b7e10da1217e29a258d6')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- patch -p1 < ../sensors-detect.patch
+ sed -i -e 's|/etc/sysconfig|/etc/conf.d|' \
+ -e 's|/etc/init.d/lm_sensors|/etc/rc.d/sensors|' prog/detect/sensors-detect
patch -p1 < ../daemonarg.patch
- patch -p2 < ../changeset_lm-sensors_trunk_prog_detect_sensors-detect_r5964.diff
make PREFIX=/usr
}
diff --git a/extra/nasm/PKGBUILD b/extra/nasm/PKGBUILD
index 49b19633f..9085d5e61 100644
--- a/extra/nasm/PKGBUILD
+++ b/extra/nasm/PKGBUILD
@@ -1,17 +1,17 @@
-# $Id: PKGBUILD 119611 2011-04-12 16:49:38Z eric $
+# $Id: PKGBUILD 132063 2011-07-19 17:35:27Z stephane $
# Maintainer: Aaron Griffin <aaron@archlinux.org>
pkgbase=nasm
pkgname=('nasm' 'nasm-doc')
-pkgver=2.09.08
+pkgver=2.09.10
pkgrel=1
arch=('i686' 'x86_64')
url="http://www.nasm.us"
license=('BSD')
makedepends=('ghostscript')
source=(http://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgbase}-${pkgver}.tar.bz2)
-md5sums=('6abfa388a74ee47e163fdb30ecfd40f9')
-sha1sums=('37ce7d945a41276eab255b061c88c2ad2f7979f6')
+md5sums=('15c79dcb5838870a0fac15feb5fade66')
+sha1sums=('ca57a7454b29e18c64018e49cdf5c832937497ab')
build() {
cd "${srcdir}/${pkgbase}-${pkgver}"
diff --git a/extra/telepathy-glib/PKGBUILD b/extra/telepathy-glib/PKGBUILD
index bb313eef6..27b968574 100644
--- a/extra/telepathy-glib/PKGBUILD
+++ b/extra/telepathy-glib/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 128070 2011-06-21 15:42:15Z ibiru $
+# $Id: PKGBUILD 132254 2011-07-22 09:07:47Z ibiru $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
# Contributor: Kessia 'even' Pinheiro <kessiapinheiro at gmail.com
# Contributor: Bjorn Lindeijer <bjorn lindeijer nl>
pkgname=telepathy-glib
-pkgver=0.14.8
+pkgver=0.14.9
pkgrel=1
pkgdesc="GLib bindings for the Telepathy D-Bus protocol"
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ options=('!libtool' '!emptydirs')
depends=('dbus-glib')
makedepends=('libxslt' 'vala' 'gobject-introspection')
source=("http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
-md5sums=('07dae468cd6b55a2bddbd0b3c80f3796')
+md5sums=('212335854fa14b9d6319525ec7546d2f')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/extra/telepathy-mission-control/PKGBUILD b/extra/telepathy-mission-control/PKGBUILD
index 534995696..76e77def9 100644
--- a/extra/telepathy-mission-control/PKGBUILD
+++ b/extra/telepathy-mission-control/PKGBUILD
@@ -1,20 +1,20 @@
-# $Id: PKGBUILD 123605 2011-05-11 18:21:04Z ibiru $
+# $Id: PKGBUILD 132301 2011-07-22 16:07:21Z ibiru $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
# Contributor: Ju Liu <liuju86 at gmail dot com>
# Contributor: Bjorn Lindeijer <bjorn lindeijer nl>
# Contributor: Andreas Zwinkau <beza1e1@web.de>
pkgname=telepathy-mission-control
-pkgver=5.7.11
+pkgver=5.8.0
pkgrel=1
pkgdesc="A Telepathy component providing abstraction of some of the details of connection managers."
arch=('i686' 'x86_64')
-url="http://mission-control.sourceforge.net/"
+url="http://telepathy.freedesktop.org/wiki/Mission Control"
license=('LGPL2.1')
depends=('telepathy-glib' 'libgnome-keyring')
makedepends=('libxslt' 'python2')
options=('!libtool')
source=(http://telepathy.freedesktop.org/releases/telepathy-mission-control/$pkgname-$pkgver.tar.gz)
-md5sums=('d4b37aa43f391c34d033b1af5ab32e6d')
+md5sums=('a708767687a6515058ee1a3654eda5c1')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/extra/transmission/PKGBUILD b/extra/transmission/PKGBUILD
index 5e27ee382..5b91d09be 100644
--- a/extra/transmission/PKGBUILD
+++ b/extra/transmission/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 129943 2011-06-30 15:04:13Z ibiru $
+# $Id: PKGBUILD 132249 2011-07-22 09:01:42Z ibiru $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
pkgbase=transmission
pkgname=('transmission-cli' 'transmission-gtk' 'transmission-qt')
-pkgver=2.32
+pkgver=2.33
pkgrel=1
arch=('i686' 'x86_64')
url="http://www.transmissionbt.com/"
@@ -11,15 +11,13 @@ license=('MIT')
makedepends=('gtk2' 'intltool' 'curl' 'libnotify' 'qt' 'libevent' 'libcanberra' 'dbus-glib')
source=(http://mirrors.m0k.org/transmission/files/${pkgbase}-${pkgver}.tar.bz2
transmissiond transmissiond.conf)
-md5sums=('cac5d0e07b92e563b34b61de5a6235c7'
+md5sums=('082217a65713ac879410c622cbe6eb26'
'08875299e3fbb68fc546c1f350ac1f06'
'be39806c35b7544856fa4070b00fc960')
build() {
cd "${srcdir}/${pkgbase}-${pkgver}"
- export CFLAGS="$CFLAGS -fno-strict-aliasing"
-
- ./configure --prefix=/usr --disable-gconf2
+ ./configure --prefix=/usr
make
pushd qt
qmake qtr.pro
diff --git a/testing/libgpg-error/PKGBUILD b/testing/libgpg-error/PKGBUILD
new file mode 100644
index 000000000..b0cbef1c0
--- /dev/null
+++ b/testing/libgpg-error/PKGBUILD
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 132298 2011-07-22 15:47:59Z andyrtr $
+# Maintainer: judd <jvinet@zeroflux.org>
+
+pkgname=libgpg-error
+pkgver=1.10
+pkgrel=1
+pkgdesc="Support library for libgcrypt"
+arch=(i686 x86_64)
+url="http://www.gnupg.org"
+license=('LGPL')
+depends=('glibc' 'sh')
+options=(!libtool)
+source=(ftp://ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2)
+ #ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('736a03daa9dc5873047d4eb4a9c22a16')
+
+
+build() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+check() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make check
+}
+
+package() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}/" install
+
+ # Move dynamic libraries to /lib
+ install -d -m755 "${pkgdir}"/lib/
+ mv "${pkgdir}"/usr/lib/libgpg-error.so* "${pkgdir}"/lib/
+ ln -sf /lib/libgpg-error.so "${pkgdir}"/usr/lib/libgpg-error.so
+}