git: b5a56c9450ee - main - Mk/Scripts/qa.sh: Add QA for libglvnd
Kevin Bowling
kbowling at FreeBSD.org
Mon Aug 2 16:20:58 UTC 2021
The branch main has been updated by kbowling:
URL: https://cgit.FreeBSD.org/ports/commit/?id=b5a56c9450ee879836d8e87624318342b8a252cd
commit b5a56c9450ee879836d8e87624318342b8a252cd
Author: Kevin Bowling <kbowling at FreeBSD.org>
AuthorDate: 2021-08-02 16:19:23 +0000
Commit: Kevin Bowling <kbowling at 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
More information about the dev-commits-ports-all
mailing list