From owner-svn-ports-head@FreeBSD.ORG Sat Nov 1 23:06:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0DCA5879; Sat, 1 Nov 2014 23:06:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EDAF6231; Sat, 1 Nov 2014 23:06:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sA1N6Oum004120; Sat, 1 Nov 2014 23:06:24 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sA1N6ONV004111; Sat, 1 Nov 2014 23:06:24 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201411012306.sA1N6ONV004111@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 1 Nov 2014 23:06:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372045 - in head/multimedia/gstreamer: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Nov 2014 23:06:25 -0000 Author: antoine Date: Sat Nov 1 23:06:23 2014 New Revision: 372045 URL: https://svnweb.freebsd.org/changeset/ports/372045 QAT: https://qat.redports.org/buildarchive/r372045/ Log: Allow building with bison 3 PR: ports/194680 Added: head/multimedia/gstreamer/files/patch-gst_parse_grammar.y (contents, props changed) Modified: head/multimedia/gstreamer/files/patch-Makefile.in head/multimedia/gstreamer/files/patch-gst_gstdatetime.c head/multimedia/gstreamer/pkg-plist Modified: head/multimedia/gstreamer/files/patch-Makefile.in ============================================================================== --- head/multimedia/gstreamer/files/patch-Makefile.in Sat Nov 1 21:55:46 2014 (r372044) +++ head/multimedia/gstreamer/files/patch-Makefile.in Sat Nov 1 23:06:23 2014 (r372045) @@ -1,18 +1,18 @@ ---- Makefile.in.orig 2009-10-19 00:06:14.000000000 +0200 -+++ Makefile.in 2009-10-19 00:07:47.000000000 +0200 -@@ -397,7 +397,6 @@ aclocaldir = $(datadir)/aclocal +--- Makefile.in.orig 2012-02-20 22:48:34 UTC ++++ Makefile.in +@@ -469,7 +469,6 @@ aclocaldir = $(datadir)/aclocal aclocal_DATA = gst-element-check-@GST_MAJORMINOR@.m4 SUBDIRS = pkgconfig \ gst libs plugins tools tests \ - docs \ po \ + m4 \ common - -@@ -405,7 +404,6 @@ SUBDIRS = pkgconfig \ +@@ -478,7 +477,6 @@ SUBDIRS = pkgconfig \ # These are all the possible subdirs DIST_SUBDIRS = pkgconfig \ gst libs plugins tools tests \ - docs \ po \ + m4 \ common - Modified: head/multimedia/gstreamer/files/patch-gst_gstdatetime.c ============================================================================== --- head/multimedia/gstreamer/files/patch-gst_gstdatetime.c Sat Nov 1 21:55:46 2014 (r372044) +++ head/multimedia/gstreamer/files/patch-gst_gstdatetime.c Sat Nov 1 23:06:23 2014 (r372045) @@ -1,5 +1,5 @@ ---- gst/gstdatetime.c.orig 2013-10-20 16:05:12.000000000 +0200 -+++ gst/gstdatetime.c 2013-10-20 16:05:24.000000000 +0200 +--- gst/gstdatetime.c.orig 2011-12-11 18:45:55 UTC ++++ gst/gstdatetime.c @@ -21,8 +21,8 @@ #include "config.h" #endif @@ -8,5 +8,5 @@ #include "gst_private.h" +#include "glib-compat-private.h" #include "gstdatetime.h" - #include "gstvalue.h" #include + #include Added: head/multimedia/gstreamer/files/patch-gst_parse_grammar.y ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer/files/patch-gst_parse_grammar.y Sat Nov 1 23:06:23 2014 (r372045) @@ -0,0 +1,18 @@ +--- gst/parse/grammar.y.orig 2011-12-30 01:14:35 UTC ++++ gst/parse/grammar.y +@@ -26,7 +26,6 @@ + */ + + #define YYERROR_VERBOSE 1 +-#define YYLEX_PARAM scanner + + #define YYENABLE_NLS 0 + +@@ -648,6 +647,7 @@ static int yyerror (void *scanner, graph + %right '.' + %left '!' '=' + ++%lex-param { void *scanner } + %parse-param { void *scanner } + %parse-param { graph_t *graph } + %pure-parser Modified: head/multimedia/gstreamer/pkg-plist ============================================================================== --- head/multimedia/gstreamer/pkg-plist Sat Nov 1 21:55:46 2014 (r372044) +++ head/multimedia/gstreamer/pkg-plist Sat Nov 1 23:06:23 2014 (r372045) @@ -191,14 +191,3 @@ share/gir-1.0/GstNet-%%VERSION%%.gir %%NLS%%share/locale/vi/LC_MESSAGES/gstreamer-%%VERSION%%.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/gstreamer-%%VERSION%%.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/gstreamer-%%VERSION%%.mo -%%NLS%%@dirrmtry share/locale/rw/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/rw -@dirrm libexec/gstreamer-%%VERSION%% -@dirrm lib/gstreamer-%%VERSION%% -@dirrm include/gstreamer-%%VERSION%%/gst/net -@dirrm include/gstreamer-%%VERSION%%/gst/dataprotocol -@dirrm include/gstreamer-%%VERSION%%/gst/controller -%%CHECK%%@dirrm include/gstreamer-%%VERSION%%/gst/check -@dirrm include/gstreamer-%%VERSION%%/gst/base -@dirrm include/gstreamer-%%VERSION%%/gst -@dirrm include/gstreamer-%%VERSION%%