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