From owner-svn-ports-all@FreeBSD.ORG Wed May 20 19:00:09 2015 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 48D91615; Wed, 20 May 2015 19:00:09 +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 2A67D16B9; Wed, 20 May 2015 19:00:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4KJ09Aj038430; Wed, 20 May 2015 19:00:09 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4KJ08hO038425; Wed, 20 May 2015 19:00:08 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201505201900.t4KJ08hO038425@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 20 May 2015 19:00:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386879 - in head/audio/tagtool: . 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.20 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: Wed, 20 May 2015 19:00:09 -0000 Author: amdmi3 Date: Wed May 20 19:00:07 2015 New Revision: 386879 URL: https://svnweb.freebsd.org/changeset/ports/386879 Log: - Fix runtime problem, applications was unusable [1] - Remove unneeded REINPLACE PR: 200166 [1] Submitted by: valery@vslash.com [1] MFH: 2015Q2 Added: head/audio/tagtool/files/patch-src_Makefile.in (contents, props changed) Modified: head/audio/tagtool/Makefile head/audio/tagtool/files/patch-configure head/audio/tagtool/files/patch-src__main.c Modified: head/audio/tagtool/Makefile ============================================================================== --- head/audio/tagtool/Makefile Wed May 20 18:42:32 2015 (r386878) +++ head/audio/tagtool/Makefile Wed May 20 19:00:07 2015 (r386879) @@ -4,7 +4,7 @@ PORTNAME= tagtool PORTVERSION= 0.12.3 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= audio MASTER_SITES= SF @@ -25,8 +25,4 @@ INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -lpthread -logg -lm -post-patch: - @${FIND} ${WRKSRC} -name "Makefile.in" | \ - ${XARGS} ${REINPLACE_CMD} -e 's|-Wno-pointer-sign||g' - .include Modified: head/audio/tagtool/files/patch-configure ============================================================================== --- head/audio/tagtool/files/patch-configure Wed May 20 18:42:32 2015 (r386878) +++ head/audio/tagtool/files/patch-configure Wed May 20 19:00:07 2015 (r386879) @@ -1,6 +1,6 @@ ---- configure.orig 2007-02-28 05:34:14.000000000 +0900 -+++ configure 2009-03-09 02:12:05.000000000 +0900 -@@ -9044,8 +9044,10 @@ +--- configure.orig 2015-05-20 17:11:37 UTC ++++ configure +@@ -9044,8 +9044,10 @@ echo "${ECHO_T}$LINGUAS" >&6; } glib_save_prefix="$prefix" glib_save_exec_prefix="$exec_prefix" @@ -11,7 +11,7 @@ if test "x$CATOBJEXT" = "x.mo" ; then localedir=`eval echo "${libdir}/locale"` else -@@ -9053,6 +9055,7 @@ +@@ -9053,6 +9055,7 @@ else fi prefix="$glib_save_prefix" exec_prefix="$glib_save_exec_prefix" Added: head/audio/tagtool/files/patch-src_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/tagtool/files/patch-src_Makefile.in Wed May 20 19:00:07 2015 (r386879) @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig 2015-05-20 17:11:37 UTC ++++ src/Makefile.in +@@ -193,7 +193,7 @@ tagtool_CFLAGS = -Wall -Wno-pointer-sign + ${vorbis_cflags} -DDATADIR='"$(datadir)/${PACKAGE_NAME}"' + + +-tagtool_LDFLAGS = -export-dynamic ++tagtool_LDFLAGS = -export-dynamic -rdynamic + tagtool_LDADD = $(GTK_LIBS) + + tagtool_SOURCES = file_list.c file_list.h file_util.c file_util.h \ Modified: head/audio/tagtool/files/patch-src__main.c ============================================================================== --- head/audio/tagtool/files/patch-src__main.c Wed May 20 18:42:32 2015 (r386878) +++ head/audio/tagtool/files/patch-src__main.c Wed May 20 19:00:07 2015 (r386879) @@ -1,6 +1,6 @@ ---- src/main.c.orig 2006-12-18 03:01:22.000000000 +0900 -+++ src/main.c 2009-03-09 02:20:45.000000000 +0900 -@@ -120,6 +120,7 @@ +--- src/main.c.orig 2006-12-17 18:01:22 UTC ++++ src/main.c +@@ -120,6 +120,7 @@ int main(int argc, char *argv[]) } }