wok view x11vnc/receipt @ rev 2654

Add: hal-info
author Dominique Corbex <domcox@users.sourceforge.net>
date Sat Apr 18 17:38:03 2009 +0200 (2009-04-18)
parents 410615303dc6
children 074fae9b33fb
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/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 }