From owner-svn-ports-all@freebsd.org Wed Jan 6 18:45:30 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 21E214DA599; Wed, 6 Jan 2021 18:45:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D9ywn6L3wz4kF7; Wed, 6 Jan 2021 18:45:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CBCFC23888; Wed, 6 Jan 2021 18:45:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 106IjTf8055118; Wed, 6 Jan 2021 18:45:29 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 106IjT9W055116; Wed, 6 Jan 2021 18:45:29 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202101061845.106IjT9W055116@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 6 Jan 2021 18:45:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r560550 - head/graphics/vulkan-loader X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/graphics/vulkan-loader X-SVN-Commit-Revision: 560550 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2021 18:45:30 -0000 Author: jbeich Date: Wed Jan 6 18:45:29 2021 New Revision: 560550 URL: https://svnweb.freebsd.org/changeset/ports/560550 Log: graphics/vulkan-loader: minor cleanup - Update description - Convert to USES=xorg - Prefer standard _DESC - Simplify _DEPENDS - Drop excessive newlines Modified: head/graphics/vulkan-loader/Makefile (contents, props changed) head/graphics/vulkan-loader/pkg-descr (contents, props changed) Modified: head/graphics/vulkan-loader/Makefile ============================================================================== --- head/graphics/vulkan-loader/Makefile Wed Jan 6 18:45:23 2021 (r560549) +++ head/graphics/vulkan-loader/Makefile Wed Jan 6 18:45:29 2021 (r560550) @@ -10,33 +10,31 @@ COMMENT= Driver loader for the Vulkan graphics API LICENSE= APACHE20 -BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers +BUILD_DEPENDS= vulkan-headers>0:graphics/vulkan-headers USES= cmake compiler:${ARCH:Mi386:C/.+/gcc-/}c++11-lib pkgconfig python:3.4+,build -USE_LDCONFIG= yes - USE_GITHUB= yes +USE_LDCONFIG= yes GH_ACCOUNT= KhronosGroup GH_PROJECT= Vulkan-Loader - CMAKE_ON= CMAKE_SKIP_RPATH CMAKE_OFF= BUILD_TESTS -OPTIONS_DEFINE= XLIB XCB WAYLAND -OPTIONS_DEFAULT=XLIB XCB WAYLAND +OPTIONS_DEFINE= WAYLAND XCB XLIB +OPTIONS_DEFAULT=WAYLAND XCB XLIB -XLIB_DESC= Build Xlib WSI (Window System Integration) support -XCB_DESC= Build XCB WSI (Window System Integration) support -WAYLAND_DESC= Build Wayland WSI (Window System Integration) support +WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland +WAYLAND_CMAKE_BOOL= BUILD_WSI_WAYLAND_SUPPORT -XLIB_CMAKE_BOOL= BUILD_WSI_XLIB_SUPPORT -XLIB_LIB_DEPENDS= libX11.so:x11/libX11 \ - libXrandr.so:x11/libXrandr +XCB_DESC= ${X11_DESC} via libxcb +XCB_USES= xorg +XCB_USE= XORG=xcb XCB_CMAKE_BOOL= BUILD_WSI_XCB_SUPPORT -XCB_LIB_DEPENDS= libX11-xcb.so:x11/libX11 \ - libxcb.so:x11/libxcb -WAYLAND_CMAKE_BOOL= BUILD_WSI_WAYLAND_SUPPORT -WAYLAND_LIB_DEPENDS= libwayland-egl.so:graphics/wayland + +XLIB_DESC= ${X11_DESC} via libX11 +XLIB_USES= xorg +XLIB_USE= XORG=x11,xrandr +XLIB_CMAKE_BOOL= BUILD_WSI_XLIB_SUPPORT post-patch: # _XOPEN_SOURCE enforces X/Open-compliance but alloca isn't there Modified: head/graphics/vulkan-loader/pkg-descr ============================================================================== --- head/graphics/vulkan-loader/pkg-descr Wed Jan 6 18:45:23 2021 (r560549) +++ head/graphics/vulkan-loader/pkg-descr Wed Jan 6 18:45:29 2021 (r560550) @@ -1,6 +1,12 @@ -Vulkan is a low-level cross-platform 3D graphics and compute API. - -This port provides the Khronos official ICD (Installable Client Driver) loader, -which is necessary for loading Vulkan drivers in a running application. +Vulkan is an explicit API, enabling direct control over how GPUs +actually work. As such, Vulkan supports systems that have multiple +GPUs, each running with a different driver, or ICD (Installable Client +Driver). Vulkan also supports multiple global contexts (instances, in +Vulkan terminology). The ICD loader is a library that is placed +between a Vulkan application and any number of Vulkan drivers, in +order to support multiple drivers and the instance-level functionality +that works across these drivers. Additionally, the loader manages +inserting Vulkan layer libraries, such as validation layers, between +an application and the drivers. WWW: https://github.com/KhronosGroup/Vulkan-Loader