wok view nginx/receipt @ rev 20615

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