wok annotate novnc/receipt @ rev 17694

Add radeontool
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 24 08:59:20 2015 +0100 (2015-02-24)
parents d51b2411e55e
children 9e01bc6321ea
rev   line source
pascal@11212 1 # SliTaz package receipt.
pascal@11212 2
pascal@11212 3 PACKAGE="novnc"
gokhlayeh@11575 4 VERSION="201111004"
pascal@11212 5 CATEGORY="network"
pascal@14850 6 SHORT_DESC="VNC client in HTML5/javascript."
pascal@11212 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14850 8 LICENSE="MPL2"
pascal@11212 9 WEB_SITE="http://github.com/kanaka/noVNC"
gokhlayeh@11575 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
gokhlayeh@11575 11 WGET_URL="git|git://github.com/kanaka/noVNC.git"
pascal@14854 12 TAGS="vnc remote-desktop html5"
pankso@16349 13 #HOST_ARCH="any"
pascal@11212 14
pascal@11212 15 DEPENDS="python python-numpy"
gokhlayeh@11575 16 BUILD_DEPENDS="python python-pil openssl git"
pascal@11212 17 SUGGESTED="pyopenssl openssl"
pascal@11212 18
pascal@11212 19 # Rules to configure and make the package.
pascal@11212 20 compile_rules()
pascal@11212 21 {
pascal@11212 22 cd $src
pascal@11212 23 mkdir -p $DESTDIR
pascal@11212 24 sed -i 's/bash/sh/;s/ps -p \([^ ]*\)/ps | grep "^ *\1 "/' utils/launch.sh
pascal@11212 25 IMAGE=/usr/share/images/slitaz-background.jpg
pascal@11212 26 [ -s $IMAGE ] && utils/img2js.py $IMAGE noVNC_logo > include/logo.js
pascal@11212 27 cp -a *.html images/favicon.ico utils include $DESTDIR
pascal@11212 28 }
pascal@11212 29
pascal@11212 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11212 31 genpkg_rules()
pascal@11212 32 {
pascal@11212 33 mkdir -p $fs/usr/share/novnc
pascal@14850 34 cp -a $install/* $fs/usr/share/novnc
pascal@11212 35 }
pascal@11212 36
pascal@14850 37 post_install()
pascal@11212 38 {
pascal@11212 39 which openssl > /dev/null &&
pascal@11212 40 openssl req -new -x509 -keyout $1/usr/share/novnc/self.pem \
pascal@11212 41 -out $1/usr/share/novnc/self.pem -days 3650 -nodes <<EOT
pascal@11212 42 $(. /etc/locale.conf ; echo ${LANG#*_})
pascal@11212 43 $(cat /etc/TZ)
pascal@11212 44
pascal@11212 45 $(cat /etc/hostname)
pascal@11212 46
pascal@11212 47
pascal@11212 48
pascal@11212 49 EOT
pascal@11212 50 }