wok annotate apache/receipt @ rev 15361

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