wok annotate php-imap/receipt @ rev 23933

dar: inserted libdir=/lib
author Hans-G?nter Theisgen
date Mon Sep 07 13:19:26 2020 +0100 (2020-09-07)
parents b10d41313e54
children
rev   line source
pascal@1324 1 # SliTaz package receipt.
pascal@1324 2
pascal@1324 3 PACKAGE="php-imap"
Hans-G?nter@23426 4 VERSION="7.4.4"
pascal@1324 5 CATEGORY="development"
pascal@1324 6 SHORT_DESC="imap module for PHP web programming language."
pascal@1324 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15198 8 LICENSE="BSD"
pascal@21278 9 WEB_SITE="https://www.php.net/"
Hans-G?nter@23426 10
Hans-G?nter@23426 11 DEPENDS="openssl php"
pascal@1324 12 WANTED="php"
pascal@1324 13
pascal@1324 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1324 15 genpkg_rules()
pascal@1324 16 {
pascal@1324 17 mkdir -p $fs/usr/share/php
Hans-G?nter@23426 18 cp $(find $install | grep imap.so) $fs/usr/share/php/
pascal@1324 19 }
pascal@1324 20
pascal@1324 21 # Post and pre install commans to stop
pascal@1324 22 # and restart Web server if needed.
pascal@1324 23 pre_install()
pascal@1324 24 {
Hans-G?nter@23426 25 while read daemon file
Hans-G?nter@23426 26 do
Hans-G?nter@23426 27 if [ -z "$1" -a -f "/var/run/$file" ]
Hans-G?nter@23426 28 then
pascal@1324 29 /etc/init.d/$daemon stop
pascal@1324 30 fi
Hans-G?nter@23426 31 done <<EOT
pascal@1324 32 apache apache/httpd.pid
pascal@1324 33 lighttpd lighttpd.pid
pascal@1324 34 EOT
pascal@1324 35 }
pascal@1324 36
pascal@1324 37 post_install()
pascal@1324 38 {
Hans-G?nter@23426 39 grep -q ^extension=imap.so "$1/etc/php.ini" ||
Hans-G?nter@23426 40 sed -e 's|extension=bz2.so|extension=bz2.so\nextension=imap.so|' \
Hans-G?nter@23426 41 -i "$1/etc/php.ini"
Hans-G?nter@23426 42
pascal@1324 43 # Start Web server.
Hans-G?nter@23426 44 while read daemon file
Hans-G?nter@23426 45 do
pascal@1805 46 [ -z "$1" ] || continue
Hans-G?nter@23426 47 if [ -f "/var/run/$file" ]
Hans-G?nter@23426 48 then
pascal@1805 49 /etc/init.d/$daemon stop
pascal@1805 50 sleep 2
pascal@1805 51 fi
Hans-G?nter@23426 52 if [ -f /etc/init.d/$daemon ]
Hans-G?nter@23426 53 then
pascal@1324 54 /etc/init.d/$daemon start
pascal@1324 55 fi
Hans-G?nter@23426 56 done <<EOT
pascal@1324 57 apache apache/httpd.pid
pascal@1324 58 lighttpd lighttpd.pid
pascal@1324 59 EOT
pascal@1324 60 }
pascal@1324 61
pascal@1749 62 # Pre and post remove commands for Tazpkg.
pascal@1749 63 pre_remove()
pascal@1749 64 {
pascal@1749 65 sed -i '/.*=imap.so.*/d' /etc/php.ini
pascal@1749 66
pascal@1749 67 # Start Web server.
Hans-G?nter@23426 68 while read daemon file
Hans-G?nter@23426 69 do
slaxemulator@14614 70 [ -z "$1" ] || continue
Hans-G?nter@23426 71 if [ -f "/var/run/$file" ]
Hans-G?nter@23426 72 then
pascal@1805 73 /etc/init.d/$daemon stop
pascal@1805 74 sleep 2
slaxemulator@14614 75 fi
Hans-G?nter@23426 76 if [ -f /etc/init.d/$daemon ]
Hans-G?nter@23426 77 then
pascal@1749 78 /etc/init.d/$daemon start
pascal@1749 79 fi
Hans-G?nter@23426 80 done <<EOT
pascal@1749 81 apache apache/httpd.pid
pascal@1749 82 lighttpd lighttpd.pid
pascal@1749 83 EOT
pascal@1749 84 }