wok annotate lighttpd-ssl/receipt @ rev 15379

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