mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-10 15:19:09 +02:00
Change was created by running the following command:: ekeyword ^ia64 */*/*.ebuild Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
40 lines
925 B
Bash
40 lines
925 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Sets up realtime scheduling"
|
|
HOMEPAGE="https://jackaudio.org/faq/linux_rt_config.html"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="public-domain"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
|
|
|
|
RDEPEND="acct-group/realtime
|
|
sys-libs/pam"
|
|
|
|
limitsdfile=40-${PN}.conf
|
|
rtgroup=realtime
|
|
|
|
src_compile() {
|
|
einfo "Generating ${limitsdfile}"
|
|
cat > ${limitsdfile} <<- EOF || die
|
|
# Start of ${limitsdfile} from ${P}
|
|
|
|
@${rtgroup} - rtprio 99
|
|
@${rtgroup} - memlock unlimited
|
|
|
|
# End of ${limitsdfile} from ${P}
|
|
EOF
|
|
}
|
|
|
|
src_install() {
|
|
insinto /etc/security/limits.d/
|
|
doins ${limitsdfile}
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "We have added realtime scheduling privileges for users in the ${rtgroup} group."
|
|
elog "Please make sure users needing such privileges are in that group."
|
|
}
|