wok view apache/receipt @ rev 22173

clementine: added build dependency chromaprint-dev
author Hans-G?nter Theisgen
date Fri Nov 08 14:48:56 2019 +0100 (2019-11-08)
parents 93ff6b5d254b
children 8c3e3fa52973
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 lua5.1-dev util-linux-uuid-dev openldap-dev bash"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 grep -q Slitaz config.layout || \
26 cat $stuff/slitaz.layout >> config.layout
27 ./configure --mandir=/usr/share/man \
28 --enable-mods-shared=all \
29 --enable-proxy \
30 --enable-ssl \
31 --enable-layout=Slitaz $CONFIGURE_ARGS &&
32 make $MAKEFLAGS && make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/share/apache $fs/etc/init.d $fs/etc/apache/conf.d
39 mkdir -p $fs/etc/ssl/apache
40 cp -a $install/usr/share/apache/icons $fs/usr/share/apache
41 cp -a $install/usr/share/apache/error $fs/usr/share/apache
42 cp -a $install/usr/share/apache/modules $fs/usr/share/apache
43 cp -a $install/usr/bin $fs/usr
44 rm -r $fs/usr/bin/apxs
45 cp -a $install/etc $fs
46 rm -rf $fs/etc/apache/original
47 cp -a $install/var $fs
49 cp -a $stuff/apache $fs/etc/init.d
50 mkdir -p $fs/etc/apache/extra
51 cp -a $stuff/fix-range-CVE-2011-3192.conf $fs/etc/apache/extra
53 sed -i -e 's|User daemon|User www|' -e 's|Group daemon|Group www|' \
54 -e 's|ServerAdmin you@example.com|ServerAdmin root@localhost|' \
55 -e 's|#Include /etc/apache/extra/httpd-ssl.conf|Include /etc/apache/extra/httpd-ssl.conf|' \
56 -e 's|/etc/apache/server.crt|/etc/ssl/apache/apache.pem|' \
57 -e 's|/etc/apache/server.key|/etc/ssl/apache/apache.pem|' \
58 -e 's|#LoadModule ssl_module|LoadModule ssl_module|' \
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 sed -i 's/^SSLSessionCache /#&/' $fs/etc/apache/extra/httpd-ssl.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 [ -z "$1" ] && for i in httpd lighttpd ngnix cherokee $PACKAGE ; do
74 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
75 done
76 }
78 post_install()
79 {
80 local lang=$(. $1/etc/locale.conf 2>/dev/null; echo ${LANG#*_})
81 local tz=$(cat $1/etc/TZ 2>/dev/null)
82 local hostname=$(cat $1/etc/hostname 2>/dev/null)
84 # Just in case.
85 chown www.www "$1/var/log/$PACKAGE"
86 ping -c 2 $(hostname) > /dev/null 2>&1 ||
87 sed -i "s/localhost/$(hostname) localhost/" "$1/etc/hosts"
88 sed -i -e "s/^#\(LoadModule.*slotmem_shm.*\)$/\1/" \
89 -e "s/.*ServerName www.example.*/ServerName ${hostname:-slitaz}/" \
90 $1/etc/apache/httpd.conf $1/etc/apache/extra/httpd-ssl.conf
91 grep -qs Apache $1/var/www/index.html &&
92 sed -i 's|^LighTTPD.*|&\nApache configs : /etc/apache|' \
93 $1/var/www/index.html
94 [ -s "$1/etc/ssl/apache/apache.pem" ] ||
95 openssl req -new -x509 -keyout "$1/etc/ssl/apache/apache.pem" \
96 -out "$1/etc/ssl/apache/apache.pem" -days 3650 -nodes <<EOT
97 ${lang:-US}
98 ${tz:-Somewhere}
102 ${hostname:-slitaz}
104 EOT
105 [ -z "$quiet" ] && echo # Start new line
106 ( cd "$1/$INSTALLED/" ; grep -l /etc/apache/conf.d/ */receipt ) | \
107 while read file; do
108 pkg=$(dirname $file)
109 [ "$pkg" = "$PACKAGE" ] && continue
110 [ -z "$quiet" ] && echo "Reconfiguring $pkg for $PACKAGE..."
111 tazpkg reconfigure $pkg
112 done
113 [ -f "$1/etc/php.ini" ] && tazpkg get-install php-apache --root="$1"
114 [ "$1" ] || netstat -ltn 2> /dev/null | grep -q :80 ||
115 /etc/init.d/$PACKAGE start
116 }
118 # Rules to clean extras dirs or files
119 clean_wok()
120 {
121 rm -rf $WOK/$PACKAGE/${PACKAGE}.${VERSION}
122 }