mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
Quoting the linked PR: > SELinux base policy seems to hard depend on both the dbus and policykit > modules at present. > In the future, we can consider removing this once the older releases of > refpolicy have been dropped from the tree[1]. > > [1] SELinuxProject/refpolicy#906 We can stable newer now. Bug: https://bugs.gentoo.org/891963 Closes: https://github.com/gentoo/gentoo/pull/45124 Signed-off-by: Sam James <sam@gentoo.org>
24 lines
418 B
Bash
24 lines
418 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
MODS="android"
|
|
|
|
inherit selinux-policy-2
|
|
|
|
DESCRIPTION="SELinux policy for android"
|
|
|
|
if [[ ${PV} != 9999* ]] ; then
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
fi
|
|
|
|
DEPEND="${DEPEND}
|
|
sec-policy/selinux-java
|
|
sec-policy/selinux-xserver
|
|
"
|
|
RDEPEND="${RDEPEND}
|
|
sec-policy/selinux-java
|
|
sec-policy/selinux-xserver
|
|
"
|