diff options
author | Alexander Tsoy <alexander@tsoy.me> | 2024-01-04 21:58:27 +0300 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-01-20 12:47:50 +0000 |
commit | cea7c09c70390799b321479a59b597a25f951f9b (patch) | |
tree | 46caea9e055dd1e0fef124921de8ca7a03c09877 /net-libs | |
parent | app-misc/elasticsearch: add 8.11.3 (diff) | |
download | gentoo-cea7c09c70390799b321479a59b597a25f951f9b.tar.gz gentoo-cea7c09c70390799b321479a59b597a25f951f9b.tar.bz2 gentoo-cea7c09c70390799b321479a59b597a25f951f9b.zip |
net-libs/libvncserver: always enable gcrypt-based crypto backend
There are a few reasons for that:
- internal crypto backend doesn't support all authentication methods and
the use of external crypto backend was already forced via REQUIRED_USE
- openssl-based crypto backend is completely broken with openssl-3.0
- build system does not allow to disable openssl-based crypto backend when
openssl-based TLS backend is enabled without also enabling gcrypt-based
crypto backend
- all major distros are building with gcrypt-based crypto backend, so it
is the most tested configuration.
Closes: https://bugs.gentoo.org/893608
Signed-off-by: Alexander Tsoy <alexander@tsoy.me>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libvncserver/libvncserver-0.9.14-r2.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/net-libs/libvncserver/libvncserver-0.9.14-r2.ebuild b/net-libs/libvncserver/libvncserver-0.9.14-r2.ebuild new file mode 100644 index 000000000000..02c596ac0d4b --- /dev/null +++ b/net-libs/libvncserver/libvncserver-0.9.14-r2.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +MY_P="LibVNCServer-${PV}" + +DESCRIPTION="library for creating vnc servers" +HOMEPAGE="https://libvnc.github.io/" +SRC_URI="https://github.com/LibVNC/${PN}/archive/${MY_P}.tar.gz" +S="${WORKDIR}/${PN}-${MY_P}" + +# common/d3des.*: https://github.com/LibVNC/libvncserver/issues/88 +LICENSE="GPL-2 GPL-2+ LGPL-2.1+ BSD MIT" +# no sub slot wanted (yet), see #578958 +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" +IUSE="+24bpp +filetransfer gnutls ipv6 +jpeg lzo +png sasl ssl systemd +threads +zlib" +# https://bugs.gentoo.org/690202 +# https://bugs.gentoo.org/435326 +# https://bugs.gentoo.org/550916 +REQUIRED_USE=" + filetransfer? ( threads ) + jpeg? ( zlib ) + png? ( zlib ) + ssl? ( !gnutls? ( threads ) ) +" + +DEPEND=" + >=dev-libs/libgcrypt-1.5.3:0= + ssl? ( + !gnutls? ( >=dev-libs/openssl-1.0.2:0= ) + gnutls? ( >=net-libs/gnutls-2.12.23-r6:0= ) + ) + jpeg? ( media-libs/libjpeg-turbo:= ) + lzo? ( dev-libs/lzo ) + png? ( >=media-libs/libpng-1.6.10:0= ) + sasl? ( dev-libs/cyrus-sasl ) + systemd? ( sys-apps/systemd:= ) + zlib? ( >=sys-libs/zlib-1.2.8-r1:0= ) +" +RDEPEND="${DEPEND}" + +DOCS=( AUTHORS ChangeLog NEWS.md README.md ) + +PATCHES=( + "${FILESDIR}"/${P}-crypto-openssl-fix.patch +) + +src_configure() { + local mycmakeargs=( + -DWITH_EXAMPLES=OFF + -DWITH_FFMPEG=OFF + -DWITH_GTK=OFF + -DWITH_SDL=OFF + -DWITH_GCRYPT=ON + -DWITH_24BPP=$(usex 24bpp ON OFF) + -DWITH_TIGHTVNC_FILETRANSFER=$(usex filetransfer ON OFF) + -DWITH_GNUTLS=$(usex gnutls $(usex ssl ON OFF) OFF) + -DWITH_IPv6=$(usex ipv6 ON OFF) + -DWITH_JPEG=$(usex jpeg ON OFF) + -DWITH_LZO=$(usex lzo ON OFF) + -DWITH_OPENSSL=$(usex gnutls OFF $(usex ssl ON OFF)) + -DWITH_PNG=$(usex png ON OFF) + -DWITH_SASL=$(usex sasl ON OFF) + -DWITH_SYSTEMD=$(usex systemd ON OFF) + -DWITH_THREADS=$(usex threads ON OFF) + -DWITH_ZLIB=$(usex zlib ON OFF) + ) + cmake_src_configure +} |