wok rev 22143
updated x11vnc (0.9.13 -> 0.9.16)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Nov 06 13:57:20 2019 +0100 (2019-11-06) |
parents | 83981c141996 |
children | 8feb5dce3d54 |
files | x11vnc/description.txt x11vnc/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/x11vnc/description.txt Wed Nov 06 13:57:20 2019 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +x11vnc allows to view remotely and interact with real X displays 1.5 +(i.e. a display corresponding to a physical monitor, keyboard, and mouse) 1.6 +with any VNC viewer. 1.7 +In this way it plays the role for Unix/X11 that WinVNC plays for Windows. 1.8 + 1.9 +It has built-in SSL/TLS encryption and 2048 bit RSA authentication, 1.10 +including VeNCrypt support; UNIX account and password login support; 1.11 +server-side scaling; single port HTTPS/HTTP+VNC; Zeroconf service advertising; 1.12 +and TightVNC and UltraVNC file-transfer. 1.13 +It has also been extended to work with non-X devices: 1.14 +natively on Mac OS X Aqua/Quartz, webcams and TV tuner capture devices, 1.15 +and embedded Linux systems such as Qtopia Core. 1.16 +Full IPv6 support is provided. 1.17 + 1.18 +It also provides an encrypted Terminal Services mode (-create, -svc, or -xdmsvc options) 1.19 +based on Unix usernames and Unix passwords where the user does not need to memorize 1.20 +his VNC display/port number. 1.21 +Normally a virtual X session (Xvfb) is created for each user, but it also works with 1.22 +X sessions on physical hardware. See the tsvnc terminal services mode of the SSVNC viewer 1.23 +for one way to take advantage of this mode.
2.1 --- a/x11vnc/receipt Tue Nov 05 16:57:43 2019 +0100 2.2 +++ b/x11vnc/receipt Wed Nov 06 13:57:20 2019 +0100 2.3 @@ -1,24 +1,27 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="x11vnc" 2.7 -VERSION="0.9.13" 2.8 +VERSION="0.9.16" 2.9 CATEGORY="network" 2.10 -SHORT_DESC="VNC server using X server" 2.11 +TAGS="vnc server" 2.12 +SHORT_DESC="VNC server for real X displays." 2.13 MAINTAINER="pascal.bellard@slitaz.org" 2.14 LICENSE="GPL2" 2.15 +WEB_SITE="http://www.karlrunge.com/x11vnc/" 2.16 + 2.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.18 -WEB_SITE="http://www.karlrunge.com/x11vnc/" 2.19 -WGET_URL="$SF_MIRROR/libvncserver/$TARBALL" 2.20 -TAGS="vnc server" 2.21 +WGET_URL="https://github.com/LibVNC/$PACKAGE/archive/$VERSION.tar.gz" 2.22 + 2.23 +DEPENDS="jpeg libvncserver openssl xorg-libXdamage xorg-libXtst zlib" 2.24 +BUILD_DEPENDS="autoconf jpeg-dev libvncserver-dev openssl-dev" 2.25 + 2.26 HOST_ARCH="i486 arm" 2.27 2.28 -DEPENDS="xorg-libXtst openssl jpeg xorg-libXdamage zlib" 2.29 -BUILD_DEPENDS="openssl-dev jpeg-dev" 2.30 - 2.31 # Rules to configure and make the package. 2.32 compile_rules() 2.33 { 2.34 - ./configure --prefix=/usr \ 2.35 + ./autogen.sh \ 2.36 + --prefix=/usr \ 2.37 $CONFIGURE_ARGS && 2.38 make && 2.39 make -j1 DESTDIR=$DESTDIR install && 2.40 @@ -28,12 +31,14 @@ 2.41 # Rules to gen a SliTaz package suitable for Tazpkg. 2.42 genpkg_rules() 2.43 { 2.44 - mkdir -p $fs/usr/bin $fs/etc/init.d 2.45 - cp -a $install/usr/bin/x11vnc $fs/usr/bin 2.46 - cp -a $stuff/x11vnc $fs/etc/init.d 2.47 + mkdir -p $fs/usr/bin 2.48 + mkdir -p $fs/etc/init.d 2.49 + 2.50 + cp -a $install/usr/bin/x11vnc $fs/usr/bin 2.51 + cp -a $stuff/x11vnc $fs/etc/init.d 2.52 } 2.53 2.54 -# Post install/remove commands for Tazpkg. 2.55 +# Post install commands for Tazpkg. 2.56 post_install() 2.57 { 2.58 grep -q "^X11VNC" "$1/etc/daemons.conf" || cat >> "$1/etc/daemons.conf" <<EOT 2.59 @@ -44,4 +49,3 @@ 2.60 [ -f "$1/etc/vnc.secret" ] || 2.61 chroot "$1/" x11vnc -storepasswd root /etc/vnc.secret 2.62 } 2.63 -