wok annotate lighttpd-ssl/receipt @ rev 8615

Fix: replace exit 1 by return 1 in receipts (exit broke cook-list function)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Feb 14 19:09:46 2011 +0100 (2011-02-14)
parents d9b4b980292d
children df3ccb15ee3c
rev   line source
pascal@1787 1 # SliTaz package receipt.
pascal@1787 2
pascal@1787 3 PACKAGE="lighttpd-ssl"
slaxemulator@6149 4 VERSION="1.4.28"
pascal@1787 5 CATEGORY="network"
pascal@1787 6 SHORT_DESC="Fast and light HTTP Web server with SSL support."
pascal@1787 7 MAINTAINER="pankso@slitaz.org"
pascal@1787 8 DEPENDS="pcre openssl"
pascal@1787 9 BUILD_DEPENDS="pcre-dev bzip2-dev openssl-dev"
pascal@1787 10 SUGGESTED="lighttpd-modules php perl python"
pascal@1787 11 SOURCE="lighttpd"
pascal@1787 12 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1787 13 WEB_SITE="http://www.lighttpd.net/"
pascal@4576 14 WGET_URL="http://download.lighttpd.net/lighttpd/releases-1.4.x/$TARBALL"
pascal@1906 15 CONFIG_FILES="/etc/lighttpd /etc/ssl/lighttpd"
pascal@1787 16 PROVIDE="lighttpd"
pascal@1787 17 BASE_MODULES="
pascal@1787 18 access
pascal@1787 19 accesslog
pascal@1787 20 alias
pascal@1787 21 cgi
pascal@1787 22 dirlisting
pascal@1787 23 indexfile
pascal@1787 24 staticfile
pascal@1787 25 rewrite
pascal@1787 26 status
pascal@1787 27 userdir"
slaxemulator@8495 28 SRC_WANTED="$SOURCE"
pascal@1787 29
pascal@1787 30 # Rules to configure and make the package.
pascal@1787 31 compile_rules()
pascal@1787 32 {
pascal@1787 33 cd $src
pascal@1787 34 if [ ! done.fastcgi_detach.patch ]; then
gokhlayeh@8615 35 patch -i ../stuff/fastcgi_detach.patch || return 1
pascal@1787 36 touch done.fastcgi_detach.patch
pascal@1787 37 fi
pascal@1787 38 ./configure \
pascal@1787 39 --enable-shared \
pascal@1787 40 --disable-ipv6 \
pascal@1787 41 --with-openssl \
pascal@1787 42 --prefix=/usr \
pascal@1787 43 --libdir=/usr/lib/lighttpd \
pascal@1787 44 --mandir=/usr/share/man \
pascal@1787 45 $CONFIGURE_ARGS &&
pascal@1787 46 make &&
pascal@1787 47 make DESTDIR=$PWD/_pkg install
pascal@1787 48 }
pascal@1787 49
pascal@1787 50 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1787 51 # On SliTaz Lighttpd runs as user/group : www/www or 80/80.
pascal@1787 52 genpkg_rules()
pascal@1787 53 {
pascal@1787 54 mkdir -p $fs/usr
slaxemulator@6149 55 #cp -a $_pkg/usr/bin $fs/usr
pascal@1787 56 cp -a $_pkg/usr/sbin $fs/usr
pankso@4572 57
pascal@1787 58 # Modules.
pascal@1787 59 mkdir -p $fs/usr/lib/lighttpd
pascal@1787 60 for module in $BASE_MODULES
pascal@1787 61 do
pascal@1787 62 cp $_pkg/usr/lib/lighttpd/mod_${module}.so $fs/usr/lib/lighttpd
pascal@1787 63 echo -n "Copying : mod_${module}.so" && status
pascal@1787 64 done
pankso@4572 65
pascal@1787 66 # Server root and config file.
pascal@1787 67 cp -a stuff/var $fs
pascal@1787 68 cp -a stuff/etc $fs
pascal@1787 69 chown -R 0.0 $fs/var/www
pascal@1787 70 chown -R 0.0 $fs/etc
pascal@1790 71 mkdir -p $fs/etc/ssl/lighttpd
pascal@1790 72 cat >> $fs/etc/lighttpd/lighttpd.conf <<EOT
pascal@1789 73
pascal@1789 74 # Enable HTTPS support
pascal@1789 75 #
pascal@1791 76 \$SERVER["socket"] == ":443" {
pascal@1789 77 protocol = "https://"
pascal@1789 78 ssl.engine = "enable"
pascal@1789 79 ssl.pemfile = "/etc/ssl/lighttpd/lighttpd.pem"
pascal@1789 80 }
pascal@1789 81 EOT
pankso@4572 82
pascal@1787 83 # Logs directory.
pascal@1787 84 mkdir -p $fs/var/log/lighttpd
pascal@1787 85 chown 80.80 $fs/var/log/lighttpd
pascal@1787 86 }
pascal@1787 87
pascal@1787 88 # Pre and post install commands for Tazpkg.
pascal@1787 89 # We stop the server by default in case of upgarde.
pascal@1787 90 pre_install()
pascal@1787 91 {
pascal@1787 92 echo "Processing pre-install commands..."
pascal@1788 93 [ -f /etc/init.d/lighttpd ] && /etc/init.d/lighttpd stop
pascal@1787 94 }
pascal@1906 95
pascal@1787 96 post_install()
pascal@1787 97 {
pascal@1787 98 echo "Processing post-install commands..."
pascal@1789 99 if [ ! -f $1/etc/ssl/lighttpd/lighttpd.pem ]; then
pascal@1789 100 openssl req -new -x509 \
pascal@1789 101 -keyout $1/etc/ssl/lighttpd/lighttpd.pem \
pascal@1789 102 -out $1/etc/ssl/lighttpd/lighttpd.pem \
pascal@1906 103 -days 3650 -nodes <<EOT
pascal@1789 104 $(. /etc/locale.conf ; echo ${LANG#*_})
pascal@1789 105 $(cat /etc/TZ)
pascal@1789 106
pascal@1789 107 $(cat /etc/hostname)
pascal@1789 108
pascal@1789 109
pascal@1789 110
pascal@1789 111 EOT
pascal@1789 112 fi
pascal@1787 113 # Just in case.
pascal@1905 114 chown www.www $1/var/log/lighttpd
pascal@1905 115 if [ -z "$1" ]; then
pascal@1905 116 for i in apache ; do
pascal@1905 117 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
pascal@1905 118 done
erjo@2620 119 /etc/init.d/lighttpd start
pascal@1905 120 fi
pascal@1787 121 }