Gentoo Archives: gentoo-commits

From: Sven Wegener <swegener@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/x11vnc/
Date: Tue, 15 Jan 2019 21:51:16
Message-Id: 1547589035.5a7076340e26f2895412db99bfd8b94c31e18a25.swegener@gentoo
1 commit: 5a7076340e26f2895412db99bfd8b94c31e18a25
2 Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 15 21:40:36 2019 +0000
4 Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 15 21:50:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a707634
7
8 x11-misc/x11vnc: Version bump
9
10 Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 x11-misc/x11vnc/Manifest | 1 +
14 x11-misc/x11vnc/x11vnc-0.9.16.ebuild | 56 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 57 insertions(+)
16
17 diff --git a/x11-misc/x11vnc/Manifest b/x11-misc/x11vnc/Manifest
18 index 13789b39c9a..522ebcdadc2 100644
19 --- a/x11-misc/x11vnc/Manifest
20 +++ b/x11-misc/x11vnc/Manifest
21 @@ -1 +1,2 @@
22 DIST x11vnc-0.9.14_p20161013.tar.gz 1702047 BLAKE2B 3c2487208a2318816af408a3396d4b6cd7cbcd5b3aa7879f0390a1a6e0200cbe0bb2cc0c50581b3e3e4de916dae3fdb4426547de7203ebe95ddc62722e4219eb SHA512 82207e4d721dde633aaa13dbd1e6a18799615f8e3c225c33d4f8b01775fb81fb6b92a817e7d014653ac7b2349b0b31e46be8db25c5fd5e3ecee8fb93ca665b97
23 +DIST x11vnc-0.9.16.tar.gz 1708009 BLAKE2B a8789f95ef421a78a83703748e1d80fd45539dff24f80493fd75e357bc22378213915853f9d114248c172cd83977880e1e4e8a3f8df0771017e9988d83b7307d SHA512 69f65ee312f8dede6051b401304987502a213c6c28c7f41e855734f11de1fae14d5d493dc9c28b2e4b7c0be55f8dbd3b35dd2610aae910183772c3e626736fec
24
25 diff --git a/x11-misc/x11vnc/x11vnc-0.9.16.ebuild b/x11-misc/x11vnc/x11vnc-0.9.16.ebuild
26 new file mode 100644
27 index 00000000000..fdb0b5c8392
28 --- /dev/null
29 +++ b/x11-misc/x11vnc/x11vnc-0.9.16.ebuild
30 @@ -0,0 +1,56 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit autotools vcs-snapshot
37 +
38 +DESCRIPTION="A VNC server for real X displays"
39 +HOMEPAGE="https://libvnc.github.io/"
40 +SRC_URI="https://github.com/LibVNC/x11vnc/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +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"
45 +IUSE="crypt fbcon libressl ssl xinerama zeroconf"
46 +
47 +RDEPEND=">=net-libs/libvncserver-0.9.8[ssl?]
48 + x11-libs/libX11
49 + x11-libs/libXdamage
50 + x11-libs/libXext
51 + x11-libs/libXfixes
52 + x11-libs/libXrandr
53 + >=x11-libs/libXtst-1.1.0
54 + ssl? (
55 + !libressl? ( dev-libs/openssl:0= )
56 + libressl? ( dev-libs/libressl:= )
57 + )
58 + xinerama? ( x11-libs/libXinerama )
59 + zeroconf? ( >=net-dns/avahi-0.6.4 )
60 +"
61 +DEPEND="${RDEPEND}
62 + x11-base/xorg-proto
63 + x11-libs/libXt"
64 +
65 +src_prepare() {
66 + default
67 + eautoreconf
68 +}
69 +
70 +src_configure() {
71 + # --without-v4l because of missing video4linux 2.x support wrt #389079
72 + econf \
73 + --without-v4l \
74 + $(use_with crypt) \
75 + $(use_with fbcon fbdev) \
76 + $(use_with ssl) \
77 + $(use_with ssl crypto) \
78 + $(use_with xinerama) \
79 + $(use_with zeroconf avahi)
80 +}
81 +
82 +src_install() {
83 + default
84 + newinitd "${FILESDIR}/x11vnc.init.d" x11vnc
85 + newconfd "${FILESDIR}/x11vnc.conf.d" x11vnc
86 +}