wok view x11vnc/receipt @ rev 4945

Up: xterm (255)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 16 22:34:26 2010 +0100 (2010-02-16)
parents d063c9b6eead
children 0eae4b09055d
line source
1 # SliTaz package receipt.
3 PACKAGE="x11vnc"
4 VERSION="0.9.6"
5 CATEGORY="network"
6 SHORT_DESC="VNC server using X server"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.karlrunge.com/x11vnc/"
10 WGET_URL="$SF_MIRROR/libvncserver/$TARBALL"
11 DEPENDS="xorg xorg-libXtst openssl slitaz-base-files jpeg xorg-libXdamage zlib"
12 BUILD_DEPENDS="xorg-dev xorg-libXdamage-dev xorg-libXtst-dev openssl-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$src/_pkg install &&
22 echo rm -rf $src/_pkg/usr/share/applications
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin $fs/usr/share $fs/etc/init.d
29 cp -a $_pkg/usr/bin/x11vnc $fs/usr/bin
30 cp -a stuff/x11vnc $fs/etc/init.d
31 }
33 # Post install/remove commands for Tazpkg.
34 post_install()
35 {
36 grep -q "^X11VNC" $1/etc/daemons.conf || cat >>$1/etc/daemons.conf <<EOT
37 # VNC server options.
38 X11VNC_OPTIONS="-rfbauth /etc/vnc.secret -loop -tightfilexfer -permitfiletransfer -display :0"
40 EOT
41 [ -f $1/etc/vnc.secret ] || echo -en 'p\x05\xE3\x8B\x81\xB0\xB2\x1B' \
42 > $1/etc/vnc.secret # root
43 }