wok view apache/receipt @ rev 18535

Up slitaz-configs(264): add Openbox key bindings
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 30 23:42:07 2015 +0200 (2015-10-30)
parents f2bdc266fba2
children b6466c362ce8
line source
1 # SliTaz package receipt.
3 PACKAGE="apache"
4 VERSION="2.4.16"
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 -e 's|#LoadModule ssl_module|LoadModule ssl_module|' \
60 $fs/etc/apache/httpd.conf $fs/etc/apache/extra/httpd-ssl.conf
61 echo "Include /etc/apache/conf.d" >> $fs/etc/apache/httpd.conf
62 cat >> $fs/etc/apache/extra/httpd-ssl.conf <<EOT
64 # Unsafe, see CVE-2014-3566 POODLE
65 SSLProtocol All -SSLv2 -SSLv3
66 EOT
67 }
69 # Pre and post install commands for Tazpkg.
70 # We stop the server by default in case of upgarde.
71 pre_install()
72 {
73 echo "Processing pre-install commands..."
74 [ -z "$1" ] && [ -f /etc/init.d/$PACKAGE ] && /etc/init.d/$PACKAGE stop
75 }
77 post_install()
78 {
79 local lang=$(. /etc/locale.conf 2>/dev/null; echo ${LANG#*_})
80 local tz=$(cat /etc/TZ 2>/dev/null)
81 local hostname=$(cat /etc/hostname 2>/dev/null)
82 echo "Processing post-install commands..."
83 # Just in case.
84 chown www.www $1/var/log/$PACKAGE
85 ping -c 2 $(hostname) > /dev/null 2>&1 ||
86 sed -i "s/localhost/$(hostname) localhost/" $1/etc/hosts
87 [ -s $1/etc/ssl/apache/apache.pem ] ||
88 openssl req -new -x509 -keyout $1/etc/ssl/apache/apache.pem \
89 -out $1/etc/ssl/apache/apache.pem -days 3650 -nodes <<EOT
90 ${lang:-us}
91 ${tz:-UTC}
93 ${hostname:-slitaz}
97 EOT
98 ( cd $1/$INSTALLED/ ; grep -l /etc/apache/conf.d/ */receipt ) | \
99 while read file; do
100 pkg=$(dirname $file)
101 [ "$pkg" = "$PACKAGE" ] && continue
102 echo "Reconfiguring $pkg for $PACKAGE..."
103 tazpkg reconfigure $pkg
104 done
105 [ -f $1/etc/php.ini ] && tazpkg get-install php-apache --root=$1
106 if [ -z "$1" ]; then
107 for i in lighttpd ; do
108 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
109 done
110 /etc/init.d/$PACKAGE start
111 fi
112 }
114 # Rules to clean extras dirs or files
115 clean_wok()
116 {
117 rm -rf $WOK/$PACKAGE/${PACKAGE}.${VERSION}
118 }