wok view x11vnc/receipt @ rev 1080

Up: slitaz-base-files (2.3)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jul 16 16:28:13 2008 +0200 (2008-07-16)
parents 7fe44f4e2cda
children d029ffb67ea4
line source
1 # SliTaz package receipt.
3 PACKAGE="x11vnc"
4 VERSION="0.9.3"
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"
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 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin $fs/etc/init.d
28 cp -a $_pkg/usr/bin/x11vnc $fs/usr/bin
29 cp -a stuff/x11vnc $fs/etc/init.d
30 }
32 # Post install/remove commands for Tazpkg.
33 post_install()
34 {
35 grep -q "^X11VNC" $1/etc/daemons.conf || cat >>$1/etc/daemons.conf <<EOT
36 # VNC server options.
37 X11VNC_OPTIONS="-rfbauth /etc/vnc.secret -loop"
39 EOT
40 [ -f $1/etc/vnc.secret ] || echo -en 'p\x05\xE3\x8B\x81\xB0\xB2\x1B' \
41 > $1/etc/vnc.secret # root
42 }