[arch-commits] Commit in xine-lib/repos (6 files)

2016-03-07 Thread Jan de Groot
Date: Monday, March 7, 2016 @ 16:50:56
  Author: jgc
Revision: 261167

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xine-lib/repos/staging-i686/
  xine-lib/repos/staging-i686/PKGBUILD
(from rev 261166, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-i686/xine-lib-ffmpeg3.patch
(from rev 261166, xine-lib/trunk/xine-lib-ffmpeg3.patch)
  xine-lib/repos/staging-x86_64/
  xine-lib/repos/staging-x86_64/PKGBUILD
(from rev 261166, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-x86_64/xine-lib-ffmpeg3.patch
(from rev 261166, xine-lib/trunk/xine-lib-ffmpeg3.patch)

---+
 staging-i686/PKGBUILD |   55 
 staging-i686/xine-lib-ffmpeg3.patch   |   55 
 staging-x86_64/PKGBUILD   |   55 
 staging-x86_64/xine-lib-ffmpeg3.patch |   55 
 4 files changed, 220 insertions(+)

Copied: xine-lib/repos/staging-i686/PKGBUILD (from rev 261166, 
xine-lib/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-07 15:50:56 UTC (rev 261167)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=xine-lib
+pkgver=1.2.6
+pkgrel=9
+pkgdesc="A multimedia playback engine"
+arch=('i686' 'x86_64')
+url="http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 'libdvdnav'
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu' 
'gdk-pixbuf2')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libdvdnav: for using the dvd plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin' \
+'smbclient: for using the samba plugin' \
+'gdk-pixbuf2: for using the gdk-pixbuf plugin')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
 xine-lib-ffmpeg3.patch)
+sha1sums=('ac929eef2b7bf5c27699bbed612b953a01fccba5'
+  'b4466616bb17142aef8aa1bb80fff67cd2d0d15d')
+
+prepare() {
+  cd $pkgname-$pkgver
+# Fix build with ffmpeg 3.0 (Gentoo)
+  patch -p1 -i ../xine-lib-ffmpeg3.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--with-external-dvdnav \
+--disable-optimizations 
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: xine-lib/repos/staging-i686/xine-lib-ffmpeg3.patch (from rev 261166, 
xine-lib/trunk/xine-lib-ffmpeg3.patch)
===
--- staging-i686/xine-lib-ffmpeg3.patch (rev 0)
+++ staging-i686/xine-lib-ffmpeg3.patch 2016-03-07 15:50:56 UTC (rev 261167)
@@ -0,0 +1,55 @@
+Index: xine-lib-1.2.6/src/combined/ffmpeg/ff_audio_decoder.c
+===
+--- xine-lib-1.2.6.orig/src/combined/ffmpeg/ff_audio_decoder.c
 xine-lib-1.2.6/src/combined/ffmpeg/ff_audio_decoder.c
+@@ -590,7 +590,7 @@ static int ff_audio_decode (ff_audio_dec
+   int got_frame;
+   float gain = this->class->gain;
+   if (!this->av_frame)
+-this->av_frame = avcodec_alloc_frame ();
++this->av_frame = av_frame_alloc ();
+ 
+   consumed = avcodec_decode_audio4 (this->context, this->av_frame, 
_frame, );
+   if ((consumed >= 0) && got_frame) {
+@@ -1071,7 +1071,7 @@ static void ff_audio_reset (audio_decode
+   /* try to reset the wma decoder */
+   if( this->decoder_ok ) {
+ #if AVAUDIO > 3
+-avcodec_free_frame (>av_frame);
++av_frame_free (>av_frame);
+ #endif
+ pthread_mutex_lock (_lock);
+ avcodec_close (this->context);
+@@ -1105,7 +1105,7 @@ static void ff_audio_dispose (audio_deco
+ 
+   if( this->context && this->decoder_ok ) {
+ #if AVAUDIO > 3
+-avcodec_free_frame (>av_frame);
++av_frame_free (>av_frame);
+ #endif
+ pthread_mutex_lock (_lock);

[arch-commits] Commit in xine-lib/repos (6 files)

2016-02-17 Thread Antonio Rojas
Date: Wednesday, February 17, 2016 @ 09:00:15
  Author: arojas
Revision: 259889

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xine-lib/repos/staging-i686/
  xine-lib/repos/staging-i686/PKGBUILD
(from rev 259888, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-i686/xine-lib-ffmpeg3.patch
(from rev 259888, xine-lib/trunk/xine-lib-ffmpeg3.patch)
  xine-lib/repos/staging-x86_64/
  xine-lib/repos/staging-x86_64/PKGBUILD
(from rev 259888, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-x86_64/xine-lib-ffmpeg3.patch
(from rev 259888, xine-lib/trunk/xine-lib-ffmpeg3.patch)

---+
 staging-i686/PKGBUILD |   55 
 staging-i686/xine-lib-ffmpeg3.patch   |   55 
 staging-x86_64/PKGBUILD   |   55 
 staging-x86_64/xine-lib-ffmpeg3.patch |   55 
 4 files changed, 220 insertions(+)

Copied: xine-lib/repos/staging-i686/PKGBUILD (from rev 259888, 
xine-lib/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-02-17 08:00:15 UTC (rev 259889)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=xine-lib
+pkgver=1.2.6
+pkgrel=8
+pkgdesc="A multimedia playback engine"
+arch=('i686' 'x86_64')
+url="http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 'libdvdnav'
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu' 
'gdk-pixbuf2')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libdvdnav: for using the dvd plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin' \
+'smbclient: for using the samba plugin' \
+'gdk-pixbuf2: for using the gdk-pixbuf plugin')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
 xine-lib-ffmpeg3.patch)
+sha1sums=('ac929eef2b7bf5c27699bbed612b953a01fccba5'
+  'b4466616bb17142aef8aa1bb80fff67cd2d0d15d')
+
+prepare() {
+  cd $pkgname-$pkgver
+# Fix build with ffmpeg 3.0 (Gentoo)
+  patch -p1 -i ../xine-lib-ffmpeg3.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--with-external-dvdnav \
+--disable-optimizations 
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: xine-lib/repos/staging-i686/xine-lib-ffmpeg3.patch (from rev 259888, 
xine-lib/trunk/xine-lib-ffmpeg3.patch)
===
--- staging-i686/xine-lib-ffmpeg3.patch (rev 0)
+++ staging-i686/xine-lib-ffmpeg3.patch 2016-02-17 08:00:15 UTC (rev 259889)
@@ -0,0 +1,55 @@
+Index: xine-lib-1.2.6/src/combined/ffmpeg/ff_audio_decoder.c
+===
+--- xine-lib-1.2.6.orig/src/combined/ffmpeg/ff_audio_decoder.c
 xine-lib-1.2.6/src/combined/ffmpeg/ff_audio_decoder.c
+@@ -590,7 +590,7 @@ static int ff_audio_decode (ff_audio_dec
+   int got_frame;
+   float gain = this->class->gain;
+   if (!this->av_frame)
+-this->av_frame = avcodec_alloc_frame ();
++this->av_frame = av_frame_alloc ();
+ 
+   consumed = avcodec_decode_audio4 (this->context, this->av_frame, 
_frame, );
+   if ((consumed >= 0) && got_frame) {
+@@ -1071,7 +1071,7 @@ static void ff_audio_reset (audio_decode
+   /* try to reset the wma decoder */
+   if( this->decoder_ok ) {
+ #if AVAUDIO > 3
+-avcodec_free_frame (>av_frame);
++av_frame_free (>av_frame);
+ #endif
+ pthread_mutex_lock (_lock);
+ avcodec_close (this->context);
+@@ -1105,7 +1105,7 @@ static void ff_audio_dispose (audio_deco
+ 
+   if( this->context && this->decoder_ok ) {
+ #if AVAUDIO > 3
+-avcodec_free_frame (>av_frame);
++av_frame_free (>av_frame);
+ #endif
+ 

[arch-commits] Commit in xine-lib/repos (6 files)

2013-09-24 Thread Eric Bélanger
Date: Tuesday, September 24, 2013 @ 22:09:11
  Author: eric
Revision: 195056

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xine-lib/repos/extra-i686/PKGBUILD
(from rev 195055, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/extra-x86_64/PKGBUILD
(from rev 195055, xine-lib/trunk/PKGBUILD)
Deleted:
  xine-lib/repos/extra-i686/PKGBUILD
  xine-lib/repos/extra-i686/accel_vaapi.h
  xine-lib/repos/extra-x86_64/PKGBUILD
  xine-lib/repos/extra-x86_64/accel_vaapi.h

+
 /PKGBUILD  |   92 +
 extra-i686/PKGBUILD|   50 ---
 extra-i686/accel_vaapi.h   |  135 ---
 extra-x86_64/PKGBUILD  |   50 ---
 extra-x86_64/accel_vaapi.h |  135 ---
 5 files changed, 92 insertions(+), 370 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-09-24 20:08:30 UTC (rev 195055)
+++ extra-i686/PKGBUILD 2013-09-24 20:09:11 UTC (rev 195056)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=xine-lib
-pkgver=1.2.3
-pkgrel=4
-pkgdesc=A multimedia playback engine
-arch=('i686' 'x86_64')
-url=http://www.xine-project.org;
-license=('LGPL' 'GPL')
-depends=('libxvmc' 'ffmpeg' 'libxinerama')
-makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
- 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad'
- 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
-optdepends=('imagemagick: for using the imagemagick plugin' \
-'jack: for using the jack plugin' \
-'vcdimager: for using the vcd plugin' \
-'glu: for using the opengl plugin' \
-'wavpack: for using the wavpack plugin' \
-'faad2: for using the faad plugin' \
-'libmng: for using the mng plugin' \
-'aalib: for using the aalib plugin' \
-'libmodplug: for using the modplug plugin' \
-'libdca: for using the dca plugin' \
-'a52dec: for using the a52 plugin' \
-'libmad: for using the mp3 plugin' \
-'libmpcdec: for using the musepack plugin' \
-'libcaca: for using the caca plugin' \
-'libbluray: for using the bluray plugin' \
-'gnome-vfs: for using the gnome-vfs plugin' \
-'libvdpau: for using the VDPAU plugin')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
 accel_vaapi.h)
-sha1sums=('6f9ef4ba75688659052d21448d46527db2b77e57'
-  '08ed9947ef919c71c87151baa8fc0ce7d8f72050')
-
-prepare() {
-  cp accel_vaapi.h ${pkgname}-${pkgver}/src/xine-engine/
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xine-lib/repos/extra-i686/PKGBUILD (from rev 195055, 
xine-lib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-09-24 20:09:11 UTC (rev 195056)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.4
+pkgrel=1
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad'
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin' \
+'smbclient: for using the samba plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('32267c5fcaa1439a5fbf7606d27dc4fafba9e504')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  

[arch-commits] Commit in xine-lib/repos (6 files)

2013-08-15 Thread Eric Bélanger
Date: Friday, August 16, 2013 @ 00:10:03
  Author: eric
Revision: 193088

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xine-lib/repos/staging-i686/
  xine-lib/repos/staging-i686/PKGBUILD
(from rev 193087, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-i686/accel_vaapi.h
(from rev 193087, xine-lib/trunk/accel_vaapi.h)
  xine-lib/repos/staging-x86_64/
  xine-lib/repos/staging-x86_64/PKGBUILD
(from rev 193087, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-x86_64/accel_vaapi.h
(from rev 193087, xine-lib/trunk/accel_vaapi.h)

--+
 staging-i686/PKGBUILD|   50 +++
 staging-i686/accel_vaapi.h   |  135 +
 staging-x86_64/PKGBUILD  |   50 +++
 staging-x86_64/accel_vaapi.h |  135 +
 4 files changed, 370 insertions(+)

Copied: xine-lib/repos/staging-i686/PKGBUILD (from rev 193087, 
xine-lib/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-08-15 22:10:03 UTC (rev 193088)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.3
+pkgrel=4
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad'
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
 accel_vaapi.h)
+sha1sums=('6f9ef4ba75688659052d21448d46527db2b77e57'
+  '08ed9947ef919c71c87151baa8fc0ce7d8f72050')
+
+prepare() {
+  cp accel_vaapi.h ${pkgname}-${pkgver}/src/xine-engine/
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: xine-lib/repos/staging-i686/accel_vaapi.h (from rev 193087, 
xine-lib/trunk/accel_vaapi.h)
===
--- staging-i686/accel_vaapi.h  (rev 0)
+++ staging-i686/accel_vaapi.h  2013-08-15 22:10:03 UTC (rev 193088)
@@ -0,0 +1,135 @@
+/*
+ * Copyright (C) 2008 the xine project
+ *
+ * This file is part of xine, a free video player.
+ *
+ * xine is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * xine is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
+ *
+ *
+ * Common acceleration definitions for vdpau
+ *
+ *
+ */
+
+#ifndef HAVE_XINE_ACCEL_VAAPI_H
+#define HAVE_XINE_ACCEL_VAAPI_H
+
+#ifdef __cplusplus
+extern C {
+#endif
+
+#ifdef HAVE_CONFIG_H
+#include config.h
+#endif
+
+#include va/va_x11.h
+#include pthread.h
+#ifdef HAVE_FFMPEG_AVUTIL_H
+#  include avcodec.h
+#else
+#  include libavcodec/avcodec.h
+#endif
+
+#if LIBAVCODEC_VERSION_MAJOR = 53 || (LIBAVCODEC_VERSION_MAJOR == 52  
LIBAVCODEC_VERSION_MINOR = 32)
+#  define AVVIDEO 2
+#else
+#  define AVVIDEO 1
+#  define pp_context   pp_context_t
+#  define pp_mode  pp_mode_t
+#endif
+
+#define NUM_OUTPUT_SURFACES 22
+
+#define SURFACE_FREE0
+#define SURFACE_ALOC1
+#define SURFACE_RELEASE  

[arch-commits] Commit in xine-lib/repos (6 files)

2013-08-06 Thread Eric Bélanger
Date: Tuesday, August 6, 2013 @ 23:18:17
  Author: eric
Revision: 192189

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xine-lib/repos/staging-i686/
  xine-lib/repos/staging-i686/PKGBUILD
(from rev 192188, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-i686/accel_vaapi.h
(from rev 192188, xine-lib/trunk/accel_vaapi.h)
  xine-lib/repos/staging-x86_64/
  xine-lib/repos/staging-x86_64/PKGBUILD
(from rev 192188, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-x86_64/accel_vaapi.h
(from rev 192188, xine-lib/trunk/accel_vaapi.h)

--+
 staging-i686/PKGBUILD|   50 +++
 staging-i686/accel_vaapi.h   |  135 +
 staging-x86_64/PKGBUILD  |   50 +++
 staging-x86_64/accel_vaapi.h |  135 +
 4 files changed, 370 insertions(+)

Copied: xine-lib/repos/staging-i686/PKGBUILD (from rev 192188, 
xine-lib/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-08-06 21:18:17 UTC (rev 192189)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.3
+pkgrel=3
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad'
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
 accel_vaapi.h)
+sha1sums=('6f9ef4ba75688659052d21448d46527db2b77e57'
+  '08ed9947ef919c71c87151baa8fc0ce7d8f72050')
+
+prepare() {
+  cp accel_vaapi.h ${pkgname}-${pkgver}/src/xine-engine/
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: xine-lib/repos/staging-i686/accel_vaapi.h (from rev 192188, 
xine-lib/trunk/accel_vaapi.h)
===
--- staging-i686/accel_vaapi.h  (rev 0)
+++ staging-i686/accel_vaapi.h  2013-08-06 21:18:17 UTC (rev 192189)
@@ -0,0 +1,135 @@
+/*
+ * Copyright (C) 2008 the xine project
+ *
+ * This file is part of xine, a free video player.
+ *
+ * xine is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * xine is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
+ *
+ *
+ * Common acceleration definitions for vdpau
+ *
+ *
+ */
+
+#ifndef HAVE_XINE_ACCEL_VAAPI_H
+#define HAVE_XINE_ACCEL_VAAPI_H
+
+#ifdef __cplusplus
+extern C {
+#endif
+
+#ifdef HAVE_CONFIG_H
+#include config.h
+#endif
+
+#include va/va_x11.h
+#include pthread.h
+#ifdef HAVE_FFMPEG_AVUTIL_H
+#  include avcodec.h
+#else
+#  include libavcodec/avcodec.h
+#endif
+
+#if LIBAVCODEC_VERSION_MAJOR = 53 || (LIBAVCODEC_VERSION_MAJOR == 52  
LIBAVCODEC_VERSION_MINOR = 32)
+#  define AVVIDEO 2
+#else
+#  define AVVIDEO 1
+#  define pp_context   pp_context_t
+#  define pp_mode  pp_mode_t
+#endif
+
+#define NUM_OUTPUT_SURFACES 22
+
+#define SURFACE_FREE0
+#define SURFACE_ALOC1
+#define SURFACE_RELEASE  

[arch-commits] Commit in xine-lib/repos (6 files)

2013-07-11 Thread Eric Bélanger
Date: Friday, July 12, 2013 @ 03:43:53
  Author: eric
Revision: 189967

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xine-lib/repos/staging-i686/
  xine-lib/repos/staging-i686/PKGBUILD
(from rev 189966, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-i686/accel_vaapi.h
(from rev 189966, xine-lib/trunk/accel_vaapi.h)
  xine-lib/repos/staging-x86_64/
  xine-lib/repos/staging-x86_64/PKGBUILD
(from rev 189966, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-x86_64/accel_vaapi.h
(from rev 189966, xine-lib/trunk/accel_vaapi.h)

--+
 staging-i686/PKGBUILD|   50 +++
 staging-i686/accel_vaapi.h   |  135 +
 staging-x86_64/PKGBUILD  |   50 +++
 staging-x86_64/accel_vaapi.h |  135 +
 4 files changed, 370 insertions(+)

Copied: xine-lib/repos/staging-i686/PKGBUILD (from rev 189966, 
xine-lib/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-07-12 01:43:53 UTC (rev 189967)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.3
+pkgrel=2
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad'
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
 accel_vaapi.h)
+sha1sums=('6f9ef4ba75688659052d21448d46527db2b77e57'
+  '08ed9947ef919c71c87151baa8fc0ce7d8f72050')
+
+prepare() {
+  cp accel_vaapi.h ${pkgname}-${pkgver}/src/xine-engine/
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: xine-lib/repos/staging-i686/accel_vaapi.h (from rev 189966, 
xine-lib/trunk/accel_vaapi.h)
===
--- staging-i686/accel_vaapi.h  (rev 0)
+++ staging-i686/accel_vaapi.h  2013-07-12 01:43:53 UTC (rev 189967)
@@ -0,0 +1,135 @@
+/*
+ * Copyright (C) 2008 the xine project
+ *
+ * This file is part of xine, a free video player.
+ *
+ * xine is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * xine is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
+ *
+ *
+ * Common acceleration definitions for vdpau
+ *
+ *
+ */
+
+#ifndef HAVE_XINE_ACCEL_VAAPI_H
+#define HAVE_XINE_ACCEL_VAAPI_H
+
+#ifdef __cplusplus
+extern C {
+#endif
+
+#ifdef HAVE_CONFIG_H
+#include config.h
+#endif
+
+#include va/va_x11.h
+#include pthread.h
+#ifdef HAVE_FFMPEG_AVUTIL_H
+#  include avcodec.h
+#else
+#  include libavcodec/avcodec.h
+#endif
+
+#if LIBAVCODEC_VERSION_MAJOR = 53 || (LIBAVCODEC_VERSION_MAJOR == 52  
LIBAVCODEC_VERSION_MINOR = 32)
+#  define AVVIDEO 2
+#else
+#  define AVVIDEO 1
+#  define pp_context   pp_context_t
+#  define pp_mode  pp_mode_t
+#endif
+
+#define NUM_OUTPUT_SURFACES 22
+
+#define SURFACE_FREE0
+#define SURFACE_ALOC1
+#define SURFACE_RELEASE

[arch-commits] Commit in xine-lib/repos (6 files)

2013-03-16 Thread Eric Bélanger
Date: Sunday, March 17, 2013 @ 02:07:59
  Author: eric
Revision: 180103

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xine-lib/repos/staging-i686/
  xine-lib/repos/staging-i686/PKGBUILD
(from rev 180102, xine-lib/trunk/PKGBUILD)
  
xine-lib/repos/staging-i686/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
(from rev 180102, 
xine-lib/trunk/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch)
  xine-lib/repos/staging-x86_64/
  xine-lib/repos/staging-x86_64/PKGBUILD
(from rev 180102, xine-lib/trunk/PKGBUILD)
  
xine-lib/repos/staging-x86_64/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
(from rev 180102, 
xine-lib/trunk/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch)

---+
 staging-i686/PKGBUILD  
   |   52 +
 
staging-i686/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
   |  277 ++
 staging-x86_64/PKGBUILD
   |   52 +
 
staging-x86_64/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
 |  277 ++
 4 files changed, 658 insertions(+)

Copied: xine-lib/repos/staging-i686/PKGBUILD (from rev 180102, 
xine-lib/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-03-17 01:07:59 UTC (rev 180103)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=8
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad'
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
+xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c'
+  '45500eca2aa40c133e1a6e8b23dbadc4b921b11f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # Fix audio decoding with newest FFmpeg
+  # https://bugs.archlinux.org/task/33818
+  patch -Np1 -i 
$srcdir/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
+
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: 
xine-lib/repos/staging-i686/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
 (from rev 180102, 
xine-lib/trunk/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch)
===
--- 
staging-i686/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
 (rev 0)
+++ 
staging-i686/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
 2013-03-17 01:07:59 UTC (rev 180103)
@@ -0,0 +1,277 @@
+From 679582503c8ba2f91a82e44c4a2938550306fd07 Mon Sep 17 00:00:00 2001
+From: Torsten Jager t.ja...@gmx.de
+Date: Thu, 21 Feb 2013 22:35:00 +0200
+Subject: [PATCH 3/5] ffmpeg_audio_decoder: support new av_decode_audio4 ()
+
+---
+ src/combined/ffmpeg/ff_audio_decoder.c | 153 +++--
+ src/combined/ffmpeg/ffmpeg_compat.h|   4 +-
+ 2 files changed, 131 insertions(+), 26 deletions(-)
+
+diff --git a/src/combined/ffmpeg/ff_audio_decoder.c 
b/src/combined/ffmpeg/ff_audio_decoder.c
+index 4e64378..34a7a9e 100644
+--- a/src/combined/ffmpeg/ff_audio_decoder.c
 b/src/combined/ffmpeg/ff_audio_decoder.c
+@@ -71,7 +71,9 @@ typedef struct ff_audio_decoder_s 

[arch-commits] Commit in xine-lib/repos (6 files)

2013-03-09 Thread Evangelos Foutras
Date: Saturday, March 9, 2013 @ 12:09:53
  Author: foutrelis
Revision: 179685

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xine-lib/repos/extra-i686/PKGBUILD
(from rev 179684, xine-lib/trunk/PKGBUILD)
  
xine-lib/repos/extra-i686/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
(from rev 179684, 
xine-lib/trunk/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch)
  xine-lib/repos/extra-x86_64/PKGBUILD
(from rev 179684, xine-lib/trunk/PKGBUILD)
  
xine-lib/repos/extra-x86_64/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
(from rev 179684, 
xine-lib/trunk/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch)
Deleted:
  xine-lib/repos/extra-i686/PKGBUILD
  xine-lib/repos/extra-x86_64/PKGBUILD

-+
 extra-i686/PKGBUILD
 |   97 +--
 
extra-i686/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
   |  277 ++
 extra-x86_64/PKGBUILD  
 |   97 +--
 
extra-x86_64/xine-lib-1.2.2-ffmpeg_audio_decoder-support-new-av_decode_audio4.patch
 |  277 ++
 4 files changed, 658 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-09 11:09:40 UTC (rev 179684)
+++ extra-i686/PKGBUILD 2013-03-09 11:09:53 UTC (rev 179685)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=xine-lib
-pkgver=1.2.2
-pkgrel=6
-pkgdesc=A multimedia playback engine
-arch=('i686' 'x86_64')
-url=http://www.xine-project.org;
-license=('LGPL' 'GPL')
-depends=('libxvmc' 'ffmpeg' 'libxinerama')
-makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
- 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
- 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
-optdepends=('imagemagick: for using the imagemagick plugin' \
-'jack: for using the jack plugin' \
-'vcdimager: for using the vcd plugin' \
-'glu: for using the opengl plugin' \
-'wavpack: for using the wavpack plugin' \
-'faad2: for using the faad plugin' \
-'libmng: for using the mng plugin' \
-'aalib: for using the aalib plugin' \
-'libmodplug: for using the modplug plugin' \
-'libdca: for using the dca plugin' \
-'a52dec: for using the a52 plugin' \
-'libmad: for using the mp3 plugin' \
-'libmpcdec: for using the musepack plugin' \
-'libcaca: for using the caca plugin' \
-'libbluray: for using the bluray plugin' \
-'gnome-vfs: for using the gnome-vfs plugin' \
-'libvdpau: for using the VDPAU plugin')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xine-lib/repos/extra-i686/PKGBUILD (from rev 179684, 
xine-lib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-09 11:09:53 UTC (rev 179685)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=7
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad'
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using 

[arch-commits] Commit in xine-lib/repos (6 files)

2013-01-15 Thread Jan de Groot
Date: Tuesday, January 15, 2013 @ 06:34:28
  Author: jgc
Revision: 175150

db-move: moved xine-lib from [staging] to [extra] (i686, x86_64)

Added:
  xine-lib/repos/extra-i686/PKGBUILD
(from rev 175141, xine-lib/repos/staging-i686/PKGBUILD)
  xine-lib/repos/extra-x86_64/PKGBUILD
(from rev 175141, xine-lib/repos/staging-x86_64/PKGBUILD)
Deleted:
  xine-lib/repos/extra-i686/PKGBUILD
  xine-lib/repos/extra-x86_64/PKGBUILD
  xine-lib/repos/staging-i686/
  xine-lib/repos/staging-x86_64/

---+
 extra-i686/PKGBUILD   |   90 
 extra-x86_64/PKGBUILD |   90 
 2 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-15 11:34:26 UTC (rev 175149)
+++ extra-i686/PKGBUILD 2013-01-15 11:34:28 UTC (rev 175150)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=xine-lib
-pkgver=1.2.2
-pkgrel=3
-pkgdesc=A multimedia playback engine
-arch=('i686' 'x86_64')
-url=http://www.xine-project.org;
-license=('LGPL' 'GPL')
-depends=('libxvmc' 'ffmpeg' 'libxinerama')
-makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
- 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
- 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
-optdepends=('imagemagick: for using the imagemagick plugin' \
-'jack: for using the jack plugin' \
-'vcdimager: for using the vcd plugin' \
-'glu: for using the opengl plugin' \
-'wavpack: for using the wavpack plugin' \
-'faad2: for using the faad plugin' \
-'libmng: for using the mng plugin' \
-'aalib: for using the aalib plugin' \
-'libmodplug: for using the modplug plugin' \
-'libdca: for using the dca plugin' \
-'a52dec: for using the a52 plugin' \
-'libmad: for using the mp3 plugin' \
-'libmpcdec: for using the musepack plugin' \
-'libcaca: for using the caca plugin' \
-'libbluray: for using the bluray plugin' \
-'gnome-vfs: for using the gnome-vfs plugin' \
-'libvdpau: for using the VDPAU plugin')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xine-lib/repos/extra-i686/PKGBUILD (from rev 175141, 
xine-lib/repos/staging-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-15 11:34:28 UTC (rev 175150)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=4
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   

[arch-commits] Commit in xine-lib/repos (6 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:42:28
  Author: eric
Revision: 169760

db-move: moved xine-lib from [testing] to [extra] (i686, x86_64)

Added:
  xine-lib/repos/extra-i686/PKGBUILD
(from rev 169738, xine-lib/repos/testing-i686/PKGBUILD)
  xine-lib/repos/extra-x86_64/PKGBUILD
(from rev 169738, xine-lib/repos/testing-x86_64/PKGBUILD)
Deleted:
  xine-lib/repos/extra-i686/PKGBUILD
  xine-lib/repos/extra-x86_64/PKGBUILD
  xine-lib/repos/testing-i686/
  xine-lib/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   90 
 extra-x86_64/PKGBUILD |   90 
 2 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:42:25 UTC (rev 169759)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:28 UTC (rev 169760)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=xine-lib
-pkgver=1.2.2
-pkgrel=2
-pkgdesc=A multimedia playback engine
-arch=('i686' 'x86_64')
-url=http://www.xine-project.org;
-license=('LGPL' 'GPL')
-depends=('libxvmc' 'ffmpeg' 'libxinerama')
-makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
- 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
- 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
-optdepends=('imagemagick: for using the imagemagick plugin' \
-'jack: for using the jack plugin' \
-'vcdimager: for using the vcd plugin' \
-'glu: for using the opengl plugin' \
-'wavpack: for using the wavpack plugin' \
-'faad2: for using the faad plugin' \
-'libmng: for using the mng plugin' \
-'aalib: for using the aalib plugin' \
-'libmodplug: for using the modplug plugin' \
-'libdca: for using the dca plugin' \
-'a52dec: for using the a52 plugin' \
-'libmad: for using the mp3 plugin' \
-'libmpcdec: for using the musepack plugin' \
-'libcaca: for using the caca plugin' \
-'libbluray: for using the bluray plugin' \
-'gnome-vfs: for using the gnome-vfs plugin' \
-'libvdpau: for using the VDPAU plugin')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xine-lib/repos/extra-i686/PKGBUILD (from rev 169738, 
xine-lib/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:28 UTC (rev 169760)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=3
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   

[arch-commits] Commit in xine-lib/repos (6 files)

2012-10-24 Thread Eric Bélanger
Date: Wednesday, October 24, 2012 @ 21:35:46
  Author: eric
Revision: 169650

db-move: moved xine-lib from [staging] to [testing] (i686, x86_64)

Added:
  xine-lib/repos/testing-i686/
  xine-lib/repos/testing-i686/PKGBUILD
(from rev 169628, xine-lib/repos/staging-i686/PKGBUILD)
  xine-lib/repos/testing-x86_64/
  xine-lib/repos/testing-x86_64/PKGBUILD
(from rev 169628, xine-lib/repos/staging-x86_64/PKGBUILD)
Deleted:
  xine-lib/repos/staging-i686/
  xine-lib/repos/staging-x86_64/

-+
 testing-i686/PKGBUILD   |   45 +
 testing-x86_64/PKGBUILD |   45 +
 2 files changed, 90 insertions(+)

Copied: xine-lib/repos/testing-i686/PKGBUILD (from rev 169628, 
xine-lib/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-25 01:35:46 UTC (rev 169650)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=3
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: xine-lib/repos/testing-x86_64/PKGBUILD (from rev 169628, 
xine-lib/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-10-25 01:35:46 UTC (rev 169650)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=3
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in xine-lib/repos (6 files)

2012-10-13 Thread andyrtr
Date: Saturday, October 13, 2012 @ 07:49:44
  Author: andyrtr
Revision: 168614

db-move: moved xine-lib from [testing] to [extra] (i686, x86_64)

Added:
  xine-lib/repos/extra-i686/PKGBUILD
(from rev 168549, xine-lib/repos/testing-i686/PKGBUILD)
  xine-lib/repos/extra-x86_64/PKGBUILD
(from rev 168549, xine-lib/repos/testing-x86_64/PKGBUILD)
Deleted:
  xine-lib/repos/extra-i686/PKGBUILD
  xine-lib/repos/extra-x86_64/PKGBUILD
  xine-lib/repos/testing-i686/
  xine-lib/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   90 
 extra-x86_64/PKGBUILD |   90 
 2 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-13 11:49:41 UTC (rev 168613)
+++ extra-i686/PKGBUILD 2012-10-13 11:49:44 UTC (rev 168614)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=xine-lib
-pkgver=1.2.2
-pkgrel=1
-pkgdesc=A multimedia playback engine
-arch=('i686' 'x86_64')
-url=http://www.xine-project.org;
-license=('LGPL' 'GPL')
-depends=('libxvmc' 'ffmpeg' 'libxinerama')
-makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
- 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
- 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau')
-optdepends=('imagemagick: for using the imagemagick plugin' \
-'jack: for using the jack plugin' \
-'vcdimager: for using the vcd plugin' \
-'mesa: for using the opengl plugin' \
-'wavpack: for using the wavpack plugin' \
-'faad2: for using the faad plugin' \
-'libmng: for using the mng plugin' \
-'aalib: for using the aalib plugin' \
-'libmodplug: for using the modplug plugin' \
-'libdca: for using the dca plugin' \
-'a52dec: for using the a52 plugin' \
-'libmad: for using the mp3 plugin' \
-'libmpcdec: for using the musepack plugin' \
-'libcaca: for using the caca plugin' \
-'libbluray: for using the bluray plugin' \
-'gnome-vfs: for using the gnome-vfs plugin' \
-'libvdpau: for using the VDPAU plugin')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xine-lib/repos/extra-i686/PKGBUILD (from rev 168549, 
xine-lib/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-13 11:49:44 UTC (rev 168614)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=2
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   

[arch-commits] Commit in xine-lib/repos (6 files)

2012-07-08 Thread Ionut Biru
Date: Sunday, July 8, 2012 @ 05:32:46
  Author: ibiru
Revision: 163163

db-move: moved xine-lib from [testing] to [extra] ( i686,  x86_64)

Added:
  xine-lib/repos/extra-i686/PKGBUILD
(from rev 163141, xine-lib/repos/testing-i686/PKGBUILD)
  xine-lib/repos/extra-x86_64/PKGBUILD
(from rev 163141, xine-lib/repos/testing-x86_64/PKGBUILD)
Deleted:
  xine-lib/repos/extra-i686/PKGBUILD
  xine-lib/repos/extra-x86_64/PKGBUILD
  xine-lib/repos/testing-i686/
  xine-lib/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   90 
 extra-x86_64/PKGBUILD |   90 
 2 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-08 09:32:43 UTC (rev 163162)
+++ extra-i686/PKGBUILD 2012-07-08 09:32:46 UTC (rev 163163)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=xine-lib
-pkgver=1.2.1
-pkgrel=2
-pkgdesc=A multimedia playback engine
-arch=('i686' 'x86_64')
-url=http://www.xine-project.org;
-license=('LGPL' 'GPL')
-depends=('libxvmc' 'ffmpeg' 'libxinerama')
-makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
- 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
- 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau')
-optdepends=('imagemagick: for using the imagemagick plugin' \
-'jack: for using the jack plugin' \
-'vcdimager: for using the vcd plugin' \
-'mesa: for using the opengl plugin' \
-'wavpack: for using the wavpack plugin' \
-'faad2: for using the faad plugin' \
-'libmng: for using the mng plugin' \
-'aalib: for using the aalib plugin' \
-'libmodplug: for using the modplug plugin' \
-'libdca: for using the dca plugin' \
-'a52dec: for using the a52 plugin' \
-'libmad: for using the mp3 plugin' \
-'libmpcdec: for using the musepack plugin' \
-'libcaca: for using the caca plugin' \
-'libbluray: for using the bluray plugin' \
-'gnome-vfs: for using the gnome-vfs plugin' \
-'libvdpau: for using the VDPAU plugin')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('ebb2648456504ff4ce08c34de258d3125832bb94')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xine-lib/repos/extra-i686/PKGBUILD (from rev 163141, 
xine-lib/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-08 09:32:46 UTC (rev 163163)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=1
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'mesa: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-07-08 

[arch-commits] Commit in xine-lib/repos (6 files)

2012-07-06 Thread Ionut Biru
Date: Friday, July 6, 2012 @ 11:22:28
  Author: ibiru
Revision: 163069

db-move: moved xine-lib from [staging] to [testing] ( i686,  x86_64)

Added:
  xine-lib/repos/testing-i686/
  xine-lib/repos/testing-i686/PKGBUILD
(from rev 163051, xine-lib/repos/staging-i686/PKGBUILD)
  xine-lib/repos/testing-x86_64/
  xine-lib/repos/testing-x86_64/PKGBUILD
(from rev 163051, xine-lib/repos/staging-x86_64/PKGBUILD)
Deleted:
  xine-lib/repos/staging-i686/
  xine-lib/repos/staging-x86_64/

-+
 testing-i686/PKGBUILD   |   45 +
 testing-x86_64/PKGBUILD |   45 +
 2 files changed, 90 insertions(+)

Copied: xine-lib/repos/testing-i686/PKGBUILD (from rev 163051, 
xine-lib/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-07-06 15:22:28 UTC (rev 163069)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=1
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'mesa: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: xine-lib/repos/testing-x86_64/PKGBUILD (from rev 163051, 
xine-lib/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-07-06 15:22:28 UTC (rev 163069)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=1
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'mesa: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in xine-lib/repos (6 files)

2012-06-14 Thread Eric Bélanger
Date: Thursday, June 14, 2012 @ 20:59:07
  Author: eric
Revision: 161814

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xine-lib/repos/staging-i686/PKGBUILD
(from rev 161813, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-x86_64/PKGBUILD
(from rev 161813, xine-lib/trunk/PKGBUILD)
Deleted:
  xine-lib/repos/staging-i686/PKGBUILD
  xine-lib/repos/staging-i686/xine-lib-1.2.1-ffmpeg.patch
  xine-lib/repos/staging-x86_64/PKGBUILD
  xine-lib/repos/staging-x86_64/xine-lib-1.2.1-ffmpeg.patch

+
 staging-i686/PKGBUILD  |   93 +--
 staging-i686/xine-lib-1.2.1-ffmpeg.patch   |   75 -
 staging-x86_64/PKGBUILD|   93 +--
 staging-x86_64/xine-lib-1.2.1-ffmpeg.patch |   75 -
 4 files changed, 90 insertions(+), 246 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2012-06-15 00:58:23 UTC (rev 161813)
+++ staging-i686/PKGBUILD   2012-06-15 00:59:07 UTC (rev 161814)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=xine-lib
-pkgver=1.2.1
-pkgrel=3
-pkgdesc=A multimedia playback engine
-arch=('i686' 'x86_64')
-url=http://www.xine-project.org;
-license=('LGPL' 'GPL')
-depends=('libxvmc' 'ffmpeg' 'libxinerama')
-makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
- 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
- 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau')
-optdepends=('imagemagick: for using the imagemagick plugin' \
-'jack: for using the jack plugin' \
-'vcdimager: for using the vcd plugin' \
-'mesa: for using the opengl plugin' \
-'wavpack: for using the wavpack plugin' \
-'faad2: for using the faad plugin' \
-'libmng: for using the mng plugin' \
-'aalib: for using the aalib plugin' \
-'libmodplug: for using the modplug plugin' \
-'libdca: for using the dca plugin' \
-'a52dec: for using the a52 plugin' \
-'libmad: for using the mp3 plugin' \
-'libmpcdec: for using the musepack plugin' \
-'libcaca: for using the caca plugin' \
-'libbluray: for using the bluray plugin' \
-'gnome-vfs: for using the gnome-vfs plugin' \
-'libvdpau: for using the VDPAU plugin')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
-xine-lib-1.2.1-ffmpeg.patch)
-sha1sums=('ebb2648456504ff4ce08c34de258d3125832bb94'
-  '179558f72566574e52f3a79231aac25968f18ff0')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/xine-lib-1.2.1-ffmpeg.patch
-  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xine-lib/repos/staging-i686/PKGBUILD (from rev 161813, 
xine-lib/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-06-15 00:59:07 UTC (rev 161814)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=1
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'mesa: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
+
+build() {
+  cd 

[arch-commits] Commit in xine-lib/repos (6 files)

2012-06-03 Thread Eric Bélanger
Date: Sunday, June 3, 2012 @ 21:22:50
  Author: eric
Revision: 160700

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xine-lib/repos/staging-i686/
  xine-lib/repos/staging-i686/PKGBUILD
(from rev 160699, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-i686/xine-lib-1.2.1-ffmpeg.patch
(from rev 160699, xine-lib/trunk/xine-lib-1.2.1-ffmpeg.patch)
  xine-lib/repos/staging-x86_64/
  xine-lib/repos/staging-x86_64/PKGBUILD
(from rev 160699, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-x86_64/xine-lib-1.2.1-ffmpeg.patch
(from rev 160699, xine-lib/trunk/xine-lib-1.2.1-ffmpeg.patch)

+
 staging-i686/PKGBUILD  |   48 +
 staging-i686/xine-lib-1.2.1-ffmpeg.patch   |   75 +++
 staging-x86_64/PKGBUILD|   48 +
 staging-x86_64/xine-lib-1.2.1-ffmpeg.patch |   75 +++
 4 files changed, 246 insertions(+)

Copied: xine-lib/repos/staging-i686/PKGBUILD (from rev 160699, 
xine-lib/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-06-04 01:22:50 UTC (rev 160700)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.1
+pkgrel=3
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'mesa: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
+xine-lib-1.2.1-ffmpeg.patch)
+sha1sums=('ebb2648456504ff4ce08c34de258d3125832bb94'
+  '179558f72566574e52f3a79231aac25968f18ff0')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/xine-lib-1.2.1-ffmpeg.patch
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: xine-lib/repos/staging-i686/xine-lib-1.2.1-ffmpeg.patch (from rev 
160699, xine-lib/trunk/xine-lib-1.2.1-ffmpeg.patch)
===
--- staging-i686/xine-lib-1.2.1-ffmpeg.patch(rev 0)
+++ staging-i686/xine-lib-1.2.1-ffmpeg.patch2012-06-04 01:22:50 UTC (rev 
160700)
@@ -0,0 +1,75 @@
+# HG changeset patch
+# User Edgar Hucek ebsi4...@gmail.com
+# Date 1327873178 -3600
+# Node ID 69983efb1c928e64cc1900579b98142cef0569c4
+# Parent  61f51ebc2659363e308bedb10b9fa4e71a60cedc
+fix compile against recent ffmpeg
+
+diff -r 61f51ebc2659 -r 69983efb1c92 src/combined/ffmpeg/ff_video_decoder.c
+--- a/src/combined/ffmpeg/ff_video_decoder.c   Sat Feb 04 18:52:01 2012 +
 b/src/combined/ffmpeg/ff_video_decoder.c   Sun Jan 29 22:39:38 2012 +0100
+@@ -130,7 +130,9 @@
+ 
+   yuv_planes_t  yuv;
+ 
++#ifdef AVPaletteControl
+   AVPaletteControl  palette_control;
++#endif
+ 
+ #ifdef LOG
+   enum PixelFormat  debug_fmt;
+@@ -218,7 +220,9 @@
+   /* We should really keep track of the ages of xine frames (see
+* avcodec_default_get_buffer in libavcodec/utils.c)
+* For the moment tell ffmpeg that every frame is new (age = bignumber) */
++#ifdef AVFRAMEAGE
+   av_frame-age = 256*256*256*64;
++#endif
+ 
+   av_frame-type= FF_BUFFER_TYPE_USER;
+ 
+@@ -1028,7 +1032,9 @@
+ memcpy(this-context-extradata, buf-decoder_info_ptr[2],
+   buf-decoder_info[2]);
+ 
+-  } else if (buf-decoder_info[1] == BUF_SPECIAL_PALETTE) {
++  }
++#ifdef AVPaletteControl
++  else if (buf-decoder_info[1] == BUF_SPECIAL_PALETTE) {
+ unsigned int i;
+ 
+ palette_entry_t *demuxer_palette;
+@@ -1047,7 +1053,9 @@
+ }
+ 

[arch-commits] Commit in xine-lib/repos (6 files)

2011-11-05 Thread Ionut Biru
Date: Saturday, November 5, 2011 @ 07:38:16
  Author: ibiru
Revision: 142164

db-move: moved xine-lib from [staging] to [testing] (i686)

Added:
  xine-lib/repos/testing-i686/
  xine-lib/repos/testing-i686/PKGBUILD
(from rev 142117, xine-lib/repos/staging-i686/PKGBUILD)
  xine-lib/repos/testing-i686/xine-lib-1.1.1-configure-no-mcpu-march.patch
(from rev 142117, 
xine-lib/repos/staging-i686/xine-lib-1.1.1-configure-no-mcpu-march.patch)
  xine-lib/repos/testing-i686/xine-lib-1.1.19-ffmpeg.patch
(from rev 142117, xine-lib/repos/staging-i686/xine-lib-1.1.19-ffmpeg.patch)
  xine-lib/repos/testing-i686/xine-lib-1.1.19-xvmc.patch
(from rev 142117, xine-lib/repos/staging-i686/xine-lib-1.1.19-xvmc.patch)
Deleted:
  xine-lib/repos/staging-i686/

--+
 PKGBUILD |   56 +++
 xine-lib-1.1.1-configure-no-mcpu-march.patch |   13 
 xine-lib-1.1.19-ffmpeg.patch |  380 +
 xine-lib-1.1.19-xvmc.patch   |   17 +
 4 files changed, 466 insertions(+)

Copied: xine-lib/repos/testing-i686/PKGBUILD (from rev 142117, 
xine-lib/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-05 11:38:16 UTC (rev 142164)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.1.19
+pkgrel=6
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'flac' 'ffmpeg' 'libxinerama' 'libmodplug')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'smbclient' 'mesa'
+ 'v4l-utils' 'vcdimager' 'jack' 'gdk-pixbuf2' 'libpulse' 'speex' 
'aalib')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'smbclient: for using the smb plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'gdk-pixbuf2: for using the gdk-pixbuf plugin' \
+'mesa: for using the opengl plugin' \
+'libpulse: for using the pulseaudio plugin' \
+'speex: for using the speex plugin' \
+'v4l-utils: for using the v4l plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
+xine-lib-1.1.1-configure-no-mcpu-march.patch xine-lib-1.1.19-xvmc.patch
+xine-lib-1.1.19-ffmpeg.patch)
+sha1sums=('f65f762d2e16adf04b9d715c91ee0bc02c322a7d'
+  '121a8358d7919b2e51067412373f52848290338a'
+  '920bf27e6e3523dfe4cc9c802ff713e9688a3f34'
+  'd70f14c3dbb59b65c581575fa1fe13aeeb38f1b1')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p0 -i ${srcdir}/xine-lib-1.1.1-configure-no-mcpu-march.patch
+  patch -p0 -i ${srcdir}/xine-lib-1.1.19-xvmc.patch
+  patch -p1 -i ${srcdir}/xine-lib-1.1.19-ffmpeg.patch
+  sed -i 's|linux/videodev.h|libv4l1-videodev.h|' \
+configure.ac src/input/input_v4l.c src/video_out/video_out_syncfb.h
+
+  libtoolize --force --copy
+  aclocal -I m4
+  autoconf
+  automake --add-missing
+
+  ./configure --prefix=/usr --with-wavpack --with-external-ffmpeg 
--with-external-libfaad
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: 
xine-lib/repos/testing-i686/xine-lib-1.1.1-configure-no-mcpu-march.patch (from 
rev 142117, 
xine-lib/repos/staging-i686/xine-lib-1.1.1-configure-no-mcpu-march.patch)
===
--- testing-i686/xine-lib-1.1.1-configure-no-mcpu-march.patch   
(rev 0)
+++ testing-i686/xine-lib-1.1.1-configure-no-mcpu-march.patch   2011-11-05 
11:38:16 UTC (rev 142164)
@@ -0,0 +1,13 @@
+--- m4/optimizations.m4.orig   2005-11-27 01:20:08.0 +0100
 m4/optimizations.m42005-11-27 01:22:56.0 +0100
+@@ -161,10 +161,6 @@
+   ;;
+ 
+   esac
+-  if test x$archopt_val != x; then
+-  CFLAGS=$sarchopt=$archopt_val $CFLAGS
+-  DEBUG_CFLAGS=$sarchopt=$archopt_val $DEBUG_CFLAGS
+-  fi
+ fi
+   else
+ dnl we have the Intel compiler

Copied: xine-lib/repos/testing-i686/xine-lib-1.1.19-ffmpeg.patch (from rev 
142117, xine-lib/repos/staging-i686/xine-lib-1.1.19-ffmpeg.patch)
===
--- testing-i686/xine-lib-1.1.19-ffmpeg.patch   (rev 0)
+++ testing-i686/xine-lib-1.1.19-ffmpeg.patch   2011-11-05 11:38:16 UTC (rev 
142164)
@@ -0,0 +1,380 @@
+diff -r 

[arch-commits] Commit in xine-lib/repos (6 files)

2011-11-05 Thread Ionut Biru
Date: Saturday, November 5, 2011 @ 07:38:18
  Author: ibiru
Revision: 142165

db-move: moved xine-lib from [staging] to [testing] (x86_64)

Added:
  xine-lib/repos/testing-x86_64/
  xine-lib/repos/testing-x86_64/PKGBUILD
(from rev 142117, xine-lib/repos/staging-x86_64/PKGBUILD)
  xine-lib/repos/testing-x86_64/xine-lib-1.1.1-configure-no-mcpu-march.patch
(from rev 142117, 
xine-lib/repos/staging-x86_64/xine-lib-1.1.1-configure-no-mcpu-march.patch)
  xine-lib/repos/testing-x86_64/xine-lib-1.1.19-ffmpeg.patch
(from rev 142117, 
xine-lib/repos/staging-x86_64/xine-lib-1.1.19-ffmpeg.patch)
  xine-lib/repos/testing-x86_64/xine-lib-1.1.19-xvmc.patch
(from rev 142117, xine-lib/repos/staging-x86_64/xine-lib-1.1.19-xvmc.patch)
Deleted:
  xine-lib/repos/staging-x86_64/

--+
 PKGBUILD |   56 +++
 xine-lib-1.1.1-configure-no-mcpu-march.patch |   13 
 xine-lib-1.1.19-ffmpeg.patch |  380 +
 xine-lib-1.1.19-xvmc.patch   |   17 +
 4 files changed, 466 insertions(+)

Copied: xine-lib/repos/testing-x86_64/PKGBUILD (from rev 142117, 
xine-lib/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-05 11:38:18 UTC (rev 142165)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.1.19
+pkgrel=6
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'flac' 'ffmpeg' 'libxinerama' 'libmodplug')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'smbclient' 'mesa'
+ 'v4l-utils' 'vcdimager' 'jack' 'gdk-pixbuf2' 'libpulse' 'speex' 
'aalib')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'smbclient: for using the smb plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'gdk-pixbuf2: for using the gdk-pixbuf plugin' \
+'mesa: for using the opengl plugin' \
+'libpulse: for using the pulseaudio plugin' \
+'speex: for using the speex plugin' \
+'v4l-utils: for using the v4l plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz
+xine-lib-1.1.1-configure-no-mcpu-march.patch xine-lib-1.1.19-xvmc.patch
+xine-lib-1.1.19-ffmpeg.patch)
+sha1sums=('f65f762d2e16adf04b9d715c91ee0bc02c322a7d'
+  '121a8358d7919b2e51067412373f52848290338a'
+  '920bf27e6e3523dfe4cc9c802ff713e9688a3f34'
+  'd70f14c3dbb59b65c581575fa1fe13aeeb38f1b1')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p0 -i ${srcdir}/xine-lib-1.1.1-configure-no-mcpu-march.patch
+  patch -p0 -i ${srcdir}/xine-lib-1.1.19-xvmc.patch
+  patch -p1 -i ${srcdir}/xine-lib-1.1.19-ffmpeg.patch
+  sed -i 's|linux/videodev.h|libv4l1-videodev.h|' \
+configure.ac src/input/input_v4l.c src/video_out/video_out_syncfb.h
+
+  libtoolize --force --copy
+  aclocal -I m4
+  autoconf
+  automake --add-missing
+
+  ./configure --prefix=/usr --with-wavpack --with-external-ffmpeg 
--with-external-libfaad
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: 
xine-lib/repos/testing-x86_64/xine-lib-1.1.1-configure-no-mcpu-march.patch 
(from rev 142117, 
xine-lib/repos/staging-x86_64/xine-lib-1.1.1-configure-no-mcpu-march.patch)
===
--- testing-x86_64/xine-lib-1.1.1-configure-no-mcpu-march.patch 
(rev 0)
+++ testing-x86_64/xine-lib-1.1.1-configure-no-mcpu-march.patch 2011-11-05 
11:38:18 UTC (rev 142165)
@@ -0,0 +1,13 @@
+--- m4/optimizations.m4.orig   2005-11-27 01:20:08.0 +0100
 m4/optimizations.m42005-11-27 01:22:56.0 +0100
+@@ -161,10 +161,6 @@
+   ;;
+ 
+   esac
+-  if test x$archopt_val != x; then
+-  CFLAGS=$sarchopt=$archopt_val $CFLAGS
+-  DEBUG_CFLAGS=$sarchopt=$archopt_val $DEBUG_CFLAGS
+-  fi
+ fi
+   else
+ dnl we have the Intel compiler

Copied: xine-lib/repos/testing-x86_64/xine-lib-1.1.19-ffmpeg.patch (from rev 
142117, xine-lib/repos/staging-x86_64/xine-lib-1.1.19-ffmpeg.patch)
===
--- testing-x86_64/xine-lib-1.1.19-ffmpeg.patch (rev 0)
+++ testing-x86_64/xine-lib-1.1.19-ffmpeg.patch 2011-11-05 11:38:18 UTC (rev 
142165)
@@