wok annotate ajaxterm/receipt @ rev 25004

updated ntfs-3g and ntfs-3g-dev (2017.3.23 -> 2021.8.22)
author Hans-G?nter Theisgen
date Mon May 16 16:20:40 2022 +0100 (2022-05-16)
parents 34e801e0eb52
children 1be16cc1cd50
rev   line source
pascal@1951 1 # SliTaz package receipt.
pascal@1951 2
pascal@1951 3 PACKAGE="ajaxterm"
pascal@1951 4 VERSION="0.10"
pascal@1951 5 CATEGORY="network"
pascal@1951 6 SHORT_DESC="Login terminal for the web."
pascal@1951 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15201 8 LICENSE="PublicDomain LGPL"
pascal@21489 9 WEB_SITE="https://github.com/antonylesuisse/qweb/tree/master/ajaxterm"
pascal@1951 10 SOURCE="Ajaxterm"
pascal@1951 11 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@21489 12 WGET_URL="http://antony.lesuisse.org/ajaxterm/files/$TARBALL"
al@14789 13 TAGS="web application"
al@14789 14
pascal@1951 15 DEPENDS="python"
pascal@1951 16 SUGGESTED="apache lighttpd-ssl lighttpd-modules"
pascal@1951 17
pascal@24497 18 # What is the latest version available today?
pascal@24497 19 current_version()
pascal@24497 20 {
pascal@24497 21 wget -O - https://github.com/antonylesuisse/qweb/commits/master 2>/dev/null | \
pascal@24974 22 sed '/Commits on/!d;s|.*on |"|;s|<.*|"|;q' | xargs date +%Y%m%d -d
pascal@24497 23 }
pascal@24497 24
al@19278 25 # Rules to configure and make the package.
al@19278 26 compile_rules()
al@19278 27 {
al@19278 28 cook_pick_manpages $src/ajaxterm.1
al@19278 29 }
al@19278 30
pascal@1951 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1951 32 genpkg_rules()
pascal@1951 33 {
pascal@1951 34 mkdir -p $fs/usr/share/ajaxterm
pascal@1951 35 cp -a $src/*.py $src/*.js $src/*.css $src/*.html $fs/usr/share/ajaxterm
pankso@9697 36 cp -a $stuff/* $fs/
al@14789 37 chown -R root:root $fs
al@14789 38 find $fs -type f -name '*.py' -exec chmod a+x \{\} \;
pascal@1951 39 }
pascal@1951 40
pascal@1951 41 post_install()
pascal@1951 42 {
pascal@18730 43 grep ^RUN_DAEMONS "$1/etc/rcS.conf" | grep -q "ajaxterm" || sed -i \
pascal@18730 44 's/RUN_DAEMONS="/RUN_DAEMONS="ajaxterm /' "$1/etc/rcS.conf"
pascal@1951 45 # Configure lighttpd server
pascal@18730 46 if [ -f "$1/usr/lib/lighttpd/mod_proxy.so" ]; then
pascal@18730 47 grep -q mod_proxy "$1/etc/lighttpd/lighttpd.conf" ||
pascal@18730 48 cat >> "$1/etc/lighttpd/lighttpd.conf" <<EOT
pascal@1951 49 server.modules += ( "mod_proxy" )
pascal@1951 50 EOT
pascal@18730 51 grep -q ajaxterm "$1/etc/lighttpd/lighttpd.conf" ||
pascal@18730 52 cat >> "$1/etc/lighttpd/lighttpd.conf" <<EOT
pascal@1951 53 proxy.server = ( "/ajaxterm/" =>
pascal@1951 54 ( ( "host" => "127.0.0.1", "port" => 8022 ) )
pascal@1951 55 )
pascal@1951 56 EOT
pascal@1951 57 if [ -z "$1" ]; then
pascal@1951 58 # Start Web server.
pascal@1951 59 /etc/init.d/lighttpd stop
pascal@1951 60 /etc/init.d/lighttpd start
pascal@1951 61 fi
pascal@1951 62 fi
pascal@1951 63 # Configure apache server
pascal@18730 64 if [ -f "$1/etc/apache/httpd.conf" ]; then
pascal@18730 65 if [ ! -f "$1/etc/apache/conf.d/ajaxterm" ]; then
pascal@18730 66 cat > "$1/etc/apache/conf.d/ajaxterm" <<EOT
pascal@1951 67 <IfModule mod_proxy.c>
pascal@1951 68 ProxyRequests Off
pascal@1951 69 <Proxy *>
pascal@1951 70 Order deny,allow
pascal@1951 71 Allow from all
pascal@1951 72 </Proxy>
pascal@1951 73 ProxyPass /ajaxterm/ http://localhost:8022/
pascal@1951 74 ProxyPassReverse /ajaxterm/ http://localhost:8022/
pascal@1951 75 </IfModule>
pascal@1951 76 EOT
pascal@1951 77 if [ -z "$1" ]; then
pascal@1951 78 # Start Web server.
pascal@1951 79 /etc/init.d/apache stop
pascal@1951 80 sleep 2
pascal@1951 81 /etc/init.d/apache start
pascal@1951 82 fi
pascal@1951 83 fi
pascal@1951 84 fi
pascal@1951 85 [ -z "$1" ] && /etc/init.d/ajaxterm start
pascal@18730 86 [ ! -f "$1/usr/lib/lighttpd/mod_proxy.so" -a \
pascal@18730 87 ! -f "$1/etc/apache/httpd.conf" ] &&
al@18667 88 [ -z "$quiet" ] && cat <<EOT
pascal@1951 89 --------
pascal@1951 90 You should install either lighttpd
pascal@1951 91 # tazpkg get-install lighttpd-ssl ; tazpkg get-install lighttpd-modules
pascal@1951 92 or apache
pascal@1951 93 # tazpkg get-install apache
pascal@1951 94 and reconfigure
pascal@1951 95 # tazpkg reconfigure ajaxterm
pascal@1951 96 --------
pascal@1951 97 EOT
pascal@1951 98 }