speedie-overlay/x11-misc/slock-spde/slock-spde-9999.ebuild
2023-05-08 23:35:34 +02:00

52 lines
1 KiB
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit fcaps savedconfig toolchain-funcs
DESCRIPTION="speedie's fork of slock with image, text, .Xresources support and more."
HOMEPAGE="https://speedie.site"
#SRC_URI="https://codeberg.org/speedie/slock/releases/download/${PV}/${P}.tar.gz"
inherit git-r3
EGIT_REPO_URI="https://codeberg.org/speedie/slock.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm64 ~hppa ppc64 x86"
RDEPEND="
virtual/libcrypt:=
x11-libs/libX11
x11-libs/libXext
x11-libs/libXrandr
media-libs/harfbuzz
media-libs/imlib2
"
DEPEND="
${RDEPEND}
x11-base/xorg-proto
"
src_prepare() {
default
restore_config options.h
}
src_install() {
default
save_config options.h
}
pkg_postinst() {
# cap_dac_read_search used to be enough for shadow access
# but now slock wants to write to /proc/self/oom_score_adj
# and for that it needs:
fcaps \
cap_dac_override,cap_setgid,cap_setuid,cap_sys_resource \
/usr/bin/slock
savedconfig_pkg_postinst
}