wok view apache/receipt @ rev 15364

apache: keep httpd name
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 03 16:27:18 2013 +0000 (2013-10-03)
parents 191b99ca9dc2
children 854aac736a5d
line source
1 # SliTaz package receipt.
3 PACKAGE="apache"
4 VERSION="2.4.4"
5 CATEGORY="network"
6 SHORT_DESC="Secure, efficient and extensible HTTP server."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="Apache"
9 SOURCE="httpd"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.apache.org/"
12 WGET_URL="${WEB_SITE}dist/$SOURCE/$TARBALL"
13 CONFIG_FILES="/etc/apache /var/www /etc/ssl/apache"
14 TAZPANEL_DAEMON="edit::/etc/apache/httpd.conf|web::$WEB_SITE"
15 PROVIDE="lighttpd"
16 TAGS="webserver http server"
18 DEPENDS="apr-util apr openssl pcre util-linux-uuid expat zlib"
19 BUILD_DEPENDS="apr-util-dev apr-dev openssl-dev sed expat-dev zlib-dev \
20 util-linux-uuid-dev openldap-dev bash"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 cd $src
26 grep -q Slitaz config.layout || \
27 cat $stuff/slitaz.layout >> config.layout
28 ./configure --mandir=/usr/share/man \
29 --enable-mods-shared=all \
30 --enable-proxy \
31 --enable-ssl \
32 --enable-layout=Slitaz $CONFIGURE_ARGS &&
33 make $MAKEFLAGS && make DESTDIR=$DESTDIR install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/share/apache $fs/etc/init.d $fs/etc/apache/conf.d
40 mkdir -p $fs/etc/ssl/apache
41 cp -a $install/usr/share/apache/icons $fs/usr/share/apache
42 cp -a $install/usr/share/apache/error $fs/usr/share/apache
43 cp -a $install/usr/share/apache/modules $fs/usr/share/apache
44 cp -a $install/usr/bin $fs/usr
45 rm -r $fs/usr/bin/apxs
46 cp -a $install/etc $fs
47 rm -rf $fs/etc/apache/original
48 cp -a $install/var $fs
50 cp -a $stuff/apache $fs/etc/init.d
51 mkdir -p $fs/etc/apache/extra
52 cp -a $stuff/fix-range-CVE-2011-3192.conf $fs/etc/apache/extra
54 sed -i -e 's|User daemon|User www|' -e 's|Group daemon|Group www|' \
55 -e 's|ServerAdmin you@example.com|ServerAdmin root@localhost|' \
56 -e 's|#Include /etc/apache/extra/httpd-ssl.conf|Include /etc/apache/extra/httpd-ssl.conf|' \
57 -e 's|/etc/apache/server.crt|/etc/ssl/apache/apache.pem|' \
58 -e 's|/etc/apache/server.key|/etc/ssl/apache/apache.pem|' \
59 $fs/etc/apache/httpd.conf $fs/etc/apache/extra/httpd-ssl.conf
60 echo "Include /etc/apache/conf.d" >> $fs/etc/apache/httpd.conf
61 }
63 # Pre and post install commands for Tazpkg.
64 # We stop the server by default in case of upgarde.
65 pre_install()
66 {
67 echo "Processing pre-install commands..."
68 [ -z "$1" ] && [ -f /etc/init.d/$PACKAGE ] && /etc/init.d/$PACKAGE stop
69 }
71 post_install()
72 {
73 local lang=$(. /etc/locale.conf 2>/dev/null; echo ${LANG#*_})
74 local tz=$(cat /etc/TZ 2>/dev/null)
75 local hostname=$(cat /etc/hostname 2>/dev/null)
76 echo "Processing post-install commands..."
77 # Just in case.
78 chown www.www $1/var/log/$PACKAGE
79 ping -c 2 $(hostname) > /dev/null 2>&1 ||
80 sed -i "s/localhost/$(hostname) localhost/" /etc/hosts
81 [ -s $1/etc/ssl/apache/apache.pem ] ||
82 openssl req -new -x509 -keyout $1/etc/ssl/apache/apache.pem \
83 -out $1/etc/ssl/apache/apache.pem -days 3650 -nodes <<EOT
84 ${lang:-us}
85 ${tz:-UTC}
87 ${hostname:-slitaz}
91 EOT
92 ( cd $1/$INSTALLED/ ; grep -l /etc/apache/conf.d/ */receipt ) | \
93 while read file; do
94 pkg=$(dirname $file)
95 [ "$pkg" = "$PACKAGE" ] && continue
96 echo "Reconfiguring $pkg for $PACKAGE..."
97 tazpkg reconfigure $pkg
98 done
99 if [ -z "$1" ]; then
100 for i in lighttpd ; do
101 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
102 done
103 /etc/init.d/$PACKAGE start
104 fi
105 }
107 # Rules to clean extras dirs or files
108 clean_wok()
109 {
110 rm -rf $WOK/$PACKAGE/${PACKAGE}.${VERSION}
111 }