wok annotate eaccelerator/receipt @ rev 17193
nzbget: race condition
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Oct 07 16:16:49 2014 +0000 (2014-10-07) |
parents | fcdd50638150 |
children | 9e01bc6321ea |
rev | line source |
---|---|
pascal@1746 | 1 # SliTaz package receipt. |
pascal@1746 | 2 |
pascal@1746 | 3 PACKAGE="eaccelerator" |
slaxemulator@7948 | 4 VERSION="0.9.6.1" |
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@15588 | 8 LICENSE="GPL2" |
pascal@1746 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@1746 | 10 WEB_SITE="http://eaccelerator.net/" |
pascal@1746 | 11 WGET_URL="http://bart.eaccelerator.net/source/$VERSION/$TARBALL" |
pascal@15588 | 12 TAGS="php" |
pascal@15588 | 13 |
pascal@1746 | 14 DEPENDS="php m4" |
pascal@15657 | 15 BUILD_DEPENDS="php-dev sed coreutils-conditions" # gawk re2c |
pascal@1746 | 16 |
pascal@1746 | 17 # Rules to configure and make the package. |
pascal@1746 | 18 compile_rules() |
pascal@1746 | 19 { |
pascal@1746 | 20 cd $src |
pascal@1746 | 21 export PHP_PREFIX="/usr" |
pascal@1746 | 22 $PHP_PREFIX/bin/phpize |
pascal@1746 | 23 ./configure --enable-eaccelerator=shared \ |
pascal@1746 | 24 --with-php-config=$PHP_PREFIX/bin/php-config \ |
pascal@1746 | 25 --prefix=/usr --infodir=/usr/share/info \ |
pascal@1746 | 26 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1746 | 27 make && |
pascal@15588 | 28 make INSTALL_ROOT=$DESTDIR install |
pascal@1746 | 29 } |
pascal@1746 | 30 |
pascal@1746 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1746 | 32 genpkg_rules() |
pascal@1746 | 33 { |
pascal@1746 | 34 mkdir -p $fs/tmp/eaccelerator $fs/usr/share/php |
pascal@15588 | 35 cp $(find $install | grep eaccelerator.so) $fs/usr/share/php/ |
pascal@1746 | 36 chmod 0777 $fs/tmp/eaccelerator |
pascal@1746 | 37 } |
pascal@1746 | 38 |
pascal@1746 | 39 # Pre and post install commands for Tazpkg. |
pascal@1746 | 40 post_install() |
pascal@1746 | 41 { |
pascal@1746 | 42 grep -q ^extension=msql.so $1/etc/php.ini || \ |
pascal@1749 | 43 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 | 44 |
pascal@1749 | 45 # Start Web server. |
pascal@1749 | 46 while read daemon file; do |
pascal@1749 | 47 if [ -f /etc/init.d/$daemon -a ! -f "/var/run/$file" ]; then |
pascal@1749 | 48 /etc/init.d/$daemon start |
pascal@1749 | 49 fi |
pascal@1749 | 50 done <<EOT |
pascal@1749 | 51 apache apache/httpd.pid |
pascal@1749 | 52 lighttpd lighttpd.pid |
pascal@1749 | 53 EOT |
pascal@1749 | 54 } |
pascal@1749 | 55 |
pascal@1749 | 56 # Pre and post remove commands for Tazpkg. |
pascal@1749 | 57 pre_remove() |
pascal@1749 | 58 { |
pascal@1749 | 59 sed -i '/.*eaccelerator.*/d' /etc/php.ini |
pascal@1746 | 60 |
pascal@1746 | 61 # Start Web server. |
pascal@1746 | 62 while read daemon file; do |
pascal@1746 | 63 if [ -z "$1" -a -f /etc/init.d/$daemon \ |
pascal@1746 | 64 -a ! -f "/var/run/$file" ]; then |
pascal@1746 | 65 /etc/init.d/$daemon start |
pascal@1746 | 66 fi |
pascal@1746 | 67 done <<EOT |
pascal@1746 | 68 apache apache/httpd.pid |
pascal@1746 | 69 lighttpd lighttpd.pid |
pascal@1746 | 70 EOT |
pascal@1746 | 71 } |