Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libvncserver/
Date: Tue, 28 Jan 2020 20:55:42
Message-Id: 1580244915.b30afdd16ea7808398d23f3c8dea43f8f370dc90.asturm@gentoo
1 commit: b30afdd16ea7808398d23f3c8dea43f8f370dc90
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 28 20:54:43 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 28 20:55:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b30afdd1
7
8 net-libs/libvncserver: Drop 0.9.12-r3
9
10 Package-Manager: Portage-2.3.86, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 .../libvncserver/libvncserver-0.9.12-r3.ebuild | 73 ----------------------
14 1 file changed, 73 deletions(-)
15
16 diff --git a/net-libs/libvncserver/libvncserver-0.9.12-r3.ebuild b/net-libs/libvncserver/libvncserver-0.9.12-r3.ebuild
17 deleted file mode 100644
18 index 9661224c2a1..00000000000
19 --- a/net-libs/libvncserver/libvncserver-0.9.12-r3.ebuild
20 +++ /dev/null
21 @@ -1,73 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit cmake
28 -
29 -MY_P="LibVNCServer-${PV}"
30 -DESCRIPTION="library for creating vnc servers"
31 -HOMEPAGE="https://libvnc.github.io/"
32 -SRC_URI="https://github.com/LibVNC/${PN}/archive/${MY_P}.tar.gz"
33 -
34 -# libvncserver/tightvnc-filetransfer/*: GPL-2, but we don't build it
35 -# common/d3des.*: https://github.com/LibVNC/libvncserver/issues/88
36 -LICENSE="GPL-2+ LGPL-2.1+ BSD MIT"
37 -# no sub slot wanted (yet), see #578958
38 -SLOT="0"
39 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux"
40 -IUSE="+24bpp gcrypt gnutls ipv6 +jpeg libressl lzo +png sasl ssl systemd +threads +zlib"
41 -# https://bugs.gentoo.org/690202
42 -# https://bugs.gentoo.org/435326
43 -# https://bugs.gentoo.org/550916
44 -REQUIRED_USE="jpeg? ( zlib ) png? ( zlib ) ssl? ( !gnutls? ( threads ) )"
45 -
46 -DEPEND="
47 - gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0= )
48 - ssl? (
49 - !gnutls? (
50 - !libressl? ( >=dev-libs/openssl-1.0.2:0= )
51 - libressl? ( >=dev-libs/libressl-2.7.0:0= )
52 - )
53 - gnutls? ( >=net-libs/gnutls-2.12.23-r6:0= )
54 - )
55 - jpeg? ( >=virtual/jpeg-0-r2:0 )
56 - lzo? ( dev-libs/lzo )
57 - png? ( >=media-libs/libpng-1.6.10:0= )
58 - sasl? ( dev-libs/cyrus-sasl )
59 - systemd? ( sys-apps/systemd:= )
60 - zlib? ( >=sys-libs/zlib-1.2.8-r1:0= )"
61 -RDEPEND="${DEPEND}"
62 -
63 -S="${WORKDIR}/${PN}-${MY_P}"
64 -
65 -DOCS=( AUTHORS ChangeLog NEWS README.md TODO )
66 -
67 -PATCHES=(
68 - "${FILESDIR}"/${P}-cmake-libdir.patch
69 - "${FILESDIR}"/${P}-pkgconfig-libdir.patch
70 - "${FILESDIR}"/${P}-libgcrypt.patch
71 - "${FILESDIR}"/${P}-sparc-unaligned.patch
72 - "${FILESDIR}"/${P}-CVE-2018-20750.patch
73 - "${FILESDIR}"/${P}-CVE-2019-15681.patch
74 - "${FILESDIR}"/${P}-fix-tight-raw-decoding.patch
75 -)
76 -
77 -src_configure() {
78 - local mycmakeargs=(
79 - -DWITH_ZLIB=$(usex zlib ON OFF)
80 - -DWITH_LZO=$(usex lzo ON OFF)
81 - -DWITH_JPEG=$(usex jpeg ON OFF)
82 - -DWITH_PNG=$(usex png ON OFF)
83 - -DWITH_THREADS=$(usex threads ON OFF)
84 - -DWITH_GNUTLS=$(usex gnutls $(usex ssl ON OFF) OFF)
85 - -DWITH_OPENSSL=$(usex gnutls OFF $(usex ssl ON OFF))
86 - -DWITH_GCRYPT=$(usex gcrypt ON OFF)
87 - -DWITH_SYSTEMD=$(usex systemd ON OFF)
88 - -DWITH_FFMPEG=OFF
89 - -DWITH_24BPP=$(usex 24bpp ON OFF)
90 - -DWITH_IPv6=$(usex ipv6 ON OFF)
91 - -DWITH_SASL=$(usex sasl ON OFF)
92 - )
93 - cmake_src_configure
94 -}