From owner-svn-ports-head@freebsd.org Mon Apr 18 17:19:02 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AEE7B13A1A; Mon, 18 Apr 2016 17:19:02 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 D4EC01AF7; Mon, 18 Apr 2016 17:19:01 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3IHJ1Yl039903; Mon, 18 Apr 2016 17:19:01 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3IHJ0nN039900; Mon, 18 Apr 2016 17:19:00 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201604181719.u3IHJ0nN039900@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Mon, 18 Apr 2016 17:19:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413590 - in head/audio/mous: . 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.21 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: Mon, 18 Apr 2016 17:19:02 -0000 Author: olivierd Date: Mon Apr 18 17:19:00 2016 New Revision: 413590 URL: https://svnweb.freebsd.org/changeset/ports/413590 Log: - Fix build with the new API of libcue, after revision r413589 - Bump PORTREVISION Added: head/audio/mous/files/patch-plugins_CuePack_CuePack.cpp (contents, props changed) head/audio/mous/files/patch-plugins_CuePack_CuePack.h (contents, props changed) Modified: head/audio/mous/Makefile Modified: head/audio/mous/Makefile ============================================================================== --- head/audio/mous/Makefile Mon Apr 18 17:14:30 2016 (r413589) +++ head/audio/mous/Makefile Mon Apr 18 17:19:00 2016 (r413590) @@ -3,7 +3,7 @@ PORTNAME= mous PORTVERSION= 1.1a -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio MASTER_SITES= GHC Added: head/audio/mous/files/patch-plugins_CuePack_CuePack.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/mous/files/patch-plugins_CuePack_CuePack.cpp Mon Apr 18 17:19:00 2016 (r413590) @@ -0,0 +1,11 @@ +--- plugins/CuePack/CuePack.cpp.orig 2012-06-28 14:58:11 UTC ++++ plugins/CuePack/CuePack.cpp +@@ -55,7 +55,7 @@ void CuePack::DumpCue(const string& dir, + string genre; + int year = -1; + +- char* data = NULL; ++ const char* data = NULL; + Cdtext* cdt = cd_get_cdtext(cd); + Rem* rem = cd_get_rem(cd); + Added: head/audio/mous/files/patch-plugins_CuePack_CuePack.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/mous/files/patch-plugins_CuePack_CuePack.h Mon Apr 18 17:19:00 2016 (r413590) @@ -0,0 +1,11 @@ +--- plugins/CuePack/CuePack.h.orig 2012-06-28 14:58:11 UTC ++++ plugins/CuePack/CuePack.h +@@ -1,7 +1,6 @@ + #include + extern "C" { +-#include +-#include ++#include + } + using namespace std; + using namespace mous;