svn commit: r386885 - in branches/2015Q2/audio/tagtool: . files
Dmitry Marakasov
amdmi3 at FreeBSD.org
Wed May 20 19:48:35 UTC 2015
Author: amdmi3
Date: Wed May 20 19:48:34 2015
New Revision: 386885
URL: https://svnweb.freebsd.org/changeset/ports/386885
Log:
MFH: r386879
- Fix runtime problem, applications was unusable [1]
- Remove unneeded REINPLACE
PR: 200166 [1]
Submitted by: valery at vslash.com [1]
Approved by: ports-secteam (erwin)
Added:
branches/2015Q2/audio/tagtool/files/patch-src_Makefile.in
- copied unchanged from r386879, head/audio/tagtool/files/patch-src_Makefile.in
Modified:
branches/2015Q2/audio/tagtool/Makefile
branches/2015Q2/audio/tagtool/files/patch-configure
branches/2015Q2/audio/tagtool/files/patch-src__main.c
Directory Properties:
branches/2015Q2/ (props changed)
Modified: branches/2015Q2/audio/tagtool/Makefile
==============================================================================
--- branches/2015Q2/audio/tagtool/Makefile Wed May 20 19:47:51 2015 (r386884)
+++ branches/2015Q2/audio/tagtool/Makefile Wed May 20 19:48:34 2015 (r386885)
@@ -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 <bsd.port.mk>
Modified: branches/2015Q2/audio/tagtool/files/patch-configure
==============================================================================
--- branches/2015Q2/audio/tagtool/files/patch-configure Wed May 20 19:47:51 2015 (r386884)
+++ branches/2015Q2/audio/tagtool/files/patch-configure Wed May 20 19:48:34 2015 (r386885)
@@ -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"
Copied: branches/2015Q2/audio/tagtool/files/patch-src_Makefile.in (from r386879, head/audio/tagtool/files/patch-src_Makefile.in)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2015Q2/audio/tagtool/files/patch-src_Makefile.in Wed May 20 19:48:34 2015 (r386885, copy of r386879, head/audio/tagtool/files/patch-src_Makefile.in)
@@ -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: branches/2015Q2/audio/tagtool/files/patch-src__main.c
==============================================================================
--- branches/2015Q2/audio/tagtool/files/patch-src__main.c Wed May 20 19:47:51 2015 (r386884)
+++ branches/2015Q2/audio/tagtool/files/patch-src__main.c Wed May 20 19:48:34 2015 (r386885)
@@ -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[])
}
}
More information about the svn-ports-all
mailing list