wok-current rev 11658
Add php-mysqli (MySQL Improved Extension)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Feb 12 21:20:34 2012 +0100 (2012-02-12) |
parents | 204840df8a13 |
children | 9b07ff23fcc3 |
files | php-mysqli/receipt php/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/php-mysqli/receipt Sun Feb 12 21:20:34 2012 +0100 1.3 @@ -0,0 +1,69 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="php-mysqli" 1.7 +VERSION="5.2.17" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="mysqli module for PHP web programming language." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +DEPENDS="libmysqlclient php" 1.12 +WEB_SITE="http://www.php.net/" 1.13 +WANTED="php" 1.14 + 1.15 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.16 +genpkg_rules() 1.17 +{ 1.18 + mkdir -p $fs/usr/share/php 1.19 + cp $(find $install | grep mysqli.so) $fs/usr/share/php/ 1.20 +} 1.21 + 1.22 +# Post and pre install commans to stop 1.23 +# and restart Web server if needed. 1.24 +pre_install() 1.25 +{ 1.26 + while read daemon file; do 1.27 + if [ -z "$1" -a -f "/var/run/$file" ]; then 1.28 + /etc/init.d/$daemon stop 1.29 + fi 1.30 + done <<EOT 1.31 +apache apache/httpd.pid 1.32 +lighttpd lighttpd.pid 1.33 +EOT 1.34 +} 1.35 + 1.36 +post_install() 1.37 +{ 1.38 + grep -q ^extension=mysqli.so $1/etc/php.ini || \ 1.39 + sed -e 's|extension=msql.so|extension=msql.so\nextension=mysqli.so|' -i $1/etc/php.ini 1.40 + # Start Web server. 1.41 + while read daemon file; do 1.42 + [ -z "$1" ] || continue 1.43 + if [ -f "/var/run/$file" ]; then 1.44 + /etc/init.d/$daemon stop 1.45 + sleep 2 1.46 + fi 1.47 + if [ -f /etc/init.d/$daemon ]; then 1.48 + /etc/init.d/$daemon start 1.49 + fi 1.50 + done <<EOT 1.51 +apache apache/httpd.pid 1.52 +lighttpd lighttpd.pid 1.53 +EOT 1.54 +} 1.55 + 1.56 +# Pre and post remove commands for Tazpkg. 1.57 +pre_remove() 1.58 +{ 1.59 + sed -i '/.*=mysqli.so.*/d' /etc/php.ini 1.60 + 1.61 + # Start Web server. 1.62 + while read daemon file; do 1.63 + if [ -f /etc/init.d/$daemon -a -f "/var/run/$file" ]; then 1.64 + /etc/init.d/$daemon stop 1.65 + sleep 2 1.66 + /etc/init.d/$daemon start 1.67 + fi 1.68 + done <<EOT 1.69 +apache apache/httpd.pid 1.70 +lighttpd lighttpd.pid 1.71 +EOT 1.72 +}
2.1 --- a/php/receipt Sun Feb 12 14:26:16 2012 +0100 2.2 +++ b/php/receipt Sun Feb 12 21:20:34 2012 +0100 2.3 @@ -42,6 +42,7 @@ 2.4 --with-gettext \ 2.5 --with-mcrypt=shared,/usr \ 2.6 --with-mysql=shared,/usr \ 2.7 +--with-mysqli=shared \ 2.8 --with-pgsql=shared,/usr \ 2.9 --with-snmp=shared,/usr \ 2.10 --enable-soap=shared,/usr \