wok annotate lighttpd-ssl/receipt @ rev 1906

apache,lighttpd*: update CONFIG_FILES
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 21 11:06:05 2008 +0000 (2008-12-21)
parents 9009ad93df56
children 505ef4de4664
rev   line source
pascal@1787 1 # SliTaz package receipt.
pascal@1787 2
pascal@1787 3 PACKAGE="lighttpd-ssl"
pascal@1787 4 VERSION="1.4.20"
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@1787 14 #WGET_URL="http://www.lighttpd.net/download/$TARBALL"
pascal@1787 15 WGET_URL="http://mirror.slitaz.org/sources/packages/l/$TARBALL"
pascal@1906 16 CONFIG_FILES="/etc/lighttpd /etc/ssl/lighttpd"
pascal@1787 17 PROVIDE="lighttpd"
pascal@1787 18 BASE_MODULES="
pascal@1787 19 access
pascal@1787 20 accesslog
pascal@1787 21 alias
pascal@1787 22 cgi
pascal@1787 23 dirlisting
pascal@1787 24 indexfile
pascal@1787 25 staticfile
pascal@1787 26 rewrite
pascal@1787 27 status
pascal@1787 28 userdir"
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
pascal@1787 35 patch -i ../stuff/fastcgi_detach.patch || exit 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
pascal@1787 55 cp -a $_pkg/usr/bin $fs/usr
pascal@1787 56 cp -a $_pkg/usr/sbin $fs/usr
pascal@1787 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
pascal@1787 65 strip -s $fs/usr/bin/*
pascal@1787 66 strip -s $fs/usr/sbin/*
pascal@1787 67 strip -s $fs/usr/lib/lighttpd/*
pascal@1787 68
pascal@1787 69 # Server root and config file.
pascal@1787 70 cp -a stuff/var $fs
pascal@1787 71 cp -a stuff/etc $fs
pascal@1787 72 chown -R 0.0 $fs/var/www
pascal@1787 73 chown -R 0.0 $fs/etc
pascal@1790 74 mkdir -p $fs/etc/ssl/lighttpd
pascal@1790 75 cat >> $fs/etc/lighttpd/lighttpd.conf <<EOT
pascal@1789 76
pascal@1789 77 # Enable HTTPS support
pascal@1789 78 #
pascal@1791 79 \$SERVER["socket"] == ":443" {
pascal@1789 80 protocol = "https://"
pascal@1789 81 ssl.engine = "enable"
pascal@1789 82 ssl.pemfile = "/etc/ssl/lighttpd/lighttpd.pem"
pascal@1789 83 }
pascal@1789 84 EOT
pascal@1787 85
pascal@1787 86 # Logs directory.
pascal@1787 87 mkdir -p $fs/var/log/lighttpd
pascal@1787 88 chown 80.80 $fs/var/log/lighttpd
pascal@1787 89 }
pascal@1787 90
pascal@1787 91 # Pre and post install commands for Tazpkg.
pascal@1787 92 # We stop the server by default in case of upgarde.
pascal@1787 93 pre_install()
pascal@1787 94 {
pascal@1787 95 echo "Processing pre-install commands..."
pascal@1788 96 [ -f /etc/init.d/lighttpd ] && /etc/init.d/lighttpd stop
pascal@1787 97 }
pascal@1906 98
pascal@1787 99 post_install()
pascal@1787 100 {
pascal@1787 101 echo "Processing post-install commands..."
pascal@1789 102 if [ ! -f $1/etc/ssl/lighttpd/lighttpd.pem ]; then
pascal@1789 103 openssl req -new -x509 \
pascal@1789 104 -keyout $1/etc/ssl/lighttpd/lighttpd.pem \
pascal@1789 105 -out $1/etc/ssl/lighttpd/lighttpd.pem \
pascal@1906 106 -days 3650 -nodes <<EOT
pascal@1789 107 $(. /etc/locale.conf ; echo ${LANG#*_})
pascal@1789 108 $(cat /etc/TZ)
pascal@1789 109
pascal@1789 110 $(cat /etc/hostname)
pascal@1789 111
pascal@1789 112
pascal@1789 113
pascal@1789 114 EOT
pascal@1789 115 fi
pascal@1787 116 # Just in case.
pascal@1905 117 chown www.www $1/var/log/lighttpd
pascal@1905 118 if [ -z "$1" ]; then
pascal@1905 119 for i in apache ; do
pascal@1905 120 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
pascal@1905 121 done
pascal@1905 122 /etc/init.d/$PACKAGE start
pascal@1905 123 fi
pascal@1787 124 }