wok annotate php-mhash/receipt @ rev 1335

Add krb5
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 31 11:58:29 2008 +0000 (2008-08-31)
parents
children 8294794b7a81
rev   line source
pascal@1324 1 # SliTaz package receipt.
pascal@1324 2
pascal@1324 3 PACKAGE="php-mhash"
pascal@1324 4 VERSION="5.2.5"
pascal@1324 5 CATEGORY="development"
pascal@1324 6 SHORT_DESC="mhash module for PHP web programming language."
pascal@1324 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1324 8 DEPENDS="php mhash"
pascal@1324 9 WEB_SITE="http://www.php.net/"
pascal@1324 10 WANTED="php"
pascal@1324 11
pascal@1324 12 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1324 13 genpkg_rules()
pascal@1324 14 {
pascal@1324 15 mkdir -p $fs/usr/share/php
pascal@1324 16 cp $(find $_pkg | grep mhash.so) $fs/usr/share/php/
pascal@1324 17 }
pascal@1324 18
pascal@1324 19 # Post and pre install commans to stop
pascal@1324 20 # and restart Web server if needed.
pascal@1324 21 pre_install()
pascal@1324 22 {
pascal@1324 23 while read daemon file; do
pascal@1324 24 if [ -z "$1" -a -f "/var/run/$file" ]; then
pascal@1324 25 /etc/init.d/$daemon stop
pascal@1324 26 fi
pascal@1324 27 done <<EOT
pascal@1324 28 apache apache/httpd.pid
pascal@1324 29 lighttpd lighttpd.pid
pascal@1324 30 EOT
pascal@1324 31 }
pascal@1324 32
pascal@1324 33 post_install()
pascal@1324 34 {
pascal@1324 35 grep -q ^extension=msql.so $1/etc/php.ini || \
pascal@1324 36 sed -e 's|;.*extension=msql.so|; extension=msql.so\nextension=mhash.so|' -i $1/etc/php.ini
pascal@1324 37 # Start Web server.
pascal@1324 38 while read daemon file; do
pascal@1324 39 if [ -z "$1" -a -f /etc/init.d/$daemon \
pascal@1324 40 -a ! -f "/var/run/$file" ]; then
pascal@1324 41 /etc/init.d/$daemon start
pascal@1324 42 fi
pascal@1324 43 done <<EOT
pascal@1324 44 apache apache/httpd.pid
pascal@1324 45 lighttpd lighttpd.pid
pascal@1324 46 EOT
pascal@1324 47 }
pascal@1324 48