Pkgsrc changes: Added x11 option (enabled by default). You can still use with FB or MacOS X native display without X11. New in the 0.9.5 x11vnc release: Symmetric key encryption using the RC4, AES, Blowfish, and 3DES ciphers is supported via the -enc cipher:keyfile option. The SSVNC unix viewer 1.0.20 and later supports these encryption methods. Server-side scaling can now have different scale factors along the horizontal and vertical axes. E.g. -scale 1280x1024 (same as -geometry 1280x1024) or -scale 0.8x0.75 The -chatwindow option allows a chat window to appear on the X console during UltraVNC chats (requires the SSVNC viewer package.) miscellaneous new features and changes: The HTTP Java viewer applet jar, classes/VncViewer.jar, has been updated with an improved implementation based on the code used by the classes/ssl applets. A description and instructions are now printed out when X_ShmAttach fails if one tries to attach to a remote $DISPLAY (i.e. $DISPLAY is on a different machine from the machine x11vnc is running on; this often happens with SSH X redirection, X terminal servers, etc). The -allow option now works correctly in -ssl mode. The -remap option now works on the MacOSX console.
32 lines
772 B
Makefile
32 lines
772 B
Makefile
# $NetBSD: Makefile,v 1.17 2008/10/25 06:12:06 obache Exp $
|
|
#
|
|
|
|
DISTNAME= x11vnc-0.9.5
|
|
CATEGORIES= x11 net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libvncserver/}
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://www.karlrunge.com/x11vnc/
|
|
COMMENT= VNC server for real X displays
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+= --with-system-libvncserver
|
|
|
|
PTHREAD_AUTO_VARS= yes
|
|
SUBST_CLASSES+= pthread
|
|
SUBST_STAGE.pthread= pre-configure
|
|
SUBST_FILES.pthread= configure
|
|
SUBST_SED.pthread= -e 's|-lpthread||g'
|
|
|
|
.include "options.mk"
|
|
|
|
BUILD_DIRS= x11vnc
|
|
INSTALL_DIRS= x11vnc classes
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../net/libvncserver/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|