mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
Install three plain configuration files with -dist prefix.
Do not remove *cgi_params configuration files, which may carefully edited by the user. Bump PORTREVISION.
This commit is contained in:
parent
6ff38a9949
commit
bc01fa5e0d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=260485
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= nginx
|
||||
PORTVERSION= 0.8.50
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://sysoev.ru/nginx/
|
||||
MASTER_SITES+= ${MASTER_SITE_LOCAL}
|
||||
@ -498,10 +499,10 @@ do-install:
|
||||
${MKDIR} ${ETCDIR} ${NGINX_TMPDIR}
|
||||
${CHOWN} ${WWWOWN}:${WWWGRP} ${NGINX_TMPDIR}
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/objs/nginx ${PREFIX}/sbin
|
||||
.for i in fastcgi_params koi-utf koi-win scgi_params uwsgi_params win-utf
|
||||
.for i in koi-utf koi-win win-utf
|
||||
${INSTALL_DATA} ${WRKSRC}/conf/${i} ${ETCDIR}
|
||||
.endfor
|
||||
.for i in mime.types nginx.conf
|
||||
.for i in fastcgi_params mime.types nginx.conf scgi_params uwsgi_params
|
||||
[ -f ${ETCDIR}/${i} ] || \
|
||||
${INSTALL_DATA} ${WRKSRC}/conf/${i} ${ETCDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/conf/${i} ${ETCDIR}/${i}-dist
|
||||
|
@ -1,9 +1,15 @@
|
||||
@comment $FreeBSD$
|
||||
%%ETCDIR%%/fastcgi_params
|
||||
@unexec if cmp -s %D/%%ETCDIR%%/fastcgi_params-dist %D/%%ETCDIR%%/fastcgi_params; then rm -f %D/%%ETCDIR%%/fastcgi_params; fi
|
||||
%%ETCDIR%%/fastcgi_params-dist
|
||||
@exec if [ ! -f %D/%%ETCDIR%%/fastcgi_params ] ; then cp -p %D/%F %B/fastcgi_params; fi
|
||||
%%ETCDIR%%/koi-utf
|
||||
%%ETCDIR%%/koi-win
|
||||
%%ETCDIR%%/scgi_params
|
||||
%%ETCDIR%%/uwsgi_params
|
||||
@unexec if cmp -s %D/%%ETCDIR%%/scgi_params-dist %D/%%ETCDIR%%/scgi_params; then rm -f %D/%%ETCDIR%%/scgi_params; fi
|
||||
%%ETCDIR%%/scgi_params-dist
|
||||
@exec if [ ! -f %D/%%ETCDIR%%/scgi_params ] ; then cp -p %D/%F %B/scgi_params; fi
|
||||
@unexec if cmp -s %D/%%ETCDIR%%/uwsgi_params-dist %D/%%ETCDIR%%/uwsgi_params; then rm -f %D/%%ETCDIR%%/uwsgi_params; fi
|
||||
%%ETCDIR%%/uwsgi_params-dist
|
||||
@exec if [ ! -f %D/%%ETCDIR%%/uwsgi_params ] ; then cp -p %D/%F %B/uwsgi_params; fi
|
||||
%%ETCDIR%%/win-utf
|
||||
@unexec if cmp -s %D/%%ETCDIR%%/mime.types-dist %D/%%ETCDIR%%/mime.types; then rm -f %D/%%ETCDIR%%/mime.types; fi
|
||||
%%ETCDIR%%/mime.types-dist
|
||||
|
Loading…
Reference in New Issue
Block a user