Date: Fri, 3 Jan 2020 11:28:57 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r521931 - branches/2020Q1/audio/tagutil Message-ID: <202001031128.003BSvIP079225@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Fri Jan 3 11:28:56 2020 New Revision: 521931 URL: https://svnweb.freebsd.org/changeset/ports/521931 Log: MFH: r521930 audio/tagutil: move BROKEN where it belongs Approved by: ports-secteam blanket Modified: branches/2020Q1/audio/tagutil/Makefile Directory Properties: branches/2020Q1/ (props changed) Modified: branches/2020Q1/audio/tagutil/Makefile ============================================================================== --- branches/2020Q1/audio/tagutil/Makefile Fri Jan 3 11:28:22 2020 (r521930) +++ branches/2020Q1/audio/tagutil/Makefile Fri Jan 3 11:28:56 2020 (r521931) @@ -10,10 +10,6 @@ COMMENT= Command line interface tool to manage tags in LICENSE= BSD2CLAUSE -.if exists(/usr/lib/libc++.so) && ${/usr/bin/ld:L:tA} != /usr/bin/ld.lld -BROKEN= ld: undefined reference to symbol '__cxa_demangle@@CXXABI_1.3' (try adding -lcxxrt) -.endif - LIB_DEPENDS= libyaml.so:textproc/libyaml USE_GITHUB= yes @@ -41,6 +37,9 @@ OGG_LIB_DEPENDS=\ libvorbisfile.so:audio/libvorbis \ libogg.so:audio/libogg OGG_CMAKE_OFF= -DWITHOUT_OGGVORBIS=yes +.if exists(/usr/lib/libc++.so) && ${/usr/bin/ld:L:tA} != /usr/bin/ld.lld +TAGLIB_BROKEN= ld: undefined reference to symbol '__cxa_demangle@@CXXABI_1.3' (try adding -lcxxrt) +.endif TAGLIB_LIB_DEPENDS= libtag_c.so:audio/taglib TAGLIB_CMAKE_OFF= -DWITHOUT_TAGLIB=yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001031128.003BSvIP079225>