pkgsrc/net/libvncserver/Makefile
ryoon 2347bffe21 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 07:55:15 +00:00

43 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.23 2017/01/09 07:55:15 ryoon Exp $
#
DISTNAME= libvncserver-LibVNCServer-0.9.11
PKGNAME= libVNCServer-0.9.11
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GITHUB:=LibVNC/}
GITHUB_PROJECT= libvncserver
GITHUB_TAG= LibVNCServer-${PKGVERSION_NOREV}
MAINTAINER= pierrick@bs-network.net
HOMEPAGE= https://libvnc.github.io/
COMMENT= Easy API to write one's own vnc server
LICENSE= gnu-gpl-v2
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
USE_TOOLS+= automake
PKGCONFIG_OVERRIDE+= libvncserver.pc.in
PKGCONFIG_OVERRIDE+= libvncclient.pc.in
CONFIGURE_ARGS+= --without-x
CONFIGURE_ARGS+= --without-sdl-config
CONFIGURE_ARGS+= --without-x11vnc
PTHREAD_AUTO_VARS= yes
SUBST_CLASSES+= pthread
SUBST_STAGE.pthread= pre-configure
SUBST_FILES.pthread= configure.ac
SUBST_SED.pthread= -e 's|-lpthread||g'
.include "options.mk"
pre-configure:
set -e; cd ${WRKSRC}; \
libtoolize; aclocal; autoheader; automake -a --foreign -i; autoconf
.include "../../devel/zlib/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../../mk/jpeg.buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"