wok view apache/receipt @ rev 11152

ekiga: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 02 08:35:14 2011 +0100 (2011-11-02)
parents 921a6b00196d
children cfdc7a358251
line source
1 # SliTaz package receipt.
3 PACKAGE="apache"
4 VERSION="2.2.21"
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
45 mkdir -p $fs/etc/apache/extra
46 cp -a $stuff/fix-range-CVE-2011-3192.conf $fs/etc/apache/extra
48 sed -i -e 's|User daemon|User www|' -e 's|Group daemon|Group www|' \
49 -e 's|ServerAdmin you@example.com|ServerAdmin root@localhost|' \
50 -e 's|#Include /etc/apache/extra/httpd-ssl.conf|Include /etc/apache/extra/httpd-ssl.conf|' \
51 -e 's|/etc/apache/server.crt|/etc/ssl/apache/apache.pem|' \
52 -e 's|/etc/apache/server.key|/etc/ssl/apache/apache.pem|' \
53 $fs/etc/apache/httpd.conf $fs/etc/apache/extra/httpd-ssl.conf
54 echo "Include /etc/apache/conf.d" >> $fs/etc/apache/httpd.conf
55 }
57 # Pre and post install commands for Tazpkg.
58 # We stop the server by default in case of upgarde.
59 pre_install()
60 {
61 echo "Processing pre-install commands..."
62 [ -z "$1" ] && [ -f /etc/init.d/$PACKAGE ] && /etc/init.d/$PACKAGE stop
63 }
65 post_install()
66 {
67 echo "Processing post-install commands..."
68 # Just in case.
69 chown www.www $1/var/log/$PACKAGE
70 ping -c 2 $(hostname) > /dev/null 2>&1 ||
71 sed -i "s/localhost/$(hostname) localhost/" /etc/hosts
72 openssl req -new -x509 -keyout $1/etc/ssl/apache/apache.pem \
73 -out $1/etc/ssl/apache/apache.pem -days 3650 -nodes <<EOT
74 $(. /etc/locale.conf ; echo ${LANG#*_})
75 $(cat /etc/TZ)
77 $(cat /etc/hostname)
81 EOT
82 ( cd $1/$INSTALLED/ ; grep -l /etc/apache/conf.d/ */receipt ) | \
83 while read file; do
84 pkg=$(dirname $file)
85 [ "$pkg" = "$PACKAGE" ] && continue
86 echo "Reconfiguring $pkg for $PACKAGE..."
87 tazpkg reconfigure $pkg
88 done
89 if [ -z "$1" ]; then
90 for i in lighttpd ; do
91 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
92 done
93 /etc/init.d/$PACKAGE start
94 fi
95 }
97 # Rules to clean extras dirs or files
98 clean_wok()
99 {
100 rm -rf $WOK/$PACKAGE/${PACKAGE}.${VERSION}
101 }