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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CE15F139337 for ; Mon, 2 Aug 2021 00:44:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1EDD3E0967; Mon, 2 Aug 2021 00:44:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0792CE0967 for ; Mon, 2 Aug 2021 00:44:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1CECF3434DA for ; Mon, 2 Aug 2021 00:44:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0C6E823 for ; Mon, 2 Aug 2021 00:44:56 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1627865092.458a0d89548712054c3d15e01e34bbd99d46b291.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/sslh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/sslh/sslh-9999.ebuild X-VCS-Directories: net-misc/sslh/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 458a0d89548712054c3d15e01e34bbd99d46b291 X-VCS-Branch: master Date: Mon, 2 Aug 2021 00:44:56 +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: ce2e258f-c5d6-43f4-8b37-28fd64ee1ddd X-Archives-Hash: d9da9677aa488bf162ae58c5f269e9b1 commit: 458a0d89548712054c3d15e01e34bbd99d46b291 Author: Craig Andrews gentoo org> AuthorDate: Mon Aug 2 00:44:30 2021 +0000 Commit: Craig Andrews gentoo org> CommitDate: Mon Aug 2 00:44:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=458a0d89 net-misc/sslh: PCRE is an unconditional dependency See: https://github.com/yrutschle/sslh/commit/37d275 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Craig Andrews gentoo.org> net-misc/sslh/sslh-9999.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/net-misc/sslh/sslh-9999.ebuild b/net-misc/sslh/sslh-9999.ebuild index 81bb80b2588..8f18e66a69e 100644 --- a/net-misc/sslh/sslh-9999.ebuild +++ b/net-misc/sslh/sslh-9999.ebuild @@ -18,7 +18,7 @@ fi LICENSE="GPL-2" SLOT="0" -IUSE="caps pcre systemd tcpd" +IUSE="caps systemd tcpd" RDEPEND="caps? ( sys-libs/libcap ) systemd? ( sys-apps/systemd:= ) @@ -27,7 +27,7 @@ RDEPEND="caps? ( sys-libs/libcap ) DEPEND="${RDEPEND} dev-util/conf2struct dev-lang/perl - pcre? ( dev-libs/libpcre:= )" + dev-libs/libpcre:=" RESTRICT="test" @@ -49,7 +49,6 @@ src_compile() { emake \ CC="$(tc-getCC)" \ - USELIBPCRE=$(usev pcre) \ USELIBCAP=$(usev caps) \ USELIBWRAP=$(usev tcpd) \ USESYSTEMD=$(usev systemd)