mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-misc/anydesk: add 6.4.3
Signed-off-by: Jaco Kroon <jaco@uls.co.za> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
committed by
Joonas Niilola
parent
f375b27cbd
commit
f84d7b2e72
@@ -1,2 +1,3 @@
|
||||
DIST anydesk-6.3.3-amd64.tar.gz 7048124 BLAKE2B 6b97a60709337e01e70f11cfe4a82d71465961de99bc075c900d0f656427502fa6543c68b9dcd30cb4a3091ba0bd10b3b1bea0ea0e7792ef51a76b376d1ffe29 SHA512 4819ee1a7420fed503c743601a8e4e5000150e176b1d695e34c8ffb5da2475ca2ccd6f5024c9d011661e7e0f133a592bcfc19a2e32ba2ffd9a92f701b0eb929f
|
||||
DIST anydesk-6.4.0-amd64.tar.gz 8391102 BLAKE2B e0e18b0315d1472bd4479b48052f4617f29d4d8efb9bd61d8e6dac0368302369868703ffaad999c34b648157500e3ce441ea99d7bf54649b8c26d54cb193bbc2 SHA512 15daac65fd26af3abb8916cc545d9b58715cb807ad550908537af32cf152faa2d61d2005cf46de376b64117be93e3562a820eebb1d8f16f9a8f5dd0d21144b6b
|
||||
DIST anydesk-6.4.3-amd64.tar.gz 14211541 BLAKE2B 566a7d142708e0aecf4505fea4fd4c0afff369f767465f681e111fff666bb0ce52688908d4485311f8b7c4b6f70ddfa9bc84b1df4301e4a94fdd9a07b0084484 SHA512 c7866e13e12ac0467c5c4f51699e1633326c62c68c002cfacdebefc64875212d8ff8e074e30200800f48d1467612f23eb40ce40689845b95084494c1bddb6816
|
||||
|
||||
99
net-misc/anydesk/anydesk-6.4.3.ebuild
Normal file
99
net-misc/anydesk/anydesk-6.4.3.ebuild
Normal file
@@ -0,0 +1,99 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="8"
|
||||
|
||||
inherit desktop optfeature systemd xdg-utils
|
||||
|
||||
DESCRIPTION="Feature rich multi-platform remote desktop application"
|
||||
HOMEPAGE="https://anydesk.com"
|
||||
SRC_URI="https://download.anydesk.com/linux/${P}-amd64.tar.gz"
|
||||
|
||||
# OpeSSL/SSLeay, libvpx, zlib, Xiph, xxHash
|
||||
LICENSE="AnyDesk-TOS BSD BSD-2 openssl ZLIB"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* ~amd64"
|
||||
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-core:2
|
||||
dev-libs/glib:2
|
||||
media-libs/fontconfig:1.0
|
||||
media-libs/freetype:2
|
||||
media-libs/harfbuzz
|
||||
sys-apps/dbus
|
||||
sys-auth/polkit
|
||||
x11-libs/cairo
|
||||
x11-libs/gdk-pixbuf:2
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libX11
|
||||
x11-libs/libxcb
|
||||
x11-libs/libXdamage
|
||||
x11-libs/libXext
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libXi
|
||||
x11-libs/libxkbfile
|
||||
x11-libs/libXrandr
|
||||
x11-libs/libXrender
|
||||
x11-libs/libXtst
|
||||
x11-libs/pango
|
||||
"
|
||||
BDEPEND="dev-util/patchelf"
|
||||
|
||||
RESTRICT="bindist mirror"
|
||||
|
||||
QA_PREBUILT="opt/${PN}/*"
|
||||
|
||||
src_install() {
|
||||
local dst="/opt/${PN}"
|
||||
|
||||
exeinto ${dst}
|
||||
doexe ${PN}
|
||||
|
||||
dodir /opt/bin
|
||||
dosym "${dst}/${PN}" "/opt/bin/${PN}"
|
||||
|
||||
newinitd "${FILESDIR}/anydesk.init" anydesk
|
||||
systemd_newunit "${FILESDIR}/anydesk-4.0.1.service" anydesk.service
|
||||
|
||||
insinto /usr/share/polkit-1/actions
|
||||
doins polkit-1/com.anydesk.anydesk.policy
|
||||
|
||||
insinto /usr/share
|
||||
doins -r icons
|
||||
|
||||
domenu "${FILESDIR}/anydesk.desktop"
|
||||
|
||||
dodoc copyright README
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
|
||||
if [[ -z ${REPLACING_VERSIONS} ]]; then
|
||||
elog "To run AnyDesk as background service use:"
|
||||
elog
|
||||
elog "OpenRC:"
|
||||
elog "# rc-service anydesk start"
|
||||
elog "# rc-update add anydesk default"
|
||||
elog
|
||||
elog "Systemd:"
|
||||
elog "# systemctl start anydesk.service"
|
||||
elog "# systemctl enable anydesk.service"
|
||||
elog
|
||||
elog "Please see README at /usr/share/doc/${PF}/README.bz2 for"
|
||||
elog "further information about the linux version of AnyDesk."
|
||||
elog
|
||||
fi
|
||||
|
||||
optfeature_header "AnyDesk additional tools:"
|
||||
optfeature "lsb_release" sys-apps/lsb-release
|
||||
optfeature "lspci" sys-apps/pciutils
|
||||
optfeature "lsusb" sys-apps/usbutils
|
||||
optfeature "sound support" media-libs/libcanberra[gtk2]
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
Reference in New Issue
Block a user