diff options
author | Sam James <sam@gentoo.org> | 2023-06-28 22:16:20 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-06-28 22:16:20 +0100 |
commit | 90a09a07358250b04ccef8111f6fcd024b5b609f (patch) | |
tree | fe68428d09687f45f65e8825f99e9aa293924fbc | |
parent | dev-cpp/clucene: crank copyright (diff) | |
download | gentoo-90a09a07358250b04ccef8111f6fcd024b5b609f.tar.gz gentoo-90a09a07358250b04ccef8111f6fcd024b5b609f.tar.bz2 gentoo-90a09a07358250b04ccef8111f6fcd024b5b609f.zip |
net-misc/netkit-telnetd: add missing selinux policy dep
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild index 5859b09f298b..1cdb22da14b8 100644 --- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild +++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" @@ -16,11 +16,16 @@ SRC_URI="http://ftp.linux.org.uk/pub/linux/Networking/netkit/netkit-telnet-${PV} LICENSE="BSD" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" -IUSE="" - -DEPEND=">=sys-libs/ncurses-5.2:= - !net-misc/telnet-bsd" -RDEPEND="${DEPEND}" +IUSE="selinux" + +DEPEND=" + >=sys-libs/ncurses-5.2:= + !net-misc/telnet-bsd +" +RDEPEND=" + ${DEPEND} + selinux? ( sec-policy/selinux-telnet ) +" S=${WORKDIR}/netkit-telnet-${PV} |