From owner-svn-ports-head@freebsd.org Tue Jan 19 01:20:21 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 50DA14DB3D6; Tue, 19 Jan 2021 01:20:21 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DKW6s1rjhz3mMX; Tue, 19 Jan 2021 01:20:21 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 328E41D479; Tue, 19 Jan 2021 01:20:21 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10J1KLdY058721; Tue, 19 Jan 2021 01:20:21 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10J1KLuO058720; Tue, 19 Jan 2021 01:20:21 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <202101190120.10J1KLuO058720@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Tue, 19 Jan 2021 01:20:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r561998 - head/audio/tagutil X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/audio/tagutil X-SVN-Commit-Revision: 561998 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jan 2021 01:20:21 -0000 Author: linimon Date: Tue Jan 19 01:20:20 2021 New Revision: 561998 URL: https://svnweb.freebsd.org/changeset/ports/561998 Log: Mark as BROKEN on riscv64: ld: error: cannot open /nxb-bin/usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone-riscv64.a: No such file or directory Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com build testing Modified: head/audio/tagutil/Makefile Modified: head/audio/tagutil/Makefile ============================================================================== --- head/audio/tagutil/Makefile Tue Jan 19 01:17:28 2021 (r561997) +++ head/audio/tagutil/Makefile Tue Jan 19 01:20:20 2021 (r561998) @@ -10,12 +10,14 @@ COMMENT= Command line interface tool to manage tags in LICENSE= BSD2CLAUSE +BROKEN_riscv64= fails to link: cannot open /nxb-bin/usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone-riscv64.a: No such file or directory + LIB_DEPENDS= libyaml.so:textproc/libyaml USE_GITHUB= yes GH_ACCOUNT= kAworu -USES= pkgconfig cmake iconv +USES= cmake compiler:c++11-lang iconv pkgconfig PLIST_FILES= bin/tagutil \ man/man1/tagutil.1.gz @@ -37,9 +39,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 +#.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