mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
66b6fbb3bf
This Update fix CVE-2020-13160: AnyDesk before 5.5.3 on Linux and FreeBSD has a format string vulnerability that can be exploited for remote code execution. PR: 247406 Submitted by: Martin Filla <freebsd@sysctl.cz> (maintainer) MFH: 2020Q3 Security: 4344861a-be0b-11ea-9172-4c72b94353b5 Sponsored by: Netzkommune GmbH
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= anydesk
|
|
DISTVERSION= 5.5.5
|
|
CATEGORIES= deskutils
|
|
MASTER_SITES= https://download.anydesk.com/freebsd/
|
|
DISTNAME= ${PORTNAME}-freebsd-${PORTVERSION}-${ARCH:S/amd64/x86_64/:S/i386/i386/}
|
|
|
|
MAINTAINER= freebsd@sysctl.cz
|
|
COMMENT= Fast remote desktop
|
|
|
|
#LICENSE= commercial
|
|
#LICENSE_NAME= commercial
|
|
#LICENSE_FILE= ${WRKSRC}/copyright
|
|
#LICENSE_PERMS= no-auto-accept no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
|
|
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libgtkglext-x11-1.0.so:x11-toolkits/gtkglext \
|
|
libinotify.so:devel/libinotify \
|
|
libpolkit-gobject-1.so:sysutils/polkit \
|
|
libxkbfile.so:x11/libxkbfile
|
|
|
|
USES= gl gnome xorg
|
|
|
|
USE_GL= gl glu
|
|
USE_GNOME= cairo gdkpixbuf2 glib20 gtk20 pangox-compat
|
|
USE_XORG= x11 xcb xdamage xext xfixes xi xrandr xrender xtst
|
|
NO_BUILD= YES
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
PLIST_FILES= bin/anydesk
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|