wok annotate lighttpd-ssl/receipt @ rev 8652

Fixed lighttpd-ssl to not use stuff soft line but to use it directly.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Feb 15 20:49:24 2011 +0000 (2011-02-15)
parents 0b4cf0d9e1b5
children cab40ed8020d
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"
pascal@1787 28
pascal@1787 29 # Rules to configure and make the package.
pascal@1787 30 compile_rules()
pascal@1787 31 {
pascal@1787 32 cd $src
pascal@1787 33 if [ ! done.fastcgi_detach.patch ]; then
slaxemulator@8652 34 patch -i $WOK/$SOURCE/stuff/fastcgi_detach.patch || return 1
pascal@1787 35 touch done.fastcgi_detach.patch
pascal@1787 36 fi
pascal@1787 37 ./configure \
pascal@1787 38 --enable-shared \
pascal@1787 39 --disable-ipv6 \
pascal@1787 40 --with-openssl \
pascal@1787 41 --prefix=/usr \
pascal@1787 42 --libdir=/usr/lib/lighttpd \
pascal@1787 43 --mandir=/usr/share/man \
pascal@1787 44 $CONFIGURE_ARGS &&
pascal@1787 45 make &&
pascal@1787 46 make DESTDIR=$PWD/_pkg install
pascal@1787 47 }
pascal@1787 48
pascal@1787 49 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1787 50 # On SliTaz Lighttpd runs as user/group : www/www or 80/80.
pascal@1787 51 genpkg_rules()
pascal@1787 52 {
pascal@1787 53 mkdir -p $fs/usr
slaxemulator@6149 54 #cp -a $_pkg/usr/bin $fs/usr
pascal@1787 55 cp -a $_pkg/usr/sbin $fs/usr
pankso@4572 56
pascal@1787 57 # Modules.
pascal@1787 58 mkdir -p $fs/usr/lib/lighttpd
pascal@1787 59 for module in $BASE_MODULES
pascal@1787 60 do
pascal@1787 61 cp $_pkg/usr/lib/lighttpd/mod_${module}.so $fs/usr/lib/lighttpd
pascal@1787 62 echo -n "Copying : mod_${module}.so" && status
pascal@1787 63 done
pankso@4572 64
pascal@1787 65 # Server root and config file.
slaxemulator@8652 66 cp -a $WOK/$SOURCE/stuff/var $fs
slaxemulator@8652 67 cp -a $WOK/$SOURCE/stuff/etc $fs
pascal@1787 68 chown -R 0.0 $fs/var/www
pascal@1787 69 chown -R 0.0 $fs/etc
pascal@1790 70 mkdir -p $fs/etc/ssl/lighttpd
pascal@1790 71 cat >> $fs/etc/lighttpd/lighttpd.conf <<EOT
pascal@1789 72
pascal@1789 73 # Enable HTTPS support
pascal@1789 74 #
pascal@1791 75 \$SERVER["socket"] == ":443" {
pascal@1789 76 protocol = "https://"
pascal@1789 77 ssl.engine = "enable"
pascal@1789 78 ssl.pemfile = "/etc/ssl/lighttpd/lighttpd.pem"
pascal@1789 79 }
pascal@1789 80 EOT
pankso@4572 81
pascal@1787 82 # Logs directory.
pascal@1787 83 mkdir -p $fs/var/log/lighttpd
pascal@1787 84 chown 80.80 $fs/var/log/lighttpd
pascal@1787 85 }
pascal@1787 86
pascal@1787 87 # Pre and post install commands for Tazpkg.
pascal@1787 88 # We stop the server by default in case of upgarde.
pascal@1787 89 pre_install()
pascal@1787 90 {
pascal@1787 91 echo "Processing pre-install commands..."
pascal@1788 92 [ -f /etc/init.d/lighttpd ] && /etc/init.d/lighttpd stop
pascal@1787 93 }
pascal@1906 94
pascal@1787 95 post_install()
pascal@1787 96 {
pascal@1787 97 echo "Processing post-install commands..."
pascal@1789 98 if [ ! -f $1/etc/ssl/lighttpd/lighttpd.pem ]; then
pascal@1789 99 openssl req -new -x509 \
pascal@1789 100 -keyout $1/etc/ssl/lighttpd/lighttpd.pem \
pascal@1789 101 -out $1/etc/ssl/lighttpd/lighttpd.pem \
pascal@1906 102 -days 3650 -nodes <<EOT
pascal@1789 103 $(. /etc/locale.conf ; echo ${LANG#*_})
pascal@1789 104 $(cat /etc/TZ)
pascal@1789 105
pascal@1789 106 $(cat /etc/hostname)
pascal@1789 107
pascal@1789 108
pascal@1789 109
pascal@1789 110 EOT
pascal@1789 111 fi
pascal@1787 112 # Just in case.
pascal@1905 113 chown www.www $1/var/log/lighttpd
pascal@1905 114 if [ -z "$1" ]; then
pascal@1905 115 for i in apache ; do
pascal@1905 116 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
pascal@1905 117 done
erjo@2620 118 /etc/init.d/lighttpd start
pascal@1905 119 fi
pascal@1787 120 }