wok-next annotate eaccelerator/receipt @ rev 3278
Up: osmo (0.2.6) with patch sent to upstream
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Jun 02 13:35:30 2009 +0200 (2009-06-02) |
parents | cc721aa29750 |
children | 31c985a0bd3d |
rev | line source |
---|---|
pascal@1746 | 1 # SliTaz package receipt. |
pascal@1746 | 2 |
pascal@1746 | 3 PACKAGE="eaccelerator" |
pascal@1746 | 4 VERSION="0.9.5.3" |
pascal@1746 | 5 CATEGORY="system-tools" |
pascal@1746 | 6 SHORT_DESC="PHP accelerator, optimizer, and dynamic content cache." |
pascal@1746 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1746 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@1746 | 9 WEB_SITE="http://eaccelerator.net/" |
pascal@1746 | 10 WGET_URL="http://bart.eaccelerator.net/source/$VERSION/$TARBALL" |
pascal@1746 | 11 DEPENDS="php m4" |
pascal@1746 | 12 BUILD_DEPENDS="php-dev" |
pascal@1746 | 13 |
pascal@1746 | 14 # Rules to configure and make the package. |
pascal@1746 | 15 compile_rules() |
pascal@1746 | 16 { |
pascal@1746 | 17 cd $src |
pascal@1746 | 18 export PHP_PREFIX="/usr" |
pascal@1746 | 19 $PHP_PREFIX/bin/phpize |
pascal@1746 | 20 ./configure --enable-eaccelerator=shared \ |
pascal@1746 | 21 --with-php-config=$PHP_PREFIX/bin/php-config \ |
pascal@1746 | 22 --prefix=/usr --infodir=/usr/share/info \ |
pascal@1746 | 23 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1746 | 24 make && |
pascal@1746 | 25 make INSTALL_ROOT=$PWD/_pkg install |
pascal@1746 | 26 } |
pascal@1746 | 27 |
pascal@1746 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1746 | 29 genpkg_rules() |
pascal@1746 | 30 { |
pascal@1746 | 31 mkdir -p $fs/tmp/eaccelerator $fs/usr/share/php |
pascal@1746 | 32 cp $(find $_pkg | grep eaccelerator.so) $fs/usr/share/php/ |
pascal@1746 | 33 chmod 0777 $fs/tmp/eaccelerator |
pascal@1746 | 34 } |
pascal@1746 | 35 |
pascal@1746 | 36 # Pre and post install commands for Tazpkg. |
pascal@1746 | 37 post_install() |
pascal@1746 | 38 { |
pascal@1746 | 39 grep -q ^extension=msql.so $1/etc/php.ini || \ |
pascal@1749 | 40 sed -e 's|;.*extension=msql.so|; extension=msql.so\nextension=eaccelerator.so\neaccelerator.shm_size="48"\neaccelerator.cache_dir="/tmp/eaccelerator"\neaccelerator.enable="1"\neaccelerator.optimizer="1"\neaccelerator.check_mtime="1"\neaccelerator.debug="0"\neaccelerator.filter=""\neaccelerator.shm_max="0"\neaccelerator.shm_ttl="0"\neaccelerator.shm_prune_period="0"\neaccelerator.shm_only="0"\neaccelerator.compress="1"\neaccelerator.compress_level="9"|' -i $1/etc/php.ini |
pascal@1749 | 41 |
pascal@1749 | 42 # Start Web server. |
pascal@1749 | 43 while read daemon file; do |
pascal@1749 | 44 if [ -f /etc/init.d/$daemon -a ! -f "/var/run/$file" ]; then |
pascal@1749 | 45 /etc/init.d/$daemon start |
pascal@1749 | 46 fi |
pascal@1749 | 47 done <<EOT |
pascal@1749 | 48 apache apache/httpd.pid |
pascal@1749 | 49 lighttpd lighttpd.pid |
pascal@1749 | 50 EOT |
pascal@1749 | 51 } |
pascal@1749 | 52 |
pascal@1749 | 53 # Pre and post remove commands for Tazpkg. |
pascal@1749 | 54 pre_remove() |
pascal@1749 | 55 { |
pascal@1749 | 56 sed -i '/.*eaccelerator.*/d' /etc/php.ini |
pascal@1746 | 57 |
pascal@1746 | 58 # Start Web server. |
pascal@1746 | 59 while read daemon file; do |
pascal@1746 | 60 if [ -z "$1" -a -f /etc/init.d/$daemon \ |
pascal@1746 | 61 -a ! -f "/var/run/$file" ]; then |
pascal@1746 | 62 /etc/init.d/$daemon start |
pascal@1746 | 63 fi |
pascal@1746 | 64 done <<EOT |
pascal@1746 | 65 apache apache/httpd.pid |
pascal@1746 | 66 lighttpd lighttpd.pid |
pascal@1746 | 67 EOT |
pascal@1746 | 68 } |