pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/x11/qt6-qtbase



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Wed May  1 09:06:54 UTC 2024

Modified Files:
        pkgsrc/x11/qt6-qtbase: Makefile

Log Message:
qt6-qtbase: Adjust logic for PLIST.egldevice.

Avoids errors on systems that do not have the file in question, which will be
the majority of bulk build hosts.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 pkgsrc/x11/qt6-qtbase/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/x11/qt6-qtbase/Makefile
diff -u pkgsrc/x11/qt6-qtbase/Makefile:1.29 pkgsrc/x11/qt6-qtbase/Makefile:1.30
--- pkgsrc/x11/qt6-qtbase/Makefile:1.29 Sat Apr 27 11:49:40 2024
+++ pkgsrc/x11/qt6-qtbase/Makefile      Wed May  1 09:06:54 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.29 2024/04/27 11:49:40 adam Exp $
+# $NetBSD: Makefile,v 1.30 2024/05/01 09:06:54 jperkin Exp $
 
 DISTNAME=      qtbase-everywhere-src-${QTVERSION}
 PKGNAME=       qt6-qtbase-${QTVERSION}
@@ -245,9 +245,11 @@ PLIST.x11= yes
 .include "../../graphics/glu/buildlink3.mk"
 .  if !empty(MESALIB_SUPPORTS_EGL:Myes)
 PLIST.egl=     yes
+.    if exists(${X11BASE}/include/EGL/eglext.h)
 EGL_EXT_FILE=  cat ${X11BASE}/include/EGL/eglext.h
-.    if exists(${X11BASE}/include/EGL/eglext.h) && !empty(EGL_EXT_FILE:sh:MEGL_DRM_MASTER_FD_EXT)
+.      if !empty(EGL_EXT_FILE:sh:MEGL_DRM_MASTER_FD_EXT)
 PLIST.egldevice=       yes
+.      endif
 .    endif
 .  endif
 BUILDLINK_API_DEPENDS.libxcb+= libxcb>=1.11



Home | Main Index | Thread Index | Old Index