svn commit: r561089 - branches/2021Q1/audio/tagtool

Kyle Evans kevans at FreeBSD.org
Sun Jan 10 17:31:20 UTC 2021


Author: kevans
Date: Sun Jan 10 17:31:19 2021
New Revision: 561089
URL: https://svnweb.freebsd.org/changeset/ports/561089

Log:
  MFH: r561088
  
  audio/tagtool: use libgnuregex from devel/libgnuregex
  
  libgnuregex has been removed in FreeBSD 13.0. The version in base had a
  number of known or likely bugs associated with it, so just use the newer
  and more stable port on all supported FreeBSD versions.
  
  PR:		252245

Modified:
  branches/2021Q1/audio/tagtool/Makefile
Directory Properties:
  branches/2021Q1/   (props changed)

Modified: branches/2021Q1/audio/tagtool/Makefile
==============================================================================
--- branches/2021Q1/audio/tagtool/Makefile	Sun Jan 10 17:29:35 2021	(r561088)
+++ branches/2021Q1/audio/tagtool/Makefile	Sun Jan 10 17:31:19 2021	(r561089)
@@ -4,7 +4,7 @@
 
 PORTNAME=	tagtool
 PORTVERSION=	0.12.3
-PORTREVISION=	14
+PORTREVISION=	15
 CATEGORIES=	audio
 MASTER_SITES=	SF
 
@@ -14,7 +14,8 @@ COMMENT=	GNOME MP3/Ogg file tagger
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-LIB_DEPENDS=	libid3.so:audio/id3lib \
+LIB_DEPENDS=	libgnuregex.so.6:devel/libgnuregex \
+		libid3.so:audio/id3lib \
 		libvorbis.so:audio/libvorbis
 
 USES=		compiler:c++11-lang gettext gmake gnome localbase:ldflags \


More information about the svn-ports-branches mailing list