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 5AD7A13835A for ; Wed, 17 Mar 2021 00:15:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48CDEE07C5; Wed, 17 Mar 2021 00:15:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 B3666E07C5 for ; Wed, 17 Mar 2021 00:15:26 +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 6AEA3340E7F for ; Wed, 17 Mar 2021 00:15:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A0395B4 for ; Wed, 17 Mar 2021 00:15:23 +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: <1615939975.da8cbf47d255bb00739e453c9787cd85637082fe.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ssldump/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ssldump/ssldump-1.1.ebuild X-VCS-Directories: net-analyzer/ssldump/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: da8cbf47d255bb00739e453c9787cd85637082fe X-VCS-Branch: master Date: Wed, 17 Mar 2021 00:15:23 +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: a187a13e-7f6e-4581-a606-2f1b1794c498 X-Archives-Hash: 75dc88ca1d04bd8366c6d6b6ab40f8e4 commit: da8cbf47d255bb00739e453c9787cd85637082fe Author: Sam James gentoo org> AuthorDate: Wed Mar 17 00:11:23 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 17 00:12:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da8cbf47 net-analyzer/ssldump: fix USE=-ssl build Closes: https://bugs.gentoo.org/776727 Signed-off-by: Sam James gentoo.org> net-analyzer/ssldump/ssldump-1.1.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/net-analyzer/ssldump/ssldump-1.1.ebuild b/net-analyzer/ssldump/ssldump-1.1.ebuild index 552c500170c..0eeb3422588 100644 --- a/net-analyzer/ssldump/ssldump-1.1.ebuild +++ b/net-analyzer/ssldump/ssldump-1.1.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit multilib toolchain-funcs + +inherit toolchain-funcs DESCRIPTION="An SSLv3/TLS network protocol analyzer" HOMEPAGE="https://github.com/adulau/ssldump/" @@ -19,9 +20,7 @@ RDEPEND=" net-libs/libpcap ssl? ( >=dev-libs/openssl-1:0= ) " -DEPEND=" - ${RDEPEND} -" +DEPEND="${RDEPEND}" src_configure() { tc-export CC @@ -29,7 +28,7 @@ src_configure() { econf \ $(usex ssl --with-openssl-inc="${EPREFIX}/usr/include" '') \ $(usex ssl --with-openssl-lib="${EPREFIX}/usr/$(get_libdir)" '') \ - $(usex ssl --with-openssl="${EPREFIX}/usr") \ + $(usex ssl --with-openssl="${EPREFIX}/usr" '--without-openssl') \ --with-pcap-inc="${EPREFIX}/usr/include" \ --with-pcap-lib="${EPREFIX}/usr/$(get_libdir)" }