gui-apps/waylock: add 1.4.0

Signed-off-by: Eric Joldasov <bratishkaerik@landless-city.net>
This commit is contained in:
Eric Joldasov
2025-03-07 20:35:59 +05:00
parent 3a18759754
commit b76d69491b
2 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Small screenlocker for Wayland compositors"
HOMEPAGE="https://isaacfreund.com/software/waylock/ https://codeberg.org/ifreund/waylock"
declare -g -r -A ZBS_DEPENDENCIES=(
[wayland-0.3.0-lQa1kjPIAQDmhGYpY-zxiRzQJFHQ2VqhJkQLbKKdt5wl.tar.gz]='https://codeberg.org/ifreund/zig-wayland/archive/v0.3.0.tar.gz'
[xkbcommon-0.3.0-VDqIe3K9AQB2fG5ZeRcMC9i7kfrp5m2rWgLrmdNn9azr.tar.gz]='https://codeberg.org/ifreund/zig-xkbcommon/archive/v0.3.0.tar.gz'
)
ZIG_SLOT="0.14"
inherit zig
SRC_URI="
https://codeberg.org/ifreund/waylock/releases/download/v${PV}/${P}.tar.gz
${ZBS_DEPENDENCIES_SRC_URI}
"
# waylock: ISC
# zig-wayland, zig-xkbcommon: MIT
LICENSE="ISC MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="man"
BDEPEND="
dev-libs/wayland-protocols
dev-util/wayland-scanner
man? ( app-text/scdoc )
"
DEPEND="
dev-libs/wayland
sys-libs/pam
x11-libs/libxkbcommon[wayland]
"
RDEPEND="${DEPEND}"
src_configure() {
local my_zbs_args=(
-Dpie=true
-Dman-pages=$(usex man true false)
)
zig_src_configure
}