Date: Mon, 2 Aug 2021 16:20:58 GMT From: Kevin Bowling <kbowling@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: b5a56c9450ee - main - Mk/Scripts/qa.sh: Add QA for libglvnd Message-ID: <202108021620.172GKwo2076197@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by kbowling: URL: https://cgit.FreeBSD.org/ports/commit/?id=b5a56c9450ee879836d8e87624318342b8a252cd commit b5a56c9450ee879836d8e87624318342b8a252cd Author: Kevin Bowling <kbowling@FreeBSD.org> AuthorDate: 2021-08-02 16:19:23 +0000 Commit: Kevin Bowling <kbowling@FreeBSD.org> CommitDate: 2021-08-02 16:20:45 +0000 Mk/Scripts/qa.sh: Add QA for libglvnd Reported by: tcbrener Reviewed by: tcbrener Differential Revision: https://reviews.freebsd.org/D31375 --- Mk/Scripts/qa.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh index c02dffde5a97..13548ddb38c7 100644 --- a/Mk/Scripts/qa.sh +++ b/Mk/Scripts/qa.sh @@ -534,12 +534,16 @@ proxydeps_suggest_uses() { # gl-related elif expr ${lib_file} : "${LOCALBASE}/lib/libGL.so.*$" > /dev/null; then warn "you need USE_GL+=gl" + elif expr ${lib_file} : "${LOCALBASE}/lib/libGLX.so.*$" > /dev/null; then + warn "you need USE_GL+=gl" elif expr ${lib_file} : "${LOCALBASE}/lib/libgbm.so.*$" > /dev/null; then warn "you need USE_GL+=gbm" elif expr ${lib_file} : "${LOCALBASE}/lib/libGLESv2.so.*$" > /dev/null; then warn "you need USE_GL+=glesv2" elif expr ${lib_file} : "${LOCALBASE}/lib/libEGL.so.*$" > /dev/null; then warn "you need USE_GL+=egl" + elif expr ${lib_file} : "${LOCALBASE}/lib/libOpenGL.so.*$" > /dev/null; then + warn "you need USE_GL+=opengl" elif [ ${pkg} = 'graphics/glew' ]; then warn "you need USE_GL+=glew" elif [ ${pkg} = 'graphics/libGLU' ]; then
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108021620.172GKwo2076197>