diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-10-09 17:48:25 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-10-09 18:18:48 +0200 |
commit | a2f655954c5ab339342e4e390b08d02f524164d6 (patch) | |
tree | b874b23425a8b26a4007a8a613b33d6efebec1b1 /net-ftp | |
parent | net-ftp/frox: Support libressl (#565374) (diff) | |
download | gentoo-a2f655954c5ab339342e4e390b08d02f524164d6.tar.gz gentoo-a2f655954c5ab339342e4e390b08d02f524164d6.tar.bz2 gentoo-a2f655954c5ab339342e4e390b08d02f524164d6.zip |
net-ftp/ftp: Support libressl (#565378)
Package-Manager: portage-2.3.1
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild b/net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild index 1fcb67345276..2cc43cf1556c 100644 --- a/net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild +++ b/net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -21,11 +21,15 @@ SRC_URI="ftp://sunsite.unc.edu/pub/Linux/system/network/netkit/${MY_P}.tar.gz LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="ipv6 readline ssl" +IUSE="ipv6 libressl readline ssl" -RDEPEND=">=sys-libs/ncurses-5.2:= +RDEPEND=" + >=sys-libs/ncurses-5.2:= readline? ( sys-libs/readline:0= ) - ssl? ( dev-libs/openssl:0= )" + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) ) +" DEPEND="${RDEPEND}" S=${WORKDIR}/${MY_P} |