From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6C038158009 for ; Wed, 28 Jun 2023 07:50:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FABBE092A; Wed, 28 Jun 2023 07:50:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63590E092A for ; Wed, 28 Jun 2023 07:50:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4F7B9335D06 for ; Wed, 28 Jun 2023 07:50:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7DB09AC6 for ; Wed, 28 Jun 2023 07:50:50 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1687938603.e33ed8e10528645fa679b66d43ccad0fee7bfae2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/psad/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-firewall/psad/psad-2.4.6-r1.ebuild X-VCS-Directories: net-firewall/psad/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e33ed8e10528645fa679b66d43ccad0fee7bfae2 X-VCS-Branch: master Date: Wed, 28 Jun 2023 07:50:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b212b91d-dfd1-4f34-99ad-f93933669617 X-Archives-Hash: ff4300f5ad522350a4c6d8ff35cbfee3 commit: e33ed8e10528645fa679b66d43ccad0fee7bfae2 Author: Sam James gentoo org> AuthorDate: Wed Jun 28 07:45:39 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 28 07:50:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e33ed8e1 net-firewall/psad: add missing selinux policy dep Signed-off-by: Sam James gentoo.org> net-firewall/psad/psad-2.4.6-r1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/net-firewall/psad/psad-2.4.6-r1.ebuild b/net-firewall/psad/psad-2.4.6-r1.ebuild index d9125b0b0558..7f7c63a676c3 100644 --- a/net-firewall/psad/psad-2.4.6-r1.ebuild +++ b/net-firewall/psad/psad-2.4.6-r1.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 @@ -12,6 +12,7 @@ SRC_URI="https://www.cipherdyne.org/psad/download/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 ~arm64 ppc ~sparc x86" +IUSE="selinux" RDEPEND=" dev-perl/Bit-Vector @@ -22,7 +23,9 @@ RDEPEND=" net-misc/whois virtual/logger virtual/mailx - virtual/perl-Storable" + virtual/perl-Storable + selinux? ( sec-policy/selinux-psad ) +" BDEPEND="virtual/perl-ExtUtils-MakeMaker" PATCHES=( "${FILESDIR}"/${PN}-2.2.4-var-run.patch )