wok annotate apache/receipt @ rev 4635

Up: cairo (1.8.8)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Dec 24 18:17:20 2009 +0100 (2009-12-24)
parents 0588160a6878
children 8b98d274afb5
rev   line source
pascal@1313 1 # SliTaz package receipt.
pascal@1313 2
pascal@1313 3 PACKAGE="apache"
erjo@4105 4 VERSION="2.2.13"
pascal@1313 5 CATEGORY="network"
pascal@1313 6 SHORT_DESC="Secure, efficient and extensible HTTP server."
pascal@1313 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1313 8 SOURCE="httpd"
pascal@1313 9 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@1313 10 WEB_SITE="http://www.apache.org/"
pascal@1313 11 WGET_URL="${WEB_SITE}dist/$SOURCE/$TARBALL"
pankso@4052 12 DEPENDS="apr-util apr openssl util-linux-ng-uuid expat zlib"
pascal@1786 13 BUILD_DEPENDS="apr-util-dev apr-dev openssl-dev"
pascal@1906 14 CONFIG_FILES="/etc/apache /var/www /etc/ssl/apache"
pascal@1572 15 PROVIDE="lighttpd"
pascal@1313 16
pascal@1313 17 # Rules to configure and make the package.
pascal@1313 18 compile_rules()
pascal@1313 19 {
pascal@1313 20 cd $src
pascal@1313 21 grep -q Slitaz config.layout || \
pascal@1313 22 cat ../stuff/slitaz.layout >> config.layout
pascal@1313 23 ./configure --mandir=/usr/share/man --enable-mods-shared=all \
pascal@1786 24 --enable-proxy --enable-ssl \
pascal@1658 25 --enable-layout=Slitaz $CONFIGURE_ARGS &&
pascal@1313 26 make && make DESTDIR=$PWD/_pkg install
pascal@1313 27 }
pascal@1313 28
pascal@1313 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1313 30 genpkg_rules()
pascal@1313 31 {
pascal@1313 32 mkdir -p $fs/usr/share/apache $fs/etc/init.d $fs/etc/apache/conf.d
pascal@1794 33 mkdir -p $fs/etc/ssl/apache
pascal@1313 34 cp -a $_pkg/usr/share/apache/icons $fs/usr/share/apache
pascal@1313 35 cp -a $_pkg/usr/share/apache/error $fs/usr/share/apache
pascal@1313 36 cp -a $_pkg/usr/share/apache/modules $fs/usr/share/apache
pascal@1313 37 cp -a $_pkg/usr/bin $fs/usr
pascal@1313 38 rm -r $fs/usr/bin/apxs
pascal@1313 39 cp -a $_pkg/etc $fs
pascal@1786 40 rm -rf $fs/etc/apache/original
pascal@1313 41 cp -a $_pkg/var $fs
erjo@4105 42
erjo@4105 43 cp -a stuff/apache $fs/etc/init.d
erjo@4105 44 # cat > $fs/etc/init.d/apache <<EOT
pascal@3874 45 #!/bin/sh
erjo@4105 46 #
erjo@4105 47 #. /etc/init.d/rc.functions
erjo@4105 48 #active_pidfile /var/run/apache/httpd.pid httpd
erjo@4105 49 #
erjo@4105 50 #exec /usr/bin/apachectl "\$@"
erjo@4105 51 #EOT
erjo@4105 52 # chmod +x $fs/etc/init.d/apache
pascal@1313 53 sed -i -e 's|User daemon|User www|' -e 's|Group daemon|Group www|' \
pascal@1313 54 -e 's|ServerAdmin you@example.com|ServerAdmin root@localhost|' \
pascal@1794 55 -e 's|#Include /etc/apache/extra/httpd-ssl.conf|Include /etc/apache/extra/httpd-ssl.conf|' \
pascal@1794 56 -e 's|/etc/apache/server.crt|/etc/ssl/apache/apache.pem|' \
pascal@1794 57 -e 's|/etc/apache/server.key|/etc/ssl/apache/apache.pem|' \
pascal@1794 58 $fs/etc/apache/httpd.conf $fs/etc/apache/extra/httpd-ssl.conf
pascal@1313 59 echo "Include /etc/apache/conf.d" >> $fs/etc/apache/httpd.conf
pascal@1313 60 # Cook all packages based on apache
pascal@1313 61 for i in $(cd $WOK; ls -d apache-*)
pascal@1313 62 do
pascal@1313 63 tazwok genpkg $i
pascal@1313 64 done
pascal@1313 65 }
pascal@1313 66
pascal@1313 67 # Pre and post install commands for Tazpkg.
pascal@1313 68 # We stop the server by default in case of upgarde.
pascal@1313 69 pre_install()
pascal@1313 70 {
pascal@1313 71 echo "Processing pre-install commands..."
pascal@1794 72 [ -z "$1" ] && [ -f /etc/init.d/$PACKAGE ] && /etc/init.d/$PACKAGE stop
pascal@1313 73 }
pascal@1313 74
pascal@1313 75 post_install()
pascal@1313 76 {
pascal@1313 77 echo "Processing post-install commands..."
pascal@1313 78 # Just in case.
pascal@1313 79 chown www.www $1/var/log/$PACKAGE
pascal@1658 80 ping -c 2 $(hostname) > /dev/null 2>&1 ||
pascal@1658 81 sed -i "s/localhost/$(hostname) localhost/" /etc/hosts
pascal@1794 82 openssl req -new -x509 -keyout $1/etc/ssl/apache/apache.pem \
pascal@1794 83 -out $1/etc/ssl/apache/apache.pem -days 3650 -nodes <<EOT
pascal@1794 84 $(. /etc/locale.conf ; echo ${LANG#*_})
pascal@1794 85 $(cat /etc/TZ)
pascal@1794 86
pascal@1794 87 $(cat /etc/hostname)
pascal@1794 88
pascal@1794 89
pascal@1794 90
pascal@1794 91 EOT
pascal@1922 92 ( cd $1/$INSTALLED/ ; grep -l /etc/apache/conf.d/ */receipt ) | \
pascal@1922 93 while read file; do
pascal@1922 94 pkg=$(dirname $file)
pascal@1922 95 [ "$pkg" = "$PACKAGE" ] && continue
pascal@1922 96 echo "Reconfiguring $pkg for $PACKAGE..."
pascal@1922 97 tazpkg reconfigure $pkg
pascal@1922 98 done
pascal@1905 99 if [ -z "$1" ]; then
pascal@1905 100 for i in lighttpd ; do
pascal@1905 101 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
pascal@1905 102 done
pascal@1905 103 /etc/init.d/$PACKAGE start
pascal@1905 104 fi
pascal@1313 105 }
pascal@1313 106
pascal@1313 107 # Rules to clean extras dirs or files
pascal@1313 108 clean_wok()
pascal@1313 109 {
pascal@1313 110 rm -rf $WOK/$PACKAGE/${PACKAGE}.${VERSION}
pascal@1313 111 }