diff options
Diffstat (limited to 'x11/hyprlock')
-rw-r--r-- | x11/hyprlock/Makefile | 2 | ||||
-rw-r--r-- | x11/hyprlock/distinfo | 6 | ||||
-rw-r--r-- | x11/hyprlock/files/patch-CMakeLists.txt | 30 |
3 files changed, 4 insertions, 34 deletions
diff --git a/x11/hyprlock/Makefile b/x11/hyprlock/Makefile index e4689892ce30..dbccb926deb8 100644 --- a/x11/hyprlock/Makefile +++ b/x11/hyprlock/Makefile @@ -1,6 +1,6 @@ PORTNAME= hyprlock DISTVERSIONPREFIX= v -DISTVERSION= 0.9.1 +DISTVERSION= 0.9.2 CATEGORIES= x11 wayland MAINTAINER= tagattie@FreeBSD.org diff --git a/x11/hyprlock/distinfo b/x11/hyprlock/distinfo index 4823ecb9437d..a6cb5b96c4c7 100644 --- a/x11/hyprlock/distinfo +++ b/x11/hyprlock/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754034433 -SHA256 (hyprwm-hyprlock-v0.9.1_GH0.tar.gz) = 03f26ceba049546767a903a5e5bcd78fa4d261a5d116febd45633b88b9f16a97 -SIZE (hyprwm-hyprlock-v0.9.1_GH0.tar.gz) = 83699 +TIMESTAMP = 1759979750 +SHA256 (hyprwm-hyprlock-v0.9.2_GH0.tar.gz) = d4a8ef9115232b3545dd517e96f1251f91022765eb272b5e7057c20e3e7e8837 +SIZE (hyprwm-hyprlock-v0.9.2_GH0.tar.gz) = 84454 diff --git a/x11/hyprlock/files/patch-CMakeLists.txt b/x11/hyprlock/files/patch-CMakeLists.txt deleted file mode 100644 index 7ec6a3c2d392..000000000000 --- a/x11/hyprlock/files/patch-CMakeLists.txt +++ /dev/null @@ -1,30 +0,0 @@ ---- CMakeLists.txt.orig 2025-07-17 09:05:58 UTC -+++ CMakeLists.txt -@@ -86,14 +86,25 @@ pkg_check_modules( - pangocairo - libdrm - gbm -- pam - hyprutils>=0.8.0 - sdbus-c++>=2.0.0 - hyprgraphics) -+find_library(PAM_FOUND pam) -+if(PAM_FOUND) -+ message(STATUS "Found pam") -+ set(PAM_LIB ${PAM_FOUND}) -+else() -+ pkg_check_modules(PAM IMPORTED_TARGET pam) -+ if(PAM_FOUND) -+ set(PAM_LIB PkgConfig::PAM) -+ else() -+ message(FATAL_ERROR "The required library libpam was not found.") -+ endif() -+endif() - - file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp") - add_executable(hyprlock ${SRCFILES}) --target_link_libraries(hyprlock PRIVATE pam rt Threads::Threads PkgConfig::deps -+target_link_libraries(hyprlock PRIVATE ${PAM_LIB} rt Threads::Threads PkgConfig::deps - OpenGL::EGL OpenGL::GLES3) - - # protocols |