summaryrefslogtreecommitdiff
path: root/net/libvncserver/buildlink3.mk
AgeCommit message (Collapse)AuthorFilesLines
2017-01-11Restore .includes to fix dependent package buildsryoon1-1/+15
2017-01-09Revert unintentional revbumpryoon1-2/+2
2017-01-09Recursive revbump from net/libvncserverryoon1-2/+2
2017-01-09Update to 0.9.11ryoon1-17/+3
* 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.
2016-09-19Recursive PKGREVISION bump for gnutls shlib major bump.wiz1-2/+2
2015-08-23Bump PKGREVISION for nettle shlib major bump.wiz1-2/+2
2014-01-01Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump.wiz1-2/+2
2013-01-26Revbump after graphics/jpeg and textproc/icuadam1-2/+2
2012-09-23missing parts of recursive revbump for gnutls update.obache1-2/+2
2011-04-22recursive bump from gettext-lib shlib bump.obache1-2/+2
2011-04-04Update libVNCServer to 0.9.8.obache1-2/+14
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.
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz1-2/+2
2009-08-26bump revision because of graphics/jpeg updatesno1-1/+2
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2007-07-11Update libVNCServer to 0.9.1.obache1-3/+4
* libs are built shared by defaut now. * x11vnc is no longer included in the package tarball.
2006-10-15Import libvncserver, provided by Pierrick Brossin in private mail:bouyer1-0/+21
LibVNCServer is ripped out of Xvnc to provide an easy API to write one's own vnc server.