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 A2495138330 for ; Sun, 9 Oct 2016 16:19:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FE34E0BC8; Sun, 9 Oct 2016 16:19:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 59629E0BC8 for ; Sun, 9 Oct 2016 16:19:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 66605341638 for ; Sun, 9 Oct 2016 16:19:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11F7924B1 for ; Sun, 9 Oct 2016 16:19:15 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1476029933.8fb36b13c96f92cd003e804015e1426dab01d471.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/yafc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-ftp/yafc/yafc-1.3.7.ebuild X-VCS-Directories: net-ftp/yafc/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 8fb36b13c96f92cd003e804015e1426dab01d471 X-VCS-Branch: master Date: Sun, 9 Oct 2016 16:19:15 +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-Archives-Salt: 5739bf0a-a188-4fb4-bfff-de082f49c3e3 X-Archives-Hash: b6cd4efc4c54d13720a9e85c4e772297 commit: 8fb36b13c96f92cd003e804015e1426dab01d471 Author: Pacho Ramos gentoo org> AuthorDate: Sun Oct 9 15:51:42 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Oct 9 16:18:53 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fb36b13 net-ftp/yafc: Support libressl (#565396) Package-Manager: portage-2.3.1 net-ftp/yafc/yafc-1.3.7.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/net-ftp/yafc/yafc-1.3.7.ebuild b/net-ftp/yafc/yafc-1.3.7.ebuild index a1ffde9..947a709 100644 --- a/net-ftp/yafc/yafc-1.3.7.ebuild +++ b/net-ftp/yafc/yafc-1.3.7.ebuild @@ -13,16 +13,19 @@ SRC_URI="http://www.yafc-ftp.com/downloads/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86" -IUSE="ipv6 readline kerberos socks5 ssh" +IUSE="ipv6 libressl kerberos readline socks5 ssh" -DEPEND="dev-libs/openssl:0 +RDEPEND=" sys-libs/ncurses:* dev-libs/libbsd - readline? ( >=sys-libs/readline-6 ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) kerberos? ( virtual/krb5 ) + readline? ( >=sys-libs/readline-6:0= ) socks5? ( net-proxy/dante ) - ssh? ( net-libs/libssh )" -RDEPEND="${DEPEND}" + ssh? ( net-libs/libssh ) +" +DEPEND="${RDEPEND}" DOCS=( BUGS NEWS README.md THANKS TODO )