Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/yafc/
Date: Sun, 09 Oct 2016 16:19:27
Message-Id: 1476029933.8fb36b13c96f92cd003e804015e1426dab01d471.pacho@gentoo
1 commit: 8fb36b13c96f92cd003e804015e1426dab01d471
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 9 15:51:42 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 9 16:18:53 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fb36b13
7
8 net-ftp/yafc: Support libressl (#565396)
9
10 Package-Manager: portage-2.3.1
11
12 net-ftp/yafc/yafc-1.3.7.ebuild | 13 ++++++++-----
13 1 file changed, 8 insertions(+), 5 deletions(-)
14
15 diff --git a/net-ftp/yafc/yafc-1.3.7.ebuild b/net-ftp/yafc/yafc-1.3.7.ebuild
16 index a1ffde9..947a709 100644
17 --- a/net-ftp/yafc/yafc-1.3.7.ebuild
18 +++ b/net-ftp/yafc/yafc-1.3.7.ebuild
19 @@ -13,16 +13,19 @@ SRC_URI="http://www.yafc-ftp.com/downloads/${P}.tar.xz"
20 LICENSE="GPL-2"
21 SLOT="0"
22 KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
23 -IUSE="ipv6 readline kerberos socks5 ssh"
24 +IUSE="ipv6 libressl kerberos readline socks5 ssh"
25
26 -DEPEND="dev-libs/openssl:0
27 +RDEPEND="
28 sys-libs/ncurses:*
29 dev-libs/libbsd
30 - readline? ( >=sys-libs/readline-6 )
31 + !libressl? ( dev-libs/openssl:0= )
32 + libressl? ( dev-libs/libressl:0= )
33 kerberos? ( virtual/krb5 )
34 + readline? ( >=sys-libs/readline-6:0= )
35 socks5? ( net-proxy/dante )
36 - ssh? ( net-libs/libssh )"
37 -RDEPEND="${DEPEND}"
38 + ssh? ( net-libs/libssh )
39 +"
40 +DEPEND="${RDEPEND}"
41
42 DOCS=( BUGS NEWS README.md THANKS TODO )