Update x11vnc to 0.9.5.
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.
This commit is contained in:
parent
7ecda0dfb5
commit
44f7835352
3 changed files with 33 additions and 20 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.16 2008/09/18 00:11:30 obache Exp $
|
||||
# $NetBSD: Makefile,v 1.17 2008/10/25 06:12:06 obache Exp $
|
||||
#
|
||||
|
||||
DISTNAME= x11vnc-0.9.4
|
||||
DISTNAME= x11vnc-0.9.5
|
||||
CATEGORIES= x11 net
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libvncserver/}
|
||||
|
||||
|
@ -21,23 +21,12 @@ SUBST_STAGE.pthread= pre-configure
|
|||
SUBST_FILES.pthread= configure
|
||||
SUBST_SED.pthread= -e 's|-lpthread||g'
|
||||
|
||||
SUBST_CLASSES+= libvnc
|
||||
SUBST_STAGE.libvnc= post-configure
|
||||
SUBST_FILES.libvnc= Makefile
|
||||
SUBST_SED.libvnc= -e 's|libvncserver||g'
|
||||
SUBST_SED.libvnc+= -e 's|libvncclient||g'
|
||||
.include "options.mk"
|
||||
|
||||
BUILDLINK_DEPMETHOD.libXt?= build
|
||||
BUILD_DIRS= x11vnc
|
||||
INSTALL_DIRS= x11vnc classes
|
||||
|
||||
.include "../../security/openssl/buildlink3.mk"
|
||||
.include "../../x11/libX11/buildlink3.mk"
|
||||
.include "../../x11/libXdamage/buildlink3.mk"
|
||||
.include "../../x11/libXext/buildlink3.mk"
|
||||
.include "../../x11/libXinerama/buildlink3.mk"
|
||||
.include "../../x11/libXrandr/buildlink3.mk"
|
||||
.include "../../x11/libXt/buildlink3.mk"
|
||||
.include "../../x11/libXtst/buildlink3.mk"
|
||||
.include "../../x11/xextproto/buildlink3.mk"
|
||||
.include "../../net/libvncserver/buildlink3.mk"
|
||||
.include "../../mk/pthread.buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.10 2008/09/18 00:11:30 obache Exp $
|
||||
$NetBSD: distinfo,v 1.11 2008/10/25 06:12:06 obache Exp $
|
||||
|
||||
SHA1 (x11vnc-0.9.4.tar.gz) = 142b6af81dee5825c993b25cfe1ed7aa7e515b0d
|
||||
RMD160 (x11vnc-0.9.4.tar.gz) = 398c2e789d164cc69f209cbe35f0f4b1efc845b6
|
||||
Size (x11vnc-0.9.4.tar.gz) = 2346158 bytes
|
||||
SHA1 (x11vnc-0.9.5.tar.gz) = 236f7b3ba6a33422cf7593de7d7843c233143129
|
||||
RMD160 (x11vnc-0.9.5.tar.gz) = ba225af1b003c4c258a0fabad5d5c792e2149770
|
||||
Size (x11vnc-0.9.5.tar.gz) = 2413415 bytes
|
||||
|
|
24
x11/x11vnc/options.mk
Normal file
24
x11/x11vnc/options.mk
Normal file
|
@ -0,0 +1,24 @@
|
|||
# $NetBSD: options.mk,v 1.1 2008/10/25 06:12:06 obache Exp $
|
||||
#
|
||||
|
||||
PKG_OPTIONS_VAR= PKG_OPTIONS.x11vnc
|
||||
PKG_SUPPORTED_OPTIONS= x11
|
||||
PKG_SUGGESTED_OPTIONS= x11
|
||||
|
||||
.include "../../mk/bsd.options.mk"
|
||||
|
||||
.if !empty(PKG_OPTIONS:Mx11)
|
||||
CONFIGURE_ARGS+= --with-x
|
||||
BUILDLINK_DEPMETHOD.libXt?= build
|
||||
.include "../../x11/libX11/buildlink3.mk"
|
||||
.include "../../x11/libXdamage/buildlink3.mk"
|
||||
.include "../../x11/libXext/buildlink3.mk"
|
||||
.include "../../x11/libXfixes/buildlink3.mk"
|
||||
.include "../../x11/libXinerama/buildlink3.mk"
|
||||
.include "../../x11/libXrandr/buildlink3.mk"
|
||||
.include "../../x11/libXt/buildlink3.mk"
|
||||
.include "../../x11/libXtst/buildlink3.mk"
|
||||
.include "../../x11/xextproto/buildlink3.mk"
|
||||
.else
|
||||
CONFIGURE_ARGS+= --without-x
|
||||
.endif
|
Loading…
Reference in a new issue