diff options
author | Zac Medico <zmedico@gentoo.org> | 2019-01-02 14:49:13 -0800 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2019-01-02 14:49:21 -0800 |
commit | 46752b8bcb7b83cc5f1fc37d9d84b244f0728dec (patch) | |
tree | 6e23ec93f73200afa45973f8faff1b3144fdc571 /net-vpn/peervpn | |
parent | dev-libs/libcharon: remove old 3.3.0, 3.5.1 (diff) | |
download | gentoo-46752b8bcb7b83cc5f1fc37d9d84b244f0728dec.tar.gz gentoo-46752b8bcb7b83cc5f1fc37d9d84b244f0728dec.tar.bz2 gentoo-46752b8bcb7b83cc5f1fc37d9d84b244f0728dec.zip |
net-vpn/peervpn: require openssl 1.0.x or libressl (bug 674344)
Upstream does not support openssl 1.1.x.
Reported-by: Toralf Förster <toralf@gentoo.org>
Closes: https://bugs.gentoo.org/674344
Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'net-vpn/peervpn')
-rw-r--r-- | net-vpn/peervpn/peervpn-0.044-r4.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net-vpn/peervpn/peervpn-0.044-r4.ebuild b/net-vpn/peervpn/peervpn-0.044-r4.ebuild index 27b19165e236..7d270551df87 100644 --- a/net-vpn/peervpn/peervpn-0.044-r4.ebuild +++ b/net-vpn/peervpn/peervpn-0.044-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -13,8 +13,9 @@ SRC_URI="https://github.com/peervpn/peervpn/archive/${EGIT_COMMIT}.tar.gz -> ${P LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -RDEPEND="dev-libs/openssl:0=" +IUSE="libressl" +RDEPEND="libressl? ( dev-libs/libressl:0= ) + !libressl? ( <dev-libs/openssl-1.1:0= )" DEPEND="${RDEPEND}" S=${WORKDIR}/${PN}-${EGIT_COMMIT} |