wok annotate eaccelerator/receipt @ rev 24083

Add some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jul 10 11:40:16 2021 +0000 (2021-07-10)
parents 9e01bc6321ea
children 9bbac86a37f7
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@24083 17 current_version()
pascal@24083 18 {
pascal@24083 19 wget -O - https://github.com/eaccelerator/eaccelerator/releases 2>/dev/null | \
pascal@24083 20 sed '/refs.tags/!d;/-rc/d;/tar.gz/!d;s|.*refs.tags.v*\(.*\).tar.*|\1|;q'
pascal@24083 21 }
pascal@24083 22
pascal@1746 23 # Rules to configure and make the package.
pascal@1746 24 compile_rules()
pascal@1746 25 {
pascal@1746 26 cd $src
pascal@1746 27 export PHP_PREFIX="/usr"
pascal@1746 28 $PHP_PREFIX/bin/phpize
pascal@1746 29 ./configure --enable-eaccelerator=shared \
pascal@1746 30 --with-php-config=$PHP_PREFIX/bin/php-config \
pascal@1746 31 --prefix=/usr --infodir=/usr/share/info \
pascal@1746 32 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1746 33 make &&
pascal@15588 34 make INSTALL_ROOT=$DESTDIR install
pascal@1746 35 }
pascal@1746 36
pascal@1746 37 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1746 38 genpkg_rules()
pascal@1746 39 {
pascal@1746 40 mkdir -p $fs/tmp/eaccelerator $fs/usr/share/php
pascal@15588 41 cp $(find $install | grep eaccelerator.so) $fs/usr/share/php/
pascal@1746 42 chmod 0777 $fs/tmp/eaccelerator
pascal@1746 43 }
pascal@1746 44
pascal@1746 45 # Pre and post install commands for Tazpkg.
pascal@1746 46 post_install()
pascal@1746 47 {
pascal@18730 48 grep -q ^extension=msql.so "$1/etc/php.ini" || \
pascal@18730 49 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 50
pascal@1749 51 # Start Web server.
pascal@1749 52 while read daemon file; do
pascal@1749 53 if [ -f /etc/init.d/$daemon -a ! -f "/var/run/$file" ]; then
pascal@1749 54 /etc/init.d/$daemon start
pascal@1749 55 fi
pascal@1749 56 done <<EOT
pascal@1749 57 apache apache/httpd.pid
pascal@1749 58 lighttpd lighttpd.pid
pascal@1749 59 EOT
pascal@1749 60 }
pascal@1749 61
pascal@1749 62 # Pre and post remove commands for Tazpkg.
pascal@1749 63 pre_remove()
pascal@1749 64 {
pascal@1749 65 sed -i '/.*eaccelerator.*/d' /etc/php.ini
pascal@1746 66
pascal@1746 67 # Start Web server.
pascal@1746 68 while read daemon file; do
pascal@1746 69 if [ -z "$1" -a -f /etc/init.d/$daemon \
pascal@1746 70 -a ! -f "/var/run/$file" ]; then
pascal@1746 71 /etc/init.d/$daemon start
pascal@1746 72 fi
pascal@1746 73 done <<EOT
pascal@1746 74 apache apache/httpd.pid
pascal@1746 75 lighttpd lighttpd.pid
pascal@1746 76 EOT
pascal@1746 77 }