From owner-svn-ports-all@freebsd.org Sun May 1 20:54:59 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63204B29FC4; Sun, 1 May 2016 20:54:59 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E0C71AAC; Sun, 1 May 2016 20:54:59 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u41KswIN000573; Sun, 1 May 2016 20:54:58 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u41Ksw8w000569; Sun, 1 May 2016 20:54:58 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201605012054.u41Ksw8w000569@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Sun, 1 May 2016 20:54:58 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2016 20:54:59 -0000 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. +=================================================================== +