diff options
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 +} |