svn commit: r472827 - head/audio/caps-lv2

Yuri Victorovich yuri at FreeBSD.org
Tue Jun 19 22:30:08 UTC 2018


Author: yuri
Date: Tue Jun 19 22:30:07 2018
New Revision: 472827
URL: https://svnweb.freebsd.org/changeset/ports/472827

Log:
  audio/caps-lv2: Switch to clang-5 to avoid the regression in clang-6.
  
  Remove BROKEN statements which have this regression as a reason.
  
  Reported by:	fallout

Modified:
  head/audio/caps-lv2/Makefile

Modified: head/audio/caps-lv2/Makefile
==============================================================================
--- head/audio/caps-lv2/Makefile	Tue Jun 19 21:48:16 2018	(r472826)
+++ head/audio/caps-lv2/Makefile	Tue Jun 19 22:30:07 2018	(r472827)
@@ -3,6 +3,7 @@
 
 PORTNAME=	caps-lv2
 PORTVERSION=	g20170626
+PORTREVISION=	1
 CATEGORIES=	audio
 
 MAINTAINER=	yuri at FreeBSD.org
@@ -11,8 +12,6 @@ COMMENT=	LV2 version of the C* Audio Plugin Suite
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BROKEN_armv6=		fails to build: dsp/v4f.h:153:12: no matching function for call to v4f_map
-BROKEN_armv7=		fails to build: dsp/v4f.h:153:12: no matching function for call to v4f_map
 BROKEN_powerpc64=	fails to build: cc1plus: unrecognized command line option -std=c++11
 
 BUILD_DEPENDS=	lv2>0:audio/lv2
@@ -21,6 +20,13 @@ USES=		gmake localbase
 USE_GITHUB=	yes
 GH_ACCOUNT=	moddevices
 GH_TAGNAME=	072e2fe
+
+# It suffers from the regression in clang-6: https://bugs.llvm.org/show_bug.cgi?id=36916
+LLVM_VER=	50
+BUILD_DEPENDS+=	clang${LLVM_VER}:devel/llvm${LLVM_VER}
+CPP=		clang-cpp${LLVM_VER}
+CC=		clang${LLVM_VER}
+CXX=		clang++${LLVM_VER}
 
 post-patch:
 	@${REINPLACE_CMD} -e "s|__APPLE__|__FreeBSD__|" \


More information about the svn-ports-all mailing list