diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-09-28 23:00:49 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-09-29 00:17:54 -0400 |
commit | 1177cfffdde505fe933b012b4504e1bcac5b8967 (patch) | |
tree | 439bec57dd0f392320fbed7326511309bed9582d /x11-misc/x2vnc | |
parent | mail-filter/dcc: fix configure with clang16 (diff) | |
download | gentoo-1177cfffdde505fe933b012b4504e1bcac5b8967.tar.gz gentoo-1177cfffdde505fe933b012b4504e1bcac5b8967.tar.bz2 gentoo-1177cfffdde505fe933b012b4504e1bcac5b8967.zip |
x11-misc/x2vnc: EAPI7->8, use https, add some missing deps
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'x11-misc/x2vnc')
-rw-r--r-- | x11-misc/x2vnc/x2vnc-1.7.2-r2.ebuild (renamed from x11-misc/x2vnc/x2vnc-1.7.2-r1.ebuild) | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/x11-misc/x2vnc/x2vnc-1.7.2-r1.ebuild b/x11-misc/x2vnc/x2vnc-1.7.2-r2.ebuild index b9d93cf24e77..f148da4c7b74 100644 --- a/x11-misc/x2vnc/x2vnc-1.7.2-r1.ebuild +++ b/x11-misc/x2vnc/x2vnc-1.7.2-r2.ebuild @@ -1,27 +1,33 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 DESCRIPTION="Control a remote computer running VNC from X" -HOMEPAGE="http://fredrik.hubbe.net/x2vnc.html" -SRC_URI="http://fredrik.hubbe.net/${PN}/${P}.tar.gz" +HOMEPAGE="https://fredrik.hubbe.net/x2vnc.html" +SRC_URI="https://fredrik.hubbe.net/x2vnc/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" KEYWORDS="~alpha amd64 ppc sparc x86" IUSE="tk" -RDEPEND="x11-libs/libX11 +COMMON_DEPEND=" + x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXext - x11-libs/libXinerama" -DEPEND="${RDEPEND} - x11-base/xorg-proto + x11-libs/libXinerama + x11-libs/libXrandr + x11-libs/libXxf86dga" +RDEPEND=" + ${COMMON_DEPEND} tk? ( dev-tcltk/expect )" +DEPEND=" + ${COMMON_DEPEND} + x11-base/xorg-proto" PATCHES=( - "${FILESDIR}/expectk.patch" + "${FILESDIR}"/expectk.patch ) src_install() { |