Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/x11vnc/
Date: Sat, 01 Jun 2019 08:15:27
Message-Id: 1559376910.42a1cc501b1af28a8d17413d73a4be4ef1adafcf.mgorny@gentoo
1 commit: 42a1cc501b1af28a8d17413d73a4be4ef1adafcf
2 Author: Alexander Tsoy <alexander <AT> tsoy <DOT> me>
3 AuthorDate: Fri May 31 21:57:38 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 1 08:15:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42a1cc50
7
8 x11-misc/x11vnc: use myconf array for econf args
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.11
11 Signed-off-by: Alexander Tsoy <alexander <AT> tsoy.me>
12 Closes: https://github.com/gentoo/gentoo/pull/12071
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 x11-misc/x11vnc/x11vnc-0.9.16-r3.ebuild | 30 ++++++++++++++++--------------
16 1 file changed, 16 insertions(+), 14 deletions(-)
17
18 diff --git a/x11-misc/x11vnc/x11vnc-0.9.16-r3.ebuild b/x11-misc/x11vnc/x11vnc-0.9.16-r3.ebuild
19 index 644cbc1fdbc..752f08e414d 100644
20 --- a/x11-misc/x11vnc/x11vnc-0.9.16-r3.ebuild
21 +++ b/x11-misc/x11vnc/x11vnc-0.9.16-r3.ebuild
22 @@ -53,21 +53,23 @@ src_prepare() {
23
24 src_configure() {
25 # --without-v4l because of missing video4linux 2.x support wrt #389079
26 - econf \
27 - --without-v4l \
28 - --without-xkeyboard \
29 - --without-fbpm \
30 - --without-dpms \
31 - $(use_with crypt) \
32 - $(use_with fbcon fbdev) \
33 - $(use_with ssl) \
34 - $(use_with ssl crypto) \
35 - $(use_with xcomposite) \
36 - $(use_with xdamage) \
37 - $(use_with xfixes) \
38 - $(use_with xinerama) \
39 - $(use_with xrandr) \
40 + local myconf=(
41 + --without-v4l
42 + --without-xkeyboard
43 + --without-fbpm
44 + --without-dpms
45 + $(use_with crypt)
46 + $(use_with fbcon fbdev)
47 + $(use_with ssl)
48 + $(use_with ssl crypto)
49 + $(use_with xcomposite)
50 + $(use_with xdamage)
51 + $(use_with xfixes)
52 + $(use_with xinerama)
53 + $(use_with xrandr)
54 $(use_with zeroconf avahi)
55 + )
56 + econf "${myconf[@]}"
57 }
58
59 src_install() {