wok view apache/receipt @ rev 6289

Up: glade3 to 3.6.7.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Sep 15 18:55:25 2010 +0000 (2010-09-15)
parents acdedba976ad
children 4f6dafa1cfd3
line source
1 # SliTaz package receipt.
3 PACKAGE="apache"
4 VERSION="2.2.16"
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 util-linux-ng-uuid expat zlib"
13 BUILD_DEPENDS="apr-util-dev apr-dev openssl-dev sed"
14 CONFIG_FILES="/etc/apache /var/www /etc/ssl/apache"
15 PROVIDE="lighttpd"
16 TAGS="webserver http server"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 grep -q Slitaz config.layout || \
23 cat ../stuff/slitaz.layout >> config.layout
24 ./configure --mandir=/usr/share/man --enable-mods-shared=all \
25 --enable-proxy --enable-ssl \
26 --enable-layout=Slitaz $CONFIGURE_ARGS &&
27 make -j 4 && make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/apache $fs/etc/init.d $fs/etc/apache/conf.d
34 mkdir -p $fs/etc/ssl/apache
35 cp -a $_pkg/usr/share/apache/icons $fs/usr/share/apache
36 cp -a $_pkg/usr/share/apache/error $fs/usr/share/apache
37 cp -a $_pkg/usr/share/apache/modules $fs/usr/share/apache
38 cp -a $_pkg/usr/bin $fs/usr
39 rm -r $fs/usr/bin/apxs
40 cp -a $_pkg/etc $fs
41 rm -rf $fs/etc/apache/original
42 cp -a $_pkg/var $fs
44 cp -a stuff/apache $fs/etc/init.d
46 sed -i -e 's|User daemon|User www|' -e 's|Group daemon|Group www|' \
47 -e 's|ServerAdmin you@example.com|ServerAdmin root@localhost|' \
48 -e 's|#Include /etc/apache/extra/httpd-ssl.conf|Include /etc/apache/extra/httpd-ssl.conf|' \
49 -e 's|/etc/apache/server.crt|/etc/ssl/apache/apache.pem|' \
50 -e 's|/etc/apache/server.key|/etc/ssl/apache/apache.pem|' \
51 $fs/etc/apache/httpd.conf $fs/etc/apache/extra/httpd-ssl.conf
52 echo "Include /etc/apache/conf.d" >> $fs/etc/apache/httpd.conf
53 # Cook all packages based on apache
54 for i in $(cd $WOK; ls -d apache-*)
55 do
56 tazwok genpkg $i
57 done
58 }
60 # Pre and post install commands for Tazpkg.
61 # We stop the server by default in case of upgarde.
62 pre_install()
63 {
64 echo "Processing pre-install commands..."
65 [ -z "$1" ] && [ -f /etc/init.d/$PACKAGE ] && /etc/init.d/$PACKAGE stop
66 }
68 post_install()
69 {
70 echo "Processing post-install commands..."
71 # Just in case.
72 chown www.www $1/var/log/$PACKAGE
73 ping -c 2 $(hostname) > /dev/null 2>&1 ||
74 sed -i "s/localhost/$(hostname) localhost/" /etc/hosts
75 openssl req -new -x509 -keyout $1/etc/ssl/apache/apache.pem \
76 -out $1/etc/ssl/apache/apache.pem -days 3650 -nodes <<EOT
77 $(. /etc/locale.conf ; echo ${LANG#*_})
78 $(cat /etc/TZ)
80 $(cat /etc/hostname)
84 EOT
85 ( cd $1/$INSTALLED/ ; grep -l /etc/apache/conf.d/ */receipt ) | \
86 while read file; do
87 pkg=$(dirname $file)
88 [ "$pkg" = "$PACKAGE" ] && continue
89 echo "Reconfiguring $pkg for $PACKAGE..."
90 tazpkg reconfigure $pkg
91 done
92 if [ -z "$1" ]; then
93 for i in lighttpd ; do
94 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
95 done
96 /etc/init.d/$PACKAGE start
97 fi
98 }
100 # Rules to clean extras dirs or files
101 clean_wok()
102 {
103 rm -rf $WOK/$PACKAGE/${PACKAGE}.${VERSION}
104 }