wok annotate php/receipt @ rev 10694

Add qemu-light (stripped down, but works) - qemu* may move to undigest since I can't make it work properly
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 27 22:52:39 2011 +0200 (2011-05-27)
parents 95a06d7c9189
children 62786d242bc4
rev   line source
pankso@18 1 # SliTaz package receipt.
pankso@18 2
pankso@18 3 PACKAGE="php"
slaxemulator@7925 4 VERSION="5.2.17"
pankso@204 5 CATEGORY="development"
pankso@18 6 SHORT_DESC="PHP web programming language."
pankso@18 7 MAINTAINER="pankso@slitaz.org"
pankso@18 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@18 9 WEB_SITE="http://www.php.net/"
pankso@18 10 WGET_URL="http://us2.php.net/distributions/$TARBALL"
pascal@1315 11 PROVIDE="php:lighttpd"
pankso@18 12
pankso@9864 13 DEPENDS="php-common lighttpd zlib libxml2 sqlite libssl"
pankso@9859 14 BUILD_DEPENDS="sqlite-dev libxml2-dev zlib-dev libmysqlclient mysql-dev \
pankso@9859 15 net-snmp-dev postgresql-dev gettext openssl-dev apache-dev apr-util-dev \
pankso@9859 16 c-client mhash-dev libpng-dev libunixODBC unixODBC-dev openldap-dev \
pankso@9859 17 libldap apr-dev libmcrypt-dev curl-dev cyrus-sasl-dev perl pkg-config \
pankso@9863 18 jpeg-dev net-snmp-dev"
pankso@9859 19
pankso@18 20 # Rules to configure and make the package.
pankso@18 21 compile_rules()
pankso@18 22 {
pankso@18 23 cd $src
pascal@1315 24 COMMON_ARGS="\
pascal@1315 25 --prefix=/usr \
pascal@1315 26 --sysconfdir=/etc \
pascal@1315 27 --infodir=/usr/share/info \
pascal@1315 28 --mandir=/usr/share/man \
pascal@1315 29 --enable-fastcgi \
pascal@1315 30 --enable-discard-path \
pascal@1315 31 --enable-force-cgi-redirect \
pascal@1315 32 --enable-mbstring \
pascal@3239 33 --enable-sockets \
pascal@3767 34 --enable-ftp \
pascal@3767 35 --enable-zip \
pascal@3767 36 --enable-calendar \
pascal@3767 37 --enable-exif \
pascal@3768 38 --enable-dba=shared \
pascal@7544 39 --enable-dbase=shared \
pascal@1315 40 --with-config-file-path=/etc \
pascal@1315 41 --with-zlib \
pascal@1315 42 --with-gettext \
erjo@4407 43 --with-mcrypt=shared,/usr \
pascal@1324 44 --with-mysql=shared,/usr \
pascal@1324 45 --with-pgsql=shared,/usr \
pascal@3230 46 --with-snmp=shared,/usr \
pascal@7740 47 --enable-soap=shared,/usr \
pascal@1315 48 --with-ldap=shared \
pascal@1324 49 --with-imap=shared --with-imap-ssl \
pascal@1324 50 --with-mhash=shared \
pascal@1326 51 --with-gd=shared \
pascal@3729 52 --with-jpeg-dir=/usr \
pascal@3729 53 --with-png-dir=/usr \
erjo@2671 54 --with-openssl=shared \
pascal@1832 55 --with-unixODBC=shared,/usr \
pascal@1779 56 --with-pear=/usr/share/php \
pankso@4427 57 --with-pdo-mysql=shared \
pankso@4427 58 --with-pdo-pgsql=shared \
jozee@5520 59 --with-curl=shared \
pascal@1779 60 "
pascal@2605 61 sed -i 's/pam_start/pam_nostart/' configure
pankso@9861 62 ./configure $COMMON_ARGS && \
pankso@9861 63 make -j 4 && make INSTALL_ROOT=$DESTDIR install
pankso@9861 64 ./configure $COMMON_ARGS --with-apxs2=/usr/bin/apxs && \
pascal@5781 65 make -j 4 && {
pankso@9862 66 mkdir -p $DESTDIR/etc/apache
pankso@9862 67 cp /etc/apache/httpd.conf $DESTDIR/etc/apache/httpd.conf
pankso@9861 68 make INSTALL_ROOT=$DESTDIR install
pascal@1315 69 }
slaxemulator@10549 70 # Recommended config file and phpinfo.
slaxemulator@10549 71 cp $src/php.ini-recommended $DESTDIR/etc/php.ini
slaxemulator@10549 72 sed -e 's|extension_dir = "./"|extension_dir = "/usr/share/php/"|' \
slaxemulator@10549 73 -i $DESTDIR/etc/php.ini
slaxemulator@10549 74 mkdir -p $DESTDIR/usr/share/applicattions $DESTDIR/usr/share/pixmaps
slaxemulator@10549 75 cp $stuff/php.desktop $DESTDIR/usr/share/applications
slaxemulator@10549 76 cp $stuff/php.png $DESTDIR/usr/share/pixmaps
pankso@18 77 }
pankso@18 78
pankso@18 79 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@18 80 genpkg_rules()
pankso@18 81 {
pankso@9861 82 mkdir -p $fs/usr/bin $fs/etc $fs/usr/share/php
pankso@18 83 cp -a $src/sapi/cgi/php-cgi $fs/usr/bin
slaxemulator@10549 84
pankso@9860 85 cp -a $stuff/phpinfo $install/usr/share
pankso@18 86 }
pankso@18 87
pankso@9861 88 # Post and pre install commands to stop and restart Web server if needed.
pankso@18 89 pre_install()
pankso@18 90 {
pankso@18 91 if [ -f "$1/var/run/lighttpd.pid" ]; then
pankso@18 92 /etc/init.d/lighttpd stop
pankso@18 93 fi
pankso@18 94 }
pankso@9861 95
pankso@18 96 post_install()
pankso@18 97 {
pascal@1143 98 # Enable php
pascal@1143 99 if [ -f $1/etc/lighttpd/lighttpd.conf ]; then
pascal@1143 100 [ -f $1/usr/lib/lighttpd/mod_fastcgi.so ] || \
pascal@1143 101 tazpkg get-install lighttpd-modules --root=$1/
pascal@1143 102 sed -e 's|#fastcgi.server = ( ".php"|fastcgi.server = ( ".php"|' \
pascal@1143 103 -e 's|#"bin-path" => "/usr/bin/php-cgi"|"bin-path" => "/usr/bin/php-cgi"|' \
pascal@1143 104 -e 's|#"socket" => "/tmp/php.socket"|"socket" => "/tmp/php.socket"\n )))|' \
pascal@1143 105 -i $1/etc/lighttpd/lighttpd.conf
pascal@1143 106 grep -q mod_fastcgi $1/etc/lighttpd/lighttpd.conf || \
pascal@1143 107 sed -e 's|server.modules = (|server.modules = (\n "mod_fastcgi",|' \
pascal@1143 108 -i $1/etc/lighttpd/lighttpd.conf
pascal@1349 109 grep -q php3 $1/etc/lighttpd/lighttpd.conf || \
pascal@1635 110 sed -e 's|for PHP.*|for PHP.\nfastcgi.map-extensions = ( ".php3" => ".php", ".php4" => ".php", ".php5" => ".php" )|' \
pascal@1583 111 -i $1/etc/lighttpd/lighttpd.conf
pascal@1143 112 fi
pankso@18 113 # Start Web server.
pascal@1137 114 if [ -z "$1" -a ! -f "/var/run/lighttpd.pid" ]; then
pankso@18 115 /etc/init.d/lighttpd start
pankso@18 116 fi
pankso@18 117 }