net-misc/anydesk: add 7.1.4

Signed-off-by: Jaco Kroon <jkroon@gentoo.org>
This commit is contained in:
Jaco Kroon
2026-02-15 13:51:40 +02:00
parent 9438b10001
commit b47983e59e
2 changed files with 104 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
DIST anydesk-7.1.1-amd64.tar.gz 14732954 BLAKE2B cdbb4a217c1ce89281cccb4f7d85d665539e675de791d0efe963926907c6f53c8ad3daa379dbfea60355a8edbd08e2e6d8b0778a8f3565a0dbf1dc93861cdd2f SHA512 fa325cca5fd909eb208b7ef78f94be1db298db814593a16ed1ab5180a4ebee006bd4f43e3d9c4db7da5c589ca4b10fe6af5d3332b4c230612d6a933699364291
DIST anydesk-7.1.3-amd64.tar.gz 14932865 BLAKE2B 07713c6d03649f12e4c3e2847e9978c22e0b2d3c956ebe9fef6a0b9c287cf96299f1d19c9c73a5f933e664d6af10eb21b491695fd2e8ffd93b7ead355e8830c9 SHA512 2f25a0440e0ebad7a0772a6475532cbf917d283ad486546ce0067c2c2f96d5837ea56cee5ea835b4c6dd9145c0326d31b9a038fa1783f877e7a045d155fc0186
DIST anydesk-7.1.3-arm64.tar.gz 14956692 BLAKE2B b8d0417247397e98e19d034772f5fd1859539d284599ce2555643b99ef9737f46ddec2ece3cffe42216aedb1f3e029055d1784c79a878c9939da4025aa403edd SHA512 d8a4812c1fbcd18da4dc4f41bd8eff770e468538610ddd7862035b256a84f61ea1525babbd0cac10548d48aff68f32ccaf71e5b24499a2b05164e071b6afc0ed
DIST anydesk-7.1.4-amd64.tar.gz 15022660 BLAKE2B b04a03e333bae377e568eb2284f760ec2972e73a5b7da4e1b69b6a1638072e979e42076173840038f559dad3c519d564a5f809c644fe69ecc1e9a643eac4fcfd SHA512 5530dbb76630ebaab7f77996ca8389c520b09d9831d047d0463019afb05638e12d3a12c39e8d03581397540bd7d7eaca1fade4dd88681ed89babad94b9b8edc7
DIST anydesk-7.1.4-arm64.tar.gz 15034979 BLAKE2B 1a51b33d89d90388809174a817060b7bf3b34ca28cd03171038a9fb58e8514b61155d11b6801700c60bdd6789393b33bb7d90fa5e536ef365f24e43bfdd0f2cc SHA512 a014f78687dd3bd3524a0cc42bd5537874ba3940716973a8c860c026b1f20a889f98b3ef002f84188ffed0c35677d93400f48ac36f6e641609338873350b3f05

View File

@@ -0,0 +1,102 @@
# Copyright 1999-2026 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="amd64? ( https://download.anydesk.com/linux/${P}-amd64.tar.gz )
arm64? ( https://download.anydesk.com/rpi/${P}-arm64.tar.gz )"
# OpeSSL/SSLeay, libvpx, zlib, Xiph, xxHash
LICENSE="AnyDesk-TOS BSD BSD-2 openssl ZLIB"
SLOT="0"
KEYWORDS="-* ~amd64 ~arm64"
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
sys-libs/glibc
virtual/zlib
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
}