ports/149793: I have upgraded the multimedia/vlc port to vlc 1.1.3

Douglas Carmichael dcarmich at dcarmichael.net
Thu Aug 19 06:00:11 UTC 2010


>Number:         149793
>Category:       ports
>Synopsis:       I have upgraded the multimedia/vlc port to vlc 1.1.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Aug 19 06:00:08 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Douglas Carmichael
>Release:        8.1-RELEASE
>Organization:
n/a
>Environment:
FreeBSD dc-freebsd81.carmichael.lan 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Sat Jul 24 07:36:37 CDT 2010     root at dc-freebsd81.carmichael.lan:/usr/src/sys/amd64/compile/VMWARE81-64  amd64

>Description:
I have upgraded the multimedia/vlc port to vlc 1.1.3.

A patch is attached.

>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -ruN vlc.orig/Makefile vlc/Makefile
--- vlc.orig/Makefile	2010-08-19 00:27:41.000000000 -0500
+++ vlc/Makefile	2010-08-19 00:30:11.000000000 -0500
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	vlc
-DISTVERSION=	1.1.2
+DISTVERSION=	1.1.3
 PORTREVISION=	1
 PORTEPOCH=	3
 CATEGORIES=	multimedia audio ipv6 net www
diff -ruN vlc.orig/distinfo vlc/distinfo
--- vlc.orig/distinfo	2010-08-19 00:27:41.000000000 -0500
+++ vlc/distinfo	2010-08-19 00:29:30.000000000 -0500
@@ -1,3 +1,3 @@
-MD5 (vlc-1.1.2.tar.bz2) = dec11ed850e044c518aee6fef7e7f893
-SHA256 (vlc-1.1.2.tar.bz2) = db95e8667534e44f26c053e9f3f470d37c06d5ece10d2645cf2f7c25880a33f7
-SIZE (vlc-1.1.2.tar.bz2) = 23445745
+MD5 (vlc-1.1.3.tar.bz2) = b8ba8b6687d19dadcf3eb148ca525603
+SHA256 (vlc-1.1.3.tar.bz2) = 128c31f8c5cebbc947c2cf337cfb1877350f7e282826c76dc69e1218765e83e5
+SIZE (vlc-1.1.3.tar.bz2) = 23887407
diff -ruN vlc.orig/files/patch-VideoLAN-SA-1004 vlc/files/patch-VideoLAN-SA-1004
--- vlc.orig/files/patch-VideoLAN-SA-1004	2010-08-19 00:27:41.000000000 -0500
+++ vlc/files/patch-VideoLAN-SA-1004	1969-12-31 18:00:00.000000000 -0600
@@ -1,31 +0,0 @@
-diff --git a/modules/meta_engine/taglib.cpp b/modules/meta_engine/taglib.cpp
-index 9ddb26e..e927148 100644
---- modules/meta_engine/taglib.cpp
-+++ modules/meta_engine/taglib.cpp
-@@ -131,6 +131,8 @@ static void ReadMetaFromId3v2( ID3v2::Tag* tag, demux_t* p_demux, demux_meta_t*
-     {
-         ID3v2::UniqueFileIdentifierFrame* p_ufid =
-                 dynamic_cast<ID3v2::UniqueFileIdentifierFrame*>(*iter);
-+        if( !p_ufid )
-+            continue;
-         const char *owner = p_ufid->owner().toCString();
-         if (!strcmp( owner, "http://musicbrainz.org" ))
-         {
-@@ -151,6 +153,8 @@ static void ReadMetaFromId3v2( ID3v2::Tag* tag, demux_t* p_demux, demux_meta_t*
-     {
-         ID3v2::UserTextIdentificationFrame* p_txxx =
-                 dynamic_cast<ID3v2::UserTextIdentificationFrame*>(*iter);
-+        if( !p_txxx )
-+            continue;
-         vlc_meta_AddExtra( p_meta, p_txxx->description().toCString( true ),
-                            p_txxx->fieldList().toString().toCString( true ) );
-     }
-@@ -207,6 +211,8 @@ static void ReadMetaFromId3v2( ID3v2::Tag* tag, demux_t* p_demux, demux_meta_t*
-     {
-         ID3v2::AttachedPictureFrame* p_apic =
-             dynamic_cast<ID3v2::AttachedPictureFrame*>(*iter);
-+        if( !p_apic )
-+            continue;
-         input_attachment_t *p_attachment;
- 
-         const char *psz_mime;
diff -ruN vlc.orig/files/patch-include_limits.h vlc/files/patch-include_limits.h
--- vlc.orig/files/patch-include_limits.h	2010-08-19 00:27:41.000000000 -0500
+++ vlc/files/patch-include_limits.h	1969-12-31 18:00:00.000000000 -0600
@@ -1,24 +0,0 @@
-diff --git a/modules/gui/skins2/x11/x11_factory.cpp b/modules/gui/skins2/x11/x11_factory.cpp
-index 79fdcaa..a916cfa 100644
---- modules/gui/skins2/x11/x11_factory.cpp
-+++ modules/gui/skins2/x11/x11_factory.cpp
-@@ -28,6 +28,7 @@
- #include <dirent.h>
- #include <sys/stat.h>
- #include <X11/Xlib.h>
-+#include <limits.h>
- 
- #include "x11_factory.hpp"
- #include "x11_display.hpp"
-diff --git a/modules/gui/skins2/x11/x11_window.cpp b/modules/gui/skins2/x11/x11_window.cpp
-index 64fa4ae..e9e85de 100644
---- modules/gui/skins2/x11/x11_window.cpp
-+++ modules/gui/skins2/x11/x11_window.cpp
-@@ -25,6 +25,7 @@
- #ifdef X11_SKINS
- 
- #include <X11/Xatom.h>
-+#include <limits.h>
- 
- #include "../src/generic_window.hpp"
- #include "../src/vlcproc.hpp"


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list