diff options
author | Marek Szuba <marecki@gentoo.org> | 2022-11-10 22:22:09 +0000 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2022-11-10 22:39:50 +0000 |
commit | 2b0642b7eb8341f26e5358c6ec9c68b2ef437ea9 (patch) | |
tree | 1682456b203d2ad30c44573eff29b3947554e9e0 /x11-misc/i3lock/i3lock-2.14.1-r1.ebuild | |
parent | app-text/bibletime: drop 3.0.3-r2 (diff) | |
download | gentoo-2b0642b7eb8341f26e5358c6ec9c68b2ef437ea9.tar.gz gentoo-2b0642b7eb8341f26e5358c6ec9c68b2ef437ea9.tar.bz2 gentoo-2b0642b7eb8341f26e5358c6ec9c68b2ef437ea9.zip |
x11-misc/i3lock: drop USE dependency on x11-libs/libxcb[xkb]
i3lock may or may not get a new version soon so let's just get this
done. Direct-to-stable commit because as stated in the bug, the USE flag
at hand has been a no-op for more than two years.
Closes: https://bugs.gentoo.org/875983
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'x11-misc/i3lock/i3lock-2.14.1-r1.ebuild')
-rw-r--r-- | x11-misc/i3lock/i3lock-2.14.1-r1.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/x11-misc/i3lock/i3lock-2.14.1-r1.ebuild b/x11-misc/i3lock/i3lock-2.14.1-r1.ebuild new file mode 100644 index 000000000000..dbfbae8d42c9 --- /dev/null +++ b/x11-misc/i3lock/i3lock-2.14.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 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-xrm" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + + sed -i -e 's:login:system-auth:g' pam/${PN} || die +} |