wok annotate zerobin/receipt @ rev 20669

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 21 12:26:11 2019 +0100 (2019-01-21)
parents 139df21c10dd
children 922f061231c2
rev   line source
pascal@12906 1 # SliTaz package receipt.
pascal@12906 2
pascal@12906 3 PACKAGE="zerobin"
pascal@18735 4 GITHASH="8cae64d6eab99fb0d31868df77846285c0958ed0" # 6 feb 2014
pascal@18735 5 VERSION="${GITHASH:0:7}"
pascal@12906 6 CATEGORY="network"
pascal@12906 7 SHORT_DESC="Online pastebin where the server has zero knowledge of pasted data."
pascal@12906 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15185 9 LICENSE="zlib/libpng"
pascal@18735 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20669 11 WEB_SITE="https://sebsauvage.net/wiki/doku.php?id=php:zerobin"
pascal@18735 12 WGET_URL="https://github.com/sebsauvage/ZeroBin/archive/$VERSION.tar.gz"
pascal@16264 13 HOST_ARCH="any"
pascal@12906 14
pascal@12906 15 DEPENDS="php"
pascal@12906 16 SUGGESTED="php-gd"
pascal@12906 17
pascal@12906 18 # Rules to configure and make the package.
pascal@12906 19 compile_rules()
pascal@12906 20 {
pascal@12906 21 patch -p0 < $stuff/zerobin.u
pascal@12906 22 }
pascal@12906 23
pascal@12906 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@12906 25 genpkg_rules()
pascal@12906 26 {
pascal@12906 27 mkdir -p $fs/usr/share/zerobin
pascal@13153 28 mkdir -p $fs/var/lib/zerobin/data $fs/var/lib/zerobin/tmp
pascal@12906 29 cp -a $src/* $fs/usr/share/zerobin
pascal@13153 30 cp $stuff/purge.sh $fs/var/lib/zerobin/data
pascal@13153 31 ln -s /var/lib/zerobin/data $fs/usr/share/zerobin/data
pascal@13153 32 ln -s /var/lib/zerobin/tmp $fs/usr/share/zerobin/tmp
pascal@13153 33 chown -R www.www $fs/usr/share/zerobin $fs/var/lib/zerobin/*
pascal@12906 34 }
pascal@12906 35
pascal@12906 36 # Post and pre install commands
pascal@12906 37 post_install()
pascal@12906 38 {
pascal@12906 39 # Configure lighttpd server
pascal@18730 40 if [ -f "$1/etc/lighttpd/lighttpd.conf" ]; then
pascal@18730 41 if ! grep -q /usr/share/zerobin/ "$1/etc/lighttpd/lighttpd.conf"; then
pascal@18730 42 sed -e 's|.*"/examples/" => "/usr/share/examples/",| "/examples/" => "/usr/share/examples/",\n "/paste/" => "/usr/share/zerobin/",|g' -i "$1/etc/lighttpd/lighttpd.conf"
pascal@12906 43 if [ -z "$1" ]; then
pascal@12906 44 # Start Web server.
pascal@12906 45 /etc/init.d/lighttpd stop
pascal@12906 46 /etc/init.d/lighttpd start
pascal@12906 47 fi
pascal@12906 48 fi
pascal@12906 49 fi
pascal@12906 50 # Configure apache server
pascal@18730 51 if [ -f "$1/etc/apache/httpd.conf" ]; then
pascal@18730 52 sed -i 's/lighttpd/apache/' "$1/etc/rcS.conf"
pascal@18730 53 if [ ! -f "$1/etc/apache/conf.d/zerobin" ]; then
pascal@18730 54 cat > "$1/etc/apache/conf.d/zerobin" <<EOT
pascal@12906 55 <IfModule mod_alias.c>
pascal@12906 56 Alias /paste /usr/share/zerobin/
pascal@12906 57 </IfModule>
pascal@12906 58 <DirectoryMatch /usr/share/zerobin/>
pascal@12906 59 php_value upload_max_filesize 2147483647
pascal@12906 60 DirectoryIndex index.php
pascal@12906 61 AllowOverride None
pascal@12906 62 Order allow,deny
pascal@12906 63 Allow from all
pascal@12906 64 </DirectoryMatch>
pascal@12906 65 EOT
pascal@12906 66 if [ -z "$1" ]; then
pascal@12906 67 # Start Web server.
pascal@12906 68 /etc/init.d/apache restart
pascal@12906 69 fi
pascal@12906 70 fi
pascal@12906 71 fi
pascal@12906 72 }