wok view apache/receipt @ rev 9663

pcre: clean-up receipt
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 01 09:13:52 2011 +0200 (2011-05-01)
parents 5701f391e47c
children a1644dbcf632
line source
1 # SliTaz package receipt.
3 PACKAGE="apache"
4 VERSION="2.2.17"
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 pcre util-linux-ng-uuid expat zlib"
13 BUILD_DEPENDS="apr-util-dev apr-dev openssl-dev sed expat-dev zlib-dev util-linux-ng-uuid-dev openldap-dev"
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 }
55 # Pre and post install commands for Tazpkg.
56 # We stop the server by default in case of upgarde.
57 pre_install()
58 {
59 echo "Processing pre-install commands..."
60 [ -z "$1" ] && [ -f /etc/init.d/$PACKAGE ] && /etc/init.d/$PACKAGE stop
61 }
63 post_install()
64 {
65 echo "Processing post-install commands..."
66 # Just in case.
67 chown www.www $1/var/log/$PACKAGE
68 ping -c 2 $(hostname) > /dev/null 2>&1 ||
69 sed -i "s/localhost/$(hostname) localhost/" /etc/hosts
70 openssl req -new -x509 -keyout $1/etc/ssl/apache/apache.pem \
71 -out $1/etc/ssl/apache/apache.pem -days 3650 -nodes <<EOT
72 $(. /etc/locale.conf ; echo ${LANG#*_})
73 $(cat /etc/TZ)
75 $(cat /etc/hostname)
79 EOT
80 ( cd $1/$INSTALLED/ ; grep -l /etc/apache/conf.d/ */receipt ) | \
81 while read file; do
82 pkg=$(dirname $file)
83 [ "$pkg" = "$PACKAGE" ] && continue
84 echo "Reconfiguring $pkg for $PACKAGE..."
85 tazpkg reconfigure $pkg
86 done
87 if [ -z "$1" ]; then
88 for i in lighttpd ; do
89 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
90 done
91 /etc/init.d/$PACKAGE start
92 fi
93 }
95 # Rules to clean extras dirs or files
96 clean_wok()
97 {
98 rm -rf $WOK/$PACKAGE/${PACKAGE}.${VERSION}
99 }