wok annotate nginx/receipt @ rev 22101

updated viewnior (1.6 -> 1.7)
author Hans-G?nter Theisgen
date Fri Nov 01 15:17:45 2019 +0100 (2019-11-01)
parents d6ca18366f41
children d25a28bf6b6c
rev   line source
pascal@10450 1 # SliTaz package receipt.
pascal@10450 2
pascal@10450 3 PACKAGE="nginx"
nneul@18378 4 VERSION="1.9.4"
pascal@10450 5 CATEGORY="network"
pascal@10450 6 SHORT_DESC="Asynchronous HTTP server designed for heavy loads + mail proxy."
pascal@10450 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15601 8 LICENSE="BSD"
pascal@10450 9 SUGGESTED="php perl python"
pascal@10450 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@10450 11 WEB_SITE="http://nginx.org/"
pascal@10450 12 WGET_URL="${WEB_SITE}download//$TARBALL"
pascal@15182 13 PROVIDE="lighttpd"
pascal@15182 14 CONFIG_FILES="/etc/nginx"
pascal@15182 15
pascal@10450 16 DEPENDS="pcre openssl zlib"
pascal@10450 17 BUILD_DEPENDS="pcre-dev openssl-dev zlib-dev"
pascal@10450 18
pascal@10450 19 # Rules to configure and make the package.
pascal@10450 20 compile_rules()
pascal@10450 21 {
pascal@10450 22 # --with-rtsig_module enable rtsig module
pascal@10450 23 # --with-select_module enable select module
pascal@10450 24 # --with-poll_module enable poll module
pascal@10450 25 # --with-ipv6 enable ipv6 support
pascal@10450 26 # --with-http_realip_module enable ngx_http_realip_module
pascal@10450 27 # --with-http_addition_module enable ngx_http_addition_module
pascal@10450 28 # --with-http_xslt_module enable ngx_http_xslt_module
pascal@10450 29 # --with-http_image_filter_module enable ngx_http_image_filter_module
pascal@10450 30 # --with-http_geoip_module enable ngx_http_geoip_module
pascal@10450 31 # --with-http_sub_module enable ngx_http_sub_module
pascal@10450 32 # --with-http_random_index_module enable ngx_http_random_index_module
pascal@10450 33 # --with-http_secure_link_module enable ngx_http_secure_link_module
pascal@10450 34 # --with-http_perl_module enable ngx_http_perl_module
pascal@10450 35 # --with-google_perftools_module enable ngx_google_perftools_module
pascal@10450 36
pascal@10450 37 ./configure --prefix=/usr \
pascal@10450 38 --conf-path=/etc/nginx/nginx.conf \
pascal@10450 39 --pid-path=/var/run/nginx.pid \
pascal@10450 40 --lock-path=/var/lock/nginx.lock \
pascal@10450 41 --error-log-path=/var/log/nginx/error.log \
pascal@10450 42 --http-log-path=/var/log/nginx/access.log \
pascal@10450 43 --http-client-body-temp-path=/var/spool/nginx/body \
pascal@10450 44 --http-proxy-temp-path=/var/spool/nginx/proxy \
pascal@10450 45 --http-fastcgi-temp-path=/var/spool/nginx/fastcgi \
pascal@10450 46 --with-http_stub_status_module \
pascal@10450 47 --with-http_flv_module \
pascal@10450 48 --with-http_ssl_module \
pascal@10450 49 --with-http_dav_module \
pascal@10450 50 --with-mail --with-mail_ssl_module \
pascal@10450 51 --user=80 --group=80 &&
pascal@10450 52 make &&
pascal@15182 53 make DESTDIR=$DESTDIR install
pascal@10450 54 }
pascal@10450 55
pascal@10450 56 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@10450 57 # On SliTaz Lighttpd runs as user/group : www/www or 80/80.
pascal@10450 58 genpkg_rules()
pascal@10450 59 {
al@18734 60 cp -a $install/* $fs/
al@18734 61 rm -rf $fs/usr/html
al@18734 62 cp -a stuff/* $fs
al@18734 63 sed -i 's/#user nobody;/user www;/' $fs/etc/nginx/nginx.conf
pascal@10450 64 }
pascal@10450 65
pascal@10450 66 # Pre and post install commands for Tazpkg.
pascal@10450 67 # We stop the server by default in case of upgarde.
pascal@10450 68 pre_install()
pascal@10450 69 {
pascal@19147 70 [ -z "$1" ] && for i in httpd lighttpd apache cherokee $PACKAGE ; do
pascal@19147 71 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
pascal@19147 72 done
al@18734 73 # Backup config file.
al@18734 74 if [ -d "$1/$CONFIG_FILES" ]; then
pascal@18730 75 cp -a "$1/$CONFIG_FILES" "$1/$CONFIG_FILES.bak"
al@18734 76 fi
pascal@10450 77 }
al@18734 78
pascal@10450 79 post_install()
pascal@10450 80 {
al@18734 81 mkdir -p /var/spool/nginx
al@18734 82 # Restore original config.
al@18734 83 if [ -d "$1/$CONFIG_FILES.bak" ]; then
pascal@18730 84 rm -rf "$1/$CONFIG_FILES"
pascal@18730 85 mv "$1/$CONFIG_FILES.bak" "$1/$CONFIG_FILES"
al@18734 86 fi
al@18734 87 # Just in case.
al@18734 88 chown www.www "$1/var/log/$PACKAGE"
al@18734 89 if [ -z "$1" ]; then
pascal@10450 90 for i in apache lighttpd ; do
pascal@10450 91 [ -f /etc/init.d/$i ] && /etc/init.d/$i stop
pascal@10450 92 done
pascal@10450 93 /etc/init.d/$PACKAGE start
al@18734 94 fi
al@18734 95 true
pascal@10450 96 }