pkgsrc/net/libvncserver/Makefile

48 lines
1.3 KiB
Makefile
Raw Normal View History

2020-03-08 17:47:24 +01:00
# $NetBSD: Makefile,v 1.32 2020/03/08 16:48:04 wiz Exp $
#
2019-02-01 13:45:21 +01:00
DISTNAME= libvncserver-LibVNCServer-0.9.12
PKGNAME= libVNCServer-0.9.12
2020-03-08 17:47:24 +01:00
PKGREVISION= 3
CATEGORIES= net
Update to 0.9.11 * Update buildlink3.mk * Update HOMEPAGE and MASTER_SITES Changelog: 0.9.11: Overall changes: LibVNCServer/LibVNCClient development now uses continous intregration, provided by TravisCI. LibVNCClient: Now initializes libgcrypt before use if the application did not do it. Fixes a crash when connection to Mac hosts (#45). Various fixes that result in more stable handling of malicious or broken servers. Removed broken and unmaintained H264 decoding. Some documentation fixes. Added hooks to WriteToTLS() for optional protection by mutex. LibVNCServer: Stability fixes for the WebSocket implementation. Replaced SHA1 implementation with the one from RFC 6234. The built-in HTTP server does not allow directory traversals anymore. The built-in HTTP now sends correct MIME types for CSS and SVG. Added support for systemd socket activation. Made it possible to get autoPort behavior with either ipv4 or ipv6 disabled. Fixed starting of an onHold-client in threaded mode. 0.9.10: Overall changes: Moved the whole project from sourceforge to https://libvnc.github.io/. Cleaned out the autotools build system which now uses autoreconf. Updated noVNC HTML5 client to latest version. Split out x11vnc sources into separate repository at https://github.com/LibVNC/x11vnc Split out vncterm sources into separate repository at https://github.com/LibVNC/vncterm Split out VisualNaCro sources into separate repository at https://github.com/LibVNC/VisualNaCro Merged Debian patches. LibVNCServer/LibVNCClient: Fixed some security-related buffer overflow cases. Added compatibility headers to make LibVNCServer/LibVNCClient build on native Windows 8. Update LZO to version 2.07, fixing CVE-2014-4607. LibVNCServer: Merged patches from KDE/krfb. Can now do IPv6 without IPv4. Fixed a use-after-free issue in scale.c.
2017-01-09 08:55:15 +01:00
MASTER_SITES= ${MASTER_SITE_GITHUB:=LibVNC/}
GITHUB_PROJECT= libvncserver
GITHUB_TAG= LibVNCServer-${PKGVERSION_NOREV}
MAINTAINER= pkgsrc-users@NetBSD.org
Update to 0.9.11 * Update buildlink3.mk * Update HOMEPAGE and MASTER_SITES Changelog: 0.9.11: Overall changes: LibVNCServer/LibVNCClient development now uses continous intregration, provided by TravisCI. LibVNCClient: Now initializes libgcrypt before use if the application did not do it. Fixes a crash when connection to Mac hosts (#45). Various fixes that result in more stable handling of malicious or broken servers. Removed broken and unmaintained H264 decoding. Some documentation fixes. Added hooks to WriteToTLS() for optional protection by mutex. LibVNCServer: Stability fixes for the WebSocket implementation. Replaced SHA1 implementation with the one from RFC 6234. The built-in HTTP server does not allow directory traversals anymore. The built-in HTTP now sends correct MIME types for CSS and SVG. Added support for systemd socket activation. Made it possible to get autoPort behavior with either ipv4 or ipv6 disabled. Fixed starting of an onHold-client in threaded mode. 0.9.10: Overall changes: Moved the whole project from sourceforge to https://libvnc.github.io/. Cleaned out the autotools build system which now uses autoreconf. Updated noVNC HTML5 client to latest version. Split out x11vnc sources into separate repository at https://github.com/LibVNC/x11vnc Split out vncterm sources into separate repository at https://github.com/LibVNC/vncterm Split out VisualNaCro sources into separate repository at https://github.com/LibVNC/VisualNaCro Merged Debian patches. LibVNCServer/LibVNCClient: Fixed some security-related buffer overflow cases. Added compatibility headers to make LibVNCServer/LibVNCClient build on native Windows 8. Update LZO to version 2.07, fixing CVE-2014-4607. LibVNCServer: Merged patches from KDE/krfb. Can now do IPv6 without IPv4. Fixed a use-after-free issue in scale.c.
2017-01-09 08:55:15 +01:00
HOMEPAGE= https://libvnc.github.io/
COMMENT= Easy API to write one's own vnc server
LICENSE= gnu-gpl-v2
2019-02-01 13:45:21 +01:00
# XXX doesn't really use c++ but cmake is being uncooperative
USE_LANGUAGES= c c++
USE_TOOLS+= pkg-config
USE_CMAKE= yes
2019-02-01 13:45:21 +01:00
PKGCONFIG_OVERRIDE+= libvncserver.pc.cmakein
PKGCONFIG_OVERRIDE+= libvncclient.pc.cmakein
Update libVNCServer to 0.9.8. 0.9.8 - Overall changes: * Automagically generated API documentation using doxygen. * Added support for pkg-config. * Fixed Mingw32 cross compilation. * Fixed CMake build system. - LibVNCServer/LibVNCClient: * All files used by _both_ LibVNCServer and LibVNCClient were put into a 'common' directory, reducing code duplication. * Implemented xvp VNC extension. * Updated minilzo library used for Ultra encoding to ver 2.04. According to the minilzo README, this brings a significant speedup on 64-bit architechtures. - LibVNCServer: * Thread safety for ZRLE, Zlib, Tight, RRE, CoRRE and Ultra encodings. This makes all VNC encodings safe to use with a multithreaded server. * A DisplayFinishedHook for LibVNCServer. If set, this hook gets called just before rfbSendFrameBufferUpdate() returns. * Fix for tight security type for RFB 3.8 in TightVNC file transfer (Debian Bug #517422). - LibVNCClient: * Unix sockets support. * Anonymous TLS security type support. * VeNCrypt security type support. * MSLogon security type support. * ARD (Apple Remote Desktop) security type support. * UltraVNC Repeater support. * A new FinishedFrameBufferUpdate callback that is invoked after each complete framebuffer update. * A new non-forking listen (reverse VNC) function that works under Windows. * IPv6 support. LibVNCClient is now able to connect to IPv6 VNC servers. * IP QoS support. This enables setting the DSCP/Traffic Class field of IP/IPv6 packets sent by a client. For example starting a client with -qosdscp 184 marks all outgoing traffic for expedited forwarding. Implementation for Win32 is still a TODO, though. * Fixed hostname resolution problems under Windows. - SDLvncviewer * Is now resizable and can do key repeat, mouse wheel scrolling and clipboard copy and paste. - LinuxVNC: * Fix for no input possible because of ctrl key being stuck. Issue was reported as Debian bug #555988.
2011-04-04 11:13:44 +02:00
2019-02-01 13:45:21 +01:00
CMAKE_ARGS+= -DWITH_FFMPEG=OFF
CMAKE_ARGS+= -DWITH_SDL=OFF
CMAKE_ARGS+= -DWITH_SYSTEMD=OFF
2019-02-01 13:45:21 +01:00
CMAKE_ARGS+= -DWITH_THREADS=ON
CMAKE_ARGS+= -DWITH_TIGHTVNC_FILETRANSFER=ON
CMAKE_ARGS+= -DWITH_WEBSOCKETS=ON
CMAKE_ARGS+= -DWITH_24BPP=ON
CMAKE_ARGS+= -DWITH_LZO=ON
CMAKE_ARGS+= -DWITH_ZLIB=ON
CMAKE_ARGS+= -DWITH_JPEG=ON
CMAKE_ARGS+= -DWITH_PNG=ON
2019-02-25 10:48:26 +01:00
LDFLAGS.SunOS+= -lsocket
Update libVNCServer to 0.9.8. 0.9.8 - Overall changes: * Automagically generated API documentation using doxygen. * Added support for pkg-config. * Fixed Mingw32 cross compilation. * Fixed CMake build system. - LibVNCServer/LibVNCClient: * All files used by _both_ LibVNCServer and LibVNCClient were put into a 'common' directory, reducing code duplication. * Implemented xvp VNC extension. * Updated minilzo library used for Ultra encoding to ver 2.04. According to the minilzo README, this brings a significant speedup on 64-bit architechtures. - LibVNCServer: * Thread safety for ZRLE, Zlib, Tight, RRE, CoRRE and Ultra encodings. This makes all VNC encodings safe to use with a multithreaded server. * A DisplayFinishedHook for LibVNCServer. If set, this hook gets called just before rfbSendFrameBufferUpdate() returns. * Fix for tight security type for RFB 3.8 in TightVNC file transfer (Debian Bug #517422). - LibVNCClient: * Unix sockets support. * Anonymous TLS security type support. * VeNCrypt security type support. * MSLogon security type support. * ARD (Apple Remote Desktop) security type support. * UltraVNC Repeater support. * A new FinishedFrameBufferUpdate callback that is invoked after each complete framebuffer update. * A new non-forking listen (reverse VNC) function that works under Windows. * IPv6 support. LibVNCClient is now able to connect to IPv6 VNC servers. * IP QoS support. This enables setting the DSCP/Traffic Class field of IP/IPv6 packets sent by a client. For example starting a client with -qosdscp 184 marks all outgoing traffic for expedited forwarding. Implementation for Win32 is still a TODO, though. * Fixed hostname resolution problems under Windows. - SDLvncviewer * Is now resizable and can do key repeat, mouse wheel scrolling and clipboard copy and paste. - LinuxVNC: * Fix for no input possible because of ctrl key being stuck. Issue was reported as Debian bug #555988.
2011-04-04 11:13:44 +02:00
.include "options.mk"
2019-02-01 13:45:21 +01:00
.include "../../archivers/lzo/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
Update to 0.9.11 * Update buildlink3.mk * Update HOMEPAGE and MASTER_SITES Changelog: 0.9.11: Overall changes: LibVNCServer/LibVNCClient development now uses continous intregration, provided by TravisCI. LibVNCClient: Now initializes libgcrypt before use if the application did not do it. Fixes a crash when connection to Mac hosts (#45). Various fixes that result in more stable handling of malicious or broken servers. Removed broken and unmaintained H264 decoding. Some documentation fixes. Added hooks to WriteToTLS() for optional protection by mutex. LibVNCServer: Stability fixes for the WebSocket implementation. Replaced SHA1 implementation with the one from RFC 6234. The built-in HTTP server does not allow directory traversals anymore. The built-in HTTP now sends correct MIME types for CSS and SVG. Added support for systemd socket activation. Made it possible to get autoPort behavior with either ipv4 or ipv6 disabled. Fixed starting of an onHold-client in threaded mode. 0.9.10: Overall changes: Moved the whole project from sourceforge to https://libvnc.github.io/. Cleaned out the autotools build system which now uses autoreconf. Updated noVNC HTML5 client to latest version. Split out x11vnc sources into separate repository at https://github.com/LibVNC/x11vnc Split out vncterm sources into separate repository at https://github.com/LibVNC/vncterm Split out VisualNaCro sources into separate repository at https://github.com/LibVNC/VisualNaCro Merged Debian patches. LibVNCServer/LibVNCClient: Fixed some security-related buffer overflow cases. Added compatibility headers to make LibVNCServer/LibVNCClient build on native Windows 8. Update LZO to version 2.07, fixing CVE-2014-4607. LibVNCServer: Merged patches from KDE/krfb. Can now do IPv6 without IPv4. Fixed a use-after-free issue in scale.c.
2017-01-09 08:55:15 +01:00
.include "../../graphics/png/buildlink3.mk"
.include "../../mk/jpeg.buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"