From owner-svn-ports-all@FreeBSD.ORG Tue Dec 23 22:56:53 2014 Return-Path: Delivered-To: svn-ports-all@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 5F6F9B9; Tue, 23 Dec 2014 22:56:53 +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 4B54E647FC; Tue, 23 Dec 2014 22:56:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBNMurwK097887; Tue, 23 Dec 2014 22:56:53 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBNMuqBm097885; Tue, 23 Dec 2014 22:56:52 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201412232256.sBNMuqBm097885@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 23 Dec 2014 22:56:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375363 - in head/audio/gqmpeg: . 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-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Dec 2014 22:56:53 -0000 Author: bapt Date: Tue Dec 23 22:56:51 2014 New Revision: 375363 URL: https://svnweb.freebsd.org/changeset/ports/375363 QAT: https://qat.redports.org/buildarchive/r375363/ Log: Properly fix for png > 1.5 Added: head/audio/gqmpeg/files/patch-src_ui__pixbuf__save.c (contents, props changed) Deleted: head/audio/gqmpeg/files/patch-ui_pixbuf_save.c Modified: head/audio/gqmpeg/Makefile Modified: head/audio/gqmpeg/Makefile ============================================================================== --- head/audio/gqmpeg/Makefile Tue Dec 23 22:52:00 2014 (r375362) +++ head/audio/gqmpeg/Makefile Tue Dec 23 22:56:51 2014 (r375363) @@ -14,7 +14,7 @@ COMMENT?= Another gtk-based MP3 frontend OPTIONS_DEFINE= MPG321 MPG321_DESC= use mpg321 instead of mpg123 -LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png +LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png RUN_DEPENDS= ogg123:${PORTSDIR}/audio/vorbis-tools \ xmp:${PORTSDIR}/audio/xmp @@ -26,7 +26,7 @@ USES= gettext libtool GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_path_GNOME_CONFIG=no -CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15 +CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib post-patch: Added: head/audio/gqmpeg/files/patch-src_ui__pixbuf__save.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/gqmpeg/files/patch-src_ui__pixbuf__save.c Tue Dec 23 22:56:51 2014 (r375363) @@ -0,0 +1,11 @@ +--- src/ui_pixbuf_save.c.orig 2002-03-09 20:00:13.000000000 +0100 ++++ src/ui_pixbuf_save.c 2014-12-23 23:54:56.105240001 +0100 +@@ -86,7 +86,7 @@ gboolean pixbuf_to_file_as_png (GdkPixbu + return FALSE; + } + +- if (setjmp (png_ptr->jmpbuf)) ++ if (setjmp (png_jmpbuf (png_ptr))) + { + png_destroy_write_struct (&png_ptr, &info_ptr); + fclose (handle);