From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1093812-garchives=archives.gentoo.org@lists.gentoo.org> 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 872ED138334 for <garchives@archives.gentoo.org>; Sat, 1 Jun 2019 08:15:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8641E08AC; Sat, 1 Jun 2019 08:15:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9F2FDE08AC for <gentoo-commits@lists.gentoo.org>; Sat, 1 Jun 2019 08:15:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 9CF743454DD for <gentoo-commits@lists.gentoo.org>; Sat, 1 Jun 2019 08:15:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1C21603 for <gentoo-commits@lists.gentoo.org>; Sat, 1 Jun 2019 08:15:22 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org> Message-ID: <1559376910.42a1cc501b1af28a8d17413d73a4be4ef1adafcf.mgorny@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-r3.ebuild X-VCS-Directories: x11-misc/x11vnc/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 42a1cc501b1af28a8d17413d73a4be4ef1adafcf X-VCS-Branch: master Date: Sat, 1 Jun 2019 08:15:22 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ab9b5513-e24a-4203-8391-98b0f13a9fe9 X-Archives-Hash: 9354cffb8ed488727d53d35570917923 commit: 42a1cc501b1af28a8d17413d73a4be4ef1adafcf Author: Alexander Tsoy <alexander <AT> tsoy <DOT> me> AuthorDate: Fri May 31 21:57:38 2019 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Jun 1 08:15:10 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42a1cc50 x11-misc/x11vnc: use myconf array for econf args Package-Manager: Portage-2.3.66, Repoman-2.3.11 Signed-off-by: Alexander Tsoy <alexander <AT> tsoy.me> Closes: https://github.com/gentoo/gentoo/pull/12071 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> x11-misc/x11vnc/x11vnc-0.9.16-r3.ebuild | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/x11-misc/x11vnc/x11vnc-0.9.16-r3.ebuild b/x11-misc/x11vnc/x11vnc-0.9.16-r3.ebuild index 644cbc1fdbc..752f08e414d 100644 --- a/x11-misc/x11vnc/x11vnc-0.9.16-r3.ebuild +++ b/x11-misc/x11vnc/x11vnc-0.9.16-r3.ebuild @@ -53,21 +53,23 @@ src_prepare() { src_configure() { # --without-v4l because of missing video4linux 2.x support wrt #389079 - econf \ - --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) \ - $(use_with xinerama) \ - $(use_with xrandr) \ + local myconf=( + --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) + $(use_with xinerama) + $(use_with xrandr) $(use_with zeroconf avahi) + ) + econf "${myconf[@]}" } src_install() {