wok view nginx/receipt @ rev 11161

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