extra/vlc to 2.0.8.a

-1
This commit is contained in:
Mike Brown 2013-08-02 08:56:33 -04:00
parent 0d508df945
commit 9ac8a69b60
2 changed files with 37 additions and 5 deletions

View file

@ -7,7 +7,7 @@
# - drop oss support
pkgname=vlc
pkgver=2.0.8
pkgver=2.0.8.a
pkgrel=1
pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player"
arch=('i686' 'x86_64')
@ -58,15 +58,18 @@ backup=('usr/share/vlc/lua/http/.hosts'
'usr/share/vlc/lua/http/dialogs/.hosts')
options=('!libtool' '!emptydirs')
install=vlc.install
source=("http://download.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"
vlc-2.0.7-vaapi-compat.patch)
md5sums=('3b0e465b0990097b65abaf3e25589957'
'6df10774bb7acf20e09d6139e5c7839e')
source=("http://download.videolan.org/pub/videolan/${pkgname}/${pkgver/.a}/${pkgname}-${pkgver/.a/a}.tar.xz"
vlc-2.0.7-vaapi-compat.patch
vlc-2.0.8-Fix-live555-breakage-in-last-update.patch)
md5sums=('e5000677181406d026ffe448633d1ca0'
'6df10774bb7acf20e09d6139e5c7839e'
'e592efe7bb65291a84f99cfaa3a9f8a2')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
patch -Np1 -i ../vlc-2.0.7-vaapi-compat.patch
patch -Np1 -i ../vlc-2.0.8-Fix-live555-breakage-in-last-update.patch
sed -i -e 's:truetype/freefont:TTF:g' modules/text_renderer/freetype.c
sed -i -e 's:truetype/ttf-dejavu:TTF:g' modules/visualization/projectm.cpp

View file

@ -0,0 +1,29 @@
From ea444abae1d09b751314b24f6352e55be335621d Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Kempf <jb@videolan.org>
Date: Thu, 25 Jul 2013 01:14:32 +0200
Subject: [PATCH] Fix live555 breakage in last update
---
modules/demux/live555.cpp | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp
index 9e02630..7a1ab16 100644
--- a/modules/demux/live555.cpp
+++ b/modules/demux/live555.cpp
@@ -243,7 +243,11 @@ public:
char const* applicationName, portNumBits tunnelOverHTTPPortNum,
demux_sys_t *p_sys) :
RTSPClient( env, rtspURL, verbosityLevel, applicationName,
- tunnelOverHTTPPortNum )
+ tunnelOverHTTPPortNum
+#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1373932800
+ , -1
+#endif
+ )
{
this->p_sys = p_sys;
}
--
1.8.3.4