mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-11 15:48:21 +02:00
32 lines
622 B
Bash
32 lines
622 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson
|
|
|
|
DESCRIPTION="Simple screen locker"
|
|
HOMEPAGE="https://i3wm.org/i3lock/"
|
|
SRC_URI="https://i3wm.org/${PN}/${P}.tar.xz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
|
|
|
|
RDEPEND="
|
|
dev-libs/libev
|
|
sys-libs/pam
|
|
x11-libs/cairo[X,xcb(+)]
|
|
x11-libs/libxcb
|
|
x11-libs/libxkbcommon[X]
|
|
x11-libs/xcb-util
|
|
x11-libs/xcb-util-image
|
|
x11-libs/xcb-util-xrm"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i -e 's:login:system-auth:g' pam/${PN} || die
|
|
}
|