wok rev 1832

Add php-odbc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Dec 10 17:18:05 2008 +0000 (2008-12-10)
parents 48f3aae65769
children fac71ab90788
files php-odbc/receipt php/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/php-odbc/receipt	Wed Dec 10 17:18:05 2008 +0000
     1.3 @@ -0,0 +1,69 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="php-odbc"
     1.7 +VERSION="5.2.5"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="ODBC module for PHP web programming language."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +DEPENDS="unixODBC 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 $_pkg | grep odbc.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=odbc.so $1/etc/php.ini || \
    1.39 +	    sed -e 's|;.*extension=msql.so|;   extension=msql.so\nextension=odbc.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 '/.*=odbc.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	Tue Dec 09 20:39:44 2008 +0000
     2.2 +++ b/php/receipt	Wed Dec 10 17:18:05 2008 +0000
     2.3 @@ -8,7 +8,7 @@
     2.4  DEPENDS="php-common lighttpd zlib libxml2 sqlite"
     2.5  BUILD_DEPENDS="sqlite-dev libxml2-dev zlib-dev mysql-dev \
     2.6  postgresql postgresql-dev gettext openssl-dev apache-dev apache \
     2.7 -c-client mhash mhash-dev libpng libpng-dev"
     2.8 +c-client mhash mhash-dev libpng libpng-dev unixODBC-dev"
     2.9  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.10  WEB_SITE="http://www.php.net/"
    2.11  WGET_URL="http://us2.php.net/distributions/$TARBALL"
    2.12 @@ -36,6 +36,7 @@
    2.13  --with-imap=shared --with-imap-ssl \
    2.14  --with-mhash=shared \
    2.15  --with-gd=shared \
    2.16 +--with-unixODBC=shared,/usr \
    2.17  --with-pear=/usr/share/php \
    2.18  "
    2.19  	./configure $COMMON_ARGS $CONFIGURE_ARGS && \