Date: Fri, 4 Oct 2019 20:08:27 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513776 - in head: graphics/libosmesa graphics/mesa-dri graphics/mesa-dri/files lang/clover Message-ID: <201910042008.x94K8Rmj003385@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Fri Oct 4 20:08:27 2019 New Revision: 513776 URL: https://svnweb.freebsd.org/changeset/ports/513776 Log: graphics/mesa-dri: revert r512573 and limit to llvm80 after r512440 Mesa 18.3 doesn't support LLVM 9. While some fixes were backported there're probably more issues. Apparently, Gnome shows black screen. As the port is unlikely to be ready for future LLVM_DEFAULT bumps without a version update just limit to previously tested value. PR: 239682 Requested by: imp Deleted: head/graphics/mesa-dri/files/patch-0a7e767 head/graphics/mesa-dri/files/patch-39d0c68 head/graphics/mesa-dri/files/patch-3e249b8 head/graphics/mesa-dri/files/patch-648dc52 head/graphics/mesa-dri/files/patch-b5012a0 head/graphics/mesa-dri/files/patch-dded2ed head/graphics/mesa-dri/files/patch-e4803ab Modified: head/graphics/libosmesa/Makefile (contents, props changed) head/graphics/mesa-dri/Makefile (contents, props changed) head/graphics/mesa-dri/Makefile.common (contents, props changed) head/lang/clover/Makefile (contents, props changed) Modified: head/graphics/libosmesa/Makefile ============================================================================== --- head/graphics/libosmesa/Makefile Fri Oct 4 19:55:05 2019 (r513775) +++ head/graphics/libosmesa/Makefile Fri Oct 4 20:08:27 2019 (r513776) @@ -3,7 +3,7 @@ PORTNAME= libosmesa PORTVERSION= ${MESAVERSION} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics COMMENT= Off-Screen Mesa implementation of the OpenGL API Modified: head/graphics/mesa-dri/Makefile ============================================================================== --- head/graphics/mesa-dri/Makefile Fri Oct 4 19:55:05 2019 (r513775) +++ head/graphics/mesa-dri/Makefile Fri Oct 4 20:08:27 2019 (r513776) @@ -3,7 +3,7 @@ PORTNAME= mesa-dri PORTVERSION= ${MESAVERSION} -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics COMMENT= OpenGL hardware acceleration drivers for DRI2+ Modified: head/graphics/mesa-dri/Makefile.common ============================================================================== --- head/graphics/mesa-dri/Makefile.common Fri Oct 4 19:55:05 2019 (r513775) +++ head/graphics/mesa-dri/Makefile.common Fri Oct 4 20:08:27 2019 (r513776) @@ -74,6 +74,10 @@ INSTALL_TARGET= install-strip .include <bsd.port.pre.mk> +.if ${LLVM_DEFAULT:S,-devel,990,} >= 90 +LLVM_DEFAULT= 80 +.endif + .if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH:Marm*} || ${ARCH} == i386 || ${ARCH:Mmips*} || ${ARCH:Mpowerpc*} BUILD_DEPENDS+= llvm${LLVM_DEFAULT}>=3.9.0_4:devel/llvm${LLVM_DEFAULT} .if ${COMPONENT} != libs Modified: head/lang/clover/Makefile ============================================================================== --- head/lang/clover/Makefile Fri Oct 4 19:55:05 2019 (r513775) +++ head/lang/clover/Makefile Fri Oct 4 20:08:27 2019 (r513776) @@ -17,12 +17,6 @@ ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= Clover needs a GPU supported by the Radeon KMS driver .include <bsd.port.options.mk> - -# Keep in sync with devel/libclc -.if ${LLVM_DEFAULT:S,-devel,990,} >= 90 -LLVM_DEFAULT= 80 -.endif - .include "${.CURDIR:H:H}/graphics/mesa-dri/Makefile.common" CONFIGURE_ARGS+= --enable-opencl --enable-opencl-icd --disable-dri \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910042008.x94K8Rmj003385>