Date: Sun, 1 May 2016 20:54:58 +0000 (UTC) From: "Sergey A. Osokin" <osa@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414425 - in head/www: nginx nginx-devel nginx-devel/files nginx/files Message-ID: <201605012054.u41Ksw8w000569@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: osa Date: Sun May 1 20:54:57 2016 New Revision: 414425 URL: https://svnweb.freebsd.org/changeset/ports/414425 Log: Add the pkg-message with the message about recent changes. Bump PORTREVISION. Added: head/www/nginx-devel/files/pkg-message.in (contents, props changed) head/www/nginx/files/pkg-message.in (contents, props changed) Modified: head/www/nginx-devel/Makefile head/www/nginx/Makefile Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Sun May 1 20:39:25 2016 (r414424) +++ head/www/nginx-devel/Makefile Sun May 1 20:54:57 2016 (r414425) @@ -3,7 +3,7 @@ PORTNAME= nginx PORTVERSION= 1.10.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://nginx.org/download/ MASTER_SITES+= LOCAL/osa @@ -255,10 +255,12 @@ NGINX_ERRORLOG?= ${NGINX_LOGDIR}/nginx-e CONFLICTS?= nginx-1.* USE_RC_SUBR= nginx +SUB_FILES= pkg-message SUB_LIST+= WWWOWN=${WWWOWN} \ WWWGRP=${WWWGRP} \ NGINX_RUNDIR=${NGINX_RUNDIR} \ - NGINX_TMPDIR=${NGINX_TMPDIR} + NGINX_TMPDIR=${NGINX_TMPDIR} \ + PREFIX=${PREFIX} HAS_CONFIGURE= yes CONFIGURE_ARGS+=--prefix=${ETCDIR} \ Added: head/www/nginx-devel/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/nginx-devel/files/pkg-message.in Sun May 1 20:54:57 2016 (r414425) @@ -0,0 +1,23 @@ + +=================================================================== +Recent version of the NGINX introduces dynamic modules support. In +FreeBSD ports tree this feature was enabled by default with the DSO +knob. Several vendor's and third-party modules have been converted +to dynamic modules. Unset the DSO knob builds an NGINX without +dynamic modules support. + +To load a module at runtime, include the new `load_module' +directive in the main context, specifying the path to the shared +object file for the module, enclosed in quotation marks. When you +reload the configuration or restart NGINX, the module is loaded in. +It is possible to specify a path relative to the source directory, +or a full path, please see +https://www.nginx.com/blog/dynamic-modules-nginx-1-9-11/ and +http://nginx.org/en/docs/ngx_core_module.html#load_module for +details. + +Default path for the NGINX dynamic modules is + +%%PREFIX%%/libexec/nginx. +=================================================================== + Modified: head/www/nginx/Makefile ============================================================================== --- head/www/nginx/Makefile Sun May 1 20:39:25 2016 (r414424) +++ head/www/nginx/Makefile Sun May 1 20:54:57 2016 (r414425) @@ -3,7 +3,7 @@ PORTNAME= nginx PORTVERSION= 1.10.0 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 2 CATEGORIES= www MASTER_SITES= http://nginx.org/download/ @@ -255,10 +255,12 @@ NGINX_ERRORLOG?= ${NGINX_LOGDIR}/nginx-e CONFLICTS?= nginx-devel-1.* USE_RC_SUBR= nginx +SUB_FILES= pkg-message SUB_LIST+= WWWOWN=${WWWOWN} \ WWWGRP=${WWWGRP} \ NGINX_RUNDIR=${NGINX_RUNDIR} \ - NGINX_TMPDIR=${NGINX_TMPDIR} + NGINX_TMPDIR=${NGINX_TMPDIR} \ + PREFIX=${PREFIX} HAS_CONFIGURE= yes CONFIGURE_ARGS+=--prefix=${ETCDIR} \ Added: head/www/nginx/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/nginx/files/pkg-message.in Sun May 1 20:54:57 2016 (r414425) @@ -0,0 +1,23 @@ + +=================================================================== +Recent version of the NGINX introduces dynamic modules support. In +FreeBSD ports tree this feature was enabled by default with the DSO +knob. Several vendor's and third-party modules have been converted +to dynamic modules. Unset the DSO knob builds an NGINX without +dynamic modules support. + +To load a module at runtime, include the new `load_module' +directive in the main context, specifying the path to the shared +object file for the module, enclosed in quotation marks. When you +reload the configuration or restart NGINX, the module is loaded in. +It is possible to specify a path relative to the source directory, +or a full path, please see +https://www.nginx.com/blog/dynamic-modules-nginx-1-9-11/ and +http://nginx.org/en/docs/ngx_core_module.html#load_module for +details. + +Default path for the NGINX dynamic modules is + +%%PREFIX%%/libexec/nginx. +=================================================================== +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605012054.u41Ksw8w000569>