mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 06:35:19 +02:00
Signed-off-by: Alexander Tsoy <alexander@tsoy.me> Part-of: https://github.com/gentoo/gentoo/pull/42189 Closes: https://github.com/gentoo/gentoo/pull/42189 Signed-off-by: Sam James <sam@gentoo.org>
79 lines
1.8 KiB
Bash
79 lines
1.8 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="VNC server for real X displays"
|
|
HOMEPAGE="https://libvnc.github.io/"
|
|
SRC_URI="https://github.com/LibVNC/x11vnc/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+-with-openssl-exception"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
|
|
IUSE="crypt drm fbcon ssl +xcomposite +xdamage +xfixes xinerama +xrandr zeroconf"
|
|
|
|
COMMON_DEPEND="
|
|
>=net-libs/libvncserver-0.9.8[ssl=]
|
|
x11-libs/libX11
|
|
x11-libs/libXcursor
|
|
x11-libs/libXext
|
|
>=x11-libs/libXtst-1.1.0
|
|
virtual/libcrypt:=
|
|
drm? ( x11-libs/libdrm )
|
|
ssl? ( dev-libs/openssl:0= )
|
|
xcomposite? ( x11-libs/libXcomposite )
|
|
xdamage? ( x11-libs/libXdamage )
|
|
xfixes? ( x11-libs/libXfixes )
|
|
xinerama? ( x11-libs/libXinerama )
|
|
xrandr? ( x11-libs/libXrandr )
|
|
zeroconf? ( >=net-dns/avahi-0.6.4 )
|
|
"
|
|
DEPEND="${COMMON_DEPEND}
|
|
x11-base/xorg-proto
|
|
x11-libs/libXt
|
|
"
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=920554
|
|
RDEPEND="${COMMON_DEPEND}
|
|
dev-lang/tk:0
|
|
"
|
|
|
|
DOCS=( NEWS README doc/. )
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-implicit-function-declaration.patch # https://github.com/LibVNC/x11vnc/pull/268
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
# --without-v4l because of missing video4linux 2.x support wrt #389079
|
|
local myconf=(
|
|
--without-v4l
|
|
--without-xkeyboard
|
|
--without-fbpm
|
|
--without-dpms
|
|
$(use_with crypt)
|
|
$(use_with drm)
|
|
$(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() {
|
|
default
|
|
newinitd "${FILESDIR}/x11vnc.init.d-r1" x11vnc
|
|
newconfd "${FILESDIR}/x11vnc.conf.d" x11vnc
|
|
}
|