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 8BFFF138334 for ; Tue, 21 May 2019 18:41:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD68CE0875; Tue, 21 May 2019 18:41:22 +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 934C6E0875 for ; Tue, 21 May 2019 18:41:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6B613344D57 for ; Tue, 21 May 2019 18:41:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A0B65FC for ; Tue, 21 May 2019 18:41:17 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1558464054.1add981fc151795bcd45fd7b3d138429b4fa28f9.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/x11vnc/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/x11vnc/x11vnc-0.9.16-r2.ebuild X-VCS-Directories: x11-misc/x11vnc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1add981fc151795bcd45fd7b3d138429b4fa28f9 X-VCS-Branch: master Date: Tue, 21 May 2019 18:41:17 +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: ceb29019-6569-4885-9df9-e2d7681422bc X-Archives-Hash: 2ae86bbe3751086eb43db42da75b09b5 commit: 1add981fc151795bcd45fd7b3d138429b4fa28f9 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue May 21 18:38:24 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue May 21 18:40:54 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1add981f x11-misc/x11vnc: USE !ssl is broken, drop it Closes: https://bugs.gentoo.org/686494 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> x11-misc/x11vnc/x11vnc-0.9.16-r2.ebuild | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/x11-misc/x11vnc/x11vnc-0.9.16-r2.ebuild b/x11-misc/x11vnc/x11vnc-0.9.16-r2.ebuild index f78d4c9f6ab..5eed4727039 100644 --- a/x11-misc/x11vnc/x11vnc-0.9.16-r2.ebuild +++ b/x11-misc/x11vnc/x11vnc-0.9.16-r2.ebuild @@ -12,18 +12,16 @@ SRC_URI="https://github.com/LibVNC/x11vnc/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="crypt fbcon libressl ssl +xcomposite +xdamage +xfixes xinerama +xrandr zeroconf" +IUSE="crypt fbcon libressl +xcomposite +xdamage +xfixes xinerama +xrandr zeroconf" COMMON_DEPEND=" - >=net-libs/libvncserver-0.9.8[ssl?] + >=net-libs/libvncserver-0.9.8[ssl] x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext >=x11-libs/libXtst-1.1.0 - ssl? ( - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:= ) - ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:= ) xcomposite? ( x11-libs/libXcomposite ) xdamage? ( x11-libs/libXdamage ) xfixes? ( x11-libs/libXfixes ) @@ -52,15 +50,16 @@ src_prepare() { src_configure() { # --without-v4l because of missing video4linux 2.x support wrt #389079 + # --with-crypto --with-ssl because USE=-ssl is broken (bug #686494) econf \ + --with-crypto \ + --with-ssl \ --without-v4l \ --without-xkeyboard \ --without-fbpm \ --without-dpms \ $(use_with crypt) \ $(use_with fbcon fbdev) \ - $(use_with ssl) \ - $(use_with ssl crypto) \ $(use_with xcomposite) \ $(use_with xdamage) \ $(use_with xfixes) \