head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.2 pkgsrc-2026Q1-base:1.1; locks; strict; comment @# @; 1.1 date 2025.12.30.04.00.09; author gutteridge; state Exp; branches; next ; commitid b48VDjz0YiLMUnoG; desc @@ 1.1 log @x11/sddm: add new package, version 0.21.0 Packaged in wip by Stepan Ipatov. (Review and minor changes by me.) SDDM is a modern display manager for X11 and Wayland aiming to be fast, simple and beautiful. It uses modern technologies like QtQuick, which in turn gives the designer the ability to create smooth, animated user interfaces. SDDM is extremely themeable. We put no restrictions on the user interface design, it is completely up to the designer. We simply provide a few callbacks to the user interface which can be used for authentication, suspend, etc. @ text @$NetBSD$ Update the minimum required cmake version to 3.5 to avoid build errors on modern cmake versions. Fix the shutdown command for NetBSD. --- CMakeLists.txt.orig 2025-10-03 11:58:46.078418066 +0000 +++ CMakeLists.txt @@@@ -1,4 +1,4 @@@@ -cmake_minimum_required(VERSION 3.4) +cmake_minimum_required(VERSION 3.5) project(SDDM) @@@@ -155,7 +155,7 @@@@ if (NOT ELOGIND_FOUND AND NOT SYSTEMD_FO # Set the VT on which sddm will normally appear, and the # commands for shutdown and reboot. On FreeBSD, there are # normally more getty's running than on Linux. - if("${CMAKE_SYSTEM_NAME}" STREQUAL "FreeBSD") + if("${CMAKE_SYSTEM_NAME}" STREQUAL "FreeBSD" OR "${CMAKE_SYSTEM_NAME}" STREQUAL "NetBSD") set(HALT_COMMAND "/sbin/shutdown -p now") else() set(HALT_COMMAND "/sbin/shutdown -h -P now") @