diff options
Diffstat (limited to 'extra')
-rw-r--r-- | extra/ffmpeg/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/libxkbcommon/PKGBUILD | 25 | ||||
-rw-r--r-- | extra/pulseaudio/PKGBUILD | 8 | ||||
-rwxr-xr-x | extra/pulseaudio/pulseaudio.install | 9 | ||||
-rw-r--r-- | extra/uim/PKGBUILD | 10 |
5 files changed, 36 insertions, 22 deletions
diff --git a/extra/ffmpeg/PKGBUILD b/extra/ffmpeg/PKGBUILD index 53f3f7ea9..d036a3e32 100644 --- a/extra/ffmpeg/PKGBUILD +++ b/extra/ffmpeg/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 181002 2013-03-29 15:14:37Z bpiotrowski $ +# $Id: PKGBUILD 181138 2013-04-01 07:43:20Z bpiotrowski $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> # Contributor: Paul Mattal <paul@archlinux.org> pkgname=ffmpeg pkgver=1.2 -pkgrel=1 +pkgrel=2 epoch=1 pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix" arch=('i686' 'x86_64') @@ -29,6 +29,7 @@ build() { --disable-debug \ --disable-static \ --enable-avresample \ + --enable-dxva2 \ --enable-fontconfig \ --enable-gpl \ --enable-libass \ @@ -54,6 +55,7 @@ build() { --enable-postproc \ --enable-runtime-cpudetect \ --enable-shared \ + --enable-vdpau \ --enable-version3 \ --enable-x11grab diff --git a/extra/libxkbcommon/PKGBUILD b/extra/libxkbcommon/PKGBUILD index 53ca992b1..ae4d1bdff 100644 --- a/extra/libxkbcommon/PKGBUILD +++ b/extra/libxkbcommon/PKGBUILD @@ -1,28 +1,29 @@ -# $Id: PKGBUILD 179075 2013-03-03 00:51:04Z heftig $ -# Maintainer: Daniel Micay <danielmicay@gmail.com> +# $Id: PKGBUILD 181161 2013-04-01 20:10:49Z heftig $ +# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> +# Contributor: Daniel Micay <danielmicay@gmail.com> # Contributor: Mladen Pejakovic <pejakm@gmail.com> pkgname=libxkbcommon -pkgver=0.2.0 -pkgrel=3 +pkgver=0.3.0 +pkgrel=1 pkgdesc="Keyboard handling library using XKB data" arch=(i686 x86_64) url="http://xkbcommon.org/" -license=('custom') -depends=(glibc) +license=(custom) +depends=(xkeyboard-config) makedepends=(doxygen xorg-util-macros) -source=("http://xkbcommon.org/download/$pkgname-$pkgver.tar.bz2") -md5sums=('2be3d4a255d02c7d46fc6a9486f21f6a') options=('!libtool') +source=("http://xkbcommon.org/download/$pkgname-$pkgver.tar.xz") +md5sums=('22a046100738f99b4cc0297aa210f4e4') build() { - cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr + cd $pkgname-$pkgver + ./configure --prefix=/usr --disable-static make } package() { - cd "$srcdir/$pkgname-$pkgver" + cd $pkgname-$pkgver make DESTDIR="$pkgdir" install - install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } diff --git a/extra/pulseaudio/PKGBUILD b/extra/pulseaudio/PKGBUILD index 489dfeebd..2206d6299 100644 --- a/extra/pulseaudio/PKGBUILD +++ b/extra/pulseaudio/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 173315 2012-12-18 20:30:41Z heftig $ +# $Id: PKGBUILD 181159 2013-04-01 19:36:12Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> # Contributor: Corrado Primier <bardo@aur.archlinux.org> @@ -8,7 +8,7 @@ pkgbase=pulseaudio pkgname=(pulseaudio libpulse) pkgdesc="A featureful, general-purpose sound server" pkgver=3.0 -pkgrel=2 +pkgrel=3 arch=(i686 x86_64) url="http://www.freedesktop.org/wiki/Software/PulseAudio" license=(GPL LGPL) @@ -57,6 +57,10 @@ package_pulseaudio() { cd $pkgbase-$pkgver make -j1 DESTDIR="$pkgdir" install + # Disable autospawn by default + sed -e '/autospawn/iautospawn=no' \ + -i "$pkgdir/etc/pulse/client.conf" + # Speed up pulseaudio shutdown # Lower resample quality, saves CPU sed -e '/exit-idle-time/iexit-idle-time=0' \ diff --git a/extra/pulseaudio/pulseaudio.install b/extra/pulseaudio/pulseaudio.install index 0e599b856..9de8b0e8f 100755 --- a/extra/pulseaudio/pulseaudio.install +++ b/extra/pulseaudio/pulseaudio.install @@ -20,6 +20,15 @@ post_upgrade() { with changes to the packaged files in /etc/pulse/. Otherwise, PulseAudio may refuse to start due to configuration errors. MES + if (( $(vercmp $2 3.0-3) < 0 )); then + cat << MES + +>>> Autospawn is now disabled by default. If you need to run PulseAudio outside + of an X session, either: + - Enable autospawn in client.conf, or + - Start it manually by executing 'pulseaudio --start' +MES + fi } # vim:set ts=2 sw=2 et: diff --git a/extra/uim/PKGBUILD b/extra/uim/PKGBUILD index f5b19e1ad..a4ec0be5e 100644 --- a/extra/uim/PKGBUILD +++ b/extra/uim/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 179003 2013-03-01 10:26:38Z andrea $ +# $Id: PKGBUILD 181132 2013-03-31 23:20:08Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: damir <damir@archlinux.org> pkgname=uim -pkgver=1.8.4 -pkgrel=3 +pkgver=1.8.5 +pkgrel=1 pkgdesc='Multilingual input method library' url='http://code.google.com/p/uim/' license=('custom:BSD') @@ -17,15 +17,13 @@ optdepends=('qt4: immodule and helper applications' 'gnome-panel: gnome applet indicator') options=('!libtool') source=("http://uim.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") -sha1sums=('4f40912e4d4a85d9967044caef9e1ef349f3d6f2') +sha1sums=('13178e0ad9e9196e3fdb0bb9806e4add8fe3a8e5') install=install build() { cd "${srcdir}/${pkgname}-${pkgver}" - source /etc/profile.d/qt4.sh - ./configure \ --prefix=/usr \ --libexecdir=/usr/lib/uim \ |