wok view apache/receipt @ rev 1861

Add: tcl6.5*, tk8.5*.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Dec 16 00:20:30 2008 +0100 (2008-12-16)
parents d699aa373d79
children 9009ad93df56
line source
1 # SliTaz package receipt.
3 PACKAGE="apache"
4 VERSION="2.2.9"
5 CATEGORY="network"
6 SHORT_DESC="Secure, efficient and extensible HTTP server."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="httpd"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.apache.org/"
11 WGET_URL="${WEB_SITE}dist/$SOURCE/$TARBALL"
12 DEPENDS="apr-util apr openssl"
13 BUILD_DEPENDS="apr-util-dev apr-dev openssl-dev"
14 CONFIG_FILES="/etc/apache /var/www"
15 PROVIDE="lighttpd"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 grep -q Slitaz config.layout || \
22 cat ../stuff/slitaz.layout >> config.layout
23 ./configure --mandir=/usr/share/man --enable-mods-shared=all \
24 --enable-proxy --enable-ssl \
25 --enable-layout=Slitaz $CONFIGURE_ARGS &&
26 make && make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/apache $fs/etc/init.d $fs/etc/apache/conf.d
33 mkdir -p $fs/etc/ssl/apache
34 cp -a $_pkg/usr/share/apache/icons $fs/usr/share/apache
35 cp -a $_pkg/usr/share/apache/error $fs/usr/share/apache
36 cp -a $_pkg/usr/share/apache/modules $fs/usr/share/apache
37 cp -a $_pkg/usr/bin $fs/usr
38 rm -r $fs/usr/bin/apxs
39 cp -a $_pkg/etc $fs
40 rm -rf $fs/etc/apache/original
41 cp -a $_pkg/var $fs
42 ln -s /usr/bin/apachectl $fs/etc/init.d/apache
43 sed -i -e 's|User daemon|User www|' -e 's|Group daemon|Group www|' \
44 -e 's|ServerAdmin you@example.com|ServerAdmin root@localhost|' \
45 -e 's|mod_rewrite.so|mod_rewrite.so\nLoadModule ssl_module share/apache/modules/mod_ssl.so\nLoadModule proxy_module share/apache/modules/mod_proxy.so\nLoadModule proxy_http_module share/apache/modules/mod_proxy_http.so|' \
46 -e 's|#Include /etc/apache/extra/httpd-ssl.conf|Include /etc/apache/extra/httpd-ssl.conf|' \
47 -e 's|/etc/apache/server.crt|/etc/ssl/apache/apache.pem|' \
48 -e 's|/etc/apache/server.key|/etc/ssl/apache/apache.pem|' \
49 $fs/etc/apache/httpd.conf $fs/etc/apache/extra/httpd-ssl.conf
50 echo "Include /etc/apache/conf.d" >> $fs/etc/apache/httpd.conf
51 # Cook all packages based on apache
52 for i in $(cd $WOK; ls -d apache-*)
53 do
54 tazwok genpkg $i
55 done
56 }
58 # Pre and post install commands for Tazpkg.
59 # We stop the server by default in case of upgarde.
60 pre_install()
61 {
62 echo "Processing pre-install commands..."
63 [ -z "$1" ] && [ -f /etc/init.d/$PACKAGE ] && /etc/init.d/$PACKAGE stop
64 }
66 post_install()
67 {
68 echo "Processing post-install commands..."
69 # Just in case.
70 chown www.www $1/var/log/$PACKAGE
71 ping -c 2 $(hostname) > /dev/null 2>&1 ||
72 sed -i "s/localhost/$(hostname) localhost/" /etc/hosts
73 openssl req -new -x509 -keyout $1/etc/ssl/apache/apache.pem \
74 -out $1/etc/ssl/apache/apache.pem -days 3650 -nodes <<EOT
75 $(. /etc/locale.conf ; echo ${LANG#*_})
76 $(cat /etc/TZ)
78 $(cat /etc/hostname)
82 EOT
83 [ -z "$1" ] && /etc/init.d/$PACKAGE start
84 }
86 # Rules to clean extras dirs or files
87 clean_wok()
88 {
89 rm -rf $WOK/$PACKAGE/${PACKAGE}.${VERSION}
90 }