wok-next annotate tightvnc/receipt @ rev 18569
tazpanel-extra: clear tazpanel cache in post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Nov 10 12:55:14 2015 +0100 (2015-11-10) |
parents | 2b0a8ad0b650 |
children | 219ee9373b80 |
rev | line source |
---|---|
pascal@3631 | 1 # SliTaz package receipt. |
pascal@3631 | 2 |
pascal@3631 | 3 PACKAGE="tightvnc" |
pascal@3631 | 4 VERSION="1.3.10" |
pascal@3631 | 5 CATEGORY="x-window" |
pascal@3631 | 6 SHORT_DESC="VNC server (graphical remote control)." |
pascal@3631 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14850 | 8 LICENSE="GPL2" |
pascal@3631 | 9 TARBALL="$PACKAGE-${VERSION}_unixsrc.tar.bz2" |
pascal@3631 | 10 WEB_SITE="http://www.tightvnc.com/" |
pascal@3631 | 11 WGET_URL="$SF_MIRROR/vnc-tight/$TARBALL" |
slaxemulator@8535 | 12 DEPENDS="xorg-base-fonts jpeg zlib" |
pascal@4191 | 13 BUILD_DEPENDS="xorg-imake xorg-gccmakedep xorg-cf-files xorg-libXp \ |
pascal@4191 | 14 xorg-libXaw-dev xorg-libXt-dev xorg-xproto xorg-libXau-dev xorg-libXdmcp-dev \ |
pascal@4191 | 15 xorg-libXmu-dev xorg-xextproto xorg-printproto xorg-kbproto xorg-inputproto \ |
pascal@12657 | 16 xorg-scrnsaverproto xorg-xauth jpeg-dev zlib-dev xorg-libXrandr-dev" |
pascal@13034 | 17 TAGS="remote-desktop vnc" |
pascal@3631 | 18 |
pascal@3631 | 19 # Rules to configure and make the package. |
pascal@3631 | 20 compile_rules() |
pascal@3631 | 21 { |
pascal@3631 | 22 [ -d vnc_unixsrc ] && mv vnc_unixsrc $src |
pascal@3631 | 23 cd $src |
pascal@12658 | 24 sed -i -e "s| FONTDIR =.*$| FONTDIR = /usr/share/fonts/X11|" \ |
pascal@12658 | 25 -e 's|\(define DefaultRGBDatabase\) .*|\1 /usr/share/X11/rgb|' \ |
pascal@12658 | 26 Xvnc/config/cf/X11.tmpl |
pascal@3631 | 27 xmkmf && |
slaxemulator@8383 | 28 make -j1 World && |
pascal@3631 | 29 cd Xvnc && |
pascal@3631 | 30 ./configure --prefix=/usr $CONFIGURE_ARGS || return 1 |
slaxemulator@8383 | 31 sed 's|PROTO_DEFINES =|PROTO_DEFINES = -D_XOPEN_SOURCE=500L|' \ |
slaxemulator@8383 | 32 -i programs/Xserver/os/Makefile lib/font/fc/Makefile || return 1 |
pascal@3631 | 33 find -name Makefile | xargs sed -i 's|/usr/X11R6/bin|/usr/bin|g' |
slaxemulator@8383 | 34 make -j1 && |
pascal@12656 | 35 make -j1 DESTDIR=$DESTDIR install |
pascal@3631 | 36 cd .. && |
pascal@12656 | 37 make -j1 DESTDIR=$DESTDIR install |
pascal@3631 | 38 } |
pascal@3631 | 39 |
pascal@3631 | 40 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3631 | 41 genpkg_rules() |
pascal@3631 | 42 { |
pascal@3631 | 43 mkdir -p $fs/usr/bin |
erjo@14845 | 44 cp -a $install/usr/bin/Xvnc $fs/usr/bin |
pascal@3632 | 45 cp $src/vncpasswd/vncpasswd $fs/usr/bin |
pascal@12656 | 46 cat > $fs/usr/bin/startvnc <<EOM |
pascal@12656 | 47 #!/bin/sh |
pascal@12656 | 48 |
pascal@12656 | 49 case "\$1" in |
pascal@12656 | 50 ''|:*) ;; |
pascal@12656 | 51 *) cat <<EOT |
pascal@12656 | 52 Usage: \$0 [display] [geometry] [depth] |
pascal@12656 | 53 Default: \$0 :1 1920x1024 24 |
pascal@12656 | 54 EOT |
pascal@12656 | 55 exit 1 |
pascal@12656 | 56 esac |
pascal@12656 | 57 |
pascal@12656 | 58 . \$HOME/.config/slitaz/applications.conf |
pascal@12656 | 59 Xvnc -ac -geometry \${2:-1920x1024} -depth \${3:-24} :\${1:-1} & |
pascal@12656 | 60 export DISPLAY=:\${1:-1} |
pascal@12656 | 61 exec \$WINDOW_MANAGER |
pascal@12656 | 62 EOM |
pascal@12656 | 63 chmod +x $fs/usr/bin/startvnc |
pascal@3631 | 64 } |