From owner-svn-ports-head@FreeBSD.ORG Thu Sep 20 03:56:12 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B05B6106566B; Thu, 20 Sep 2012 03:56:12 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 91B3B8FC14; Thu, 20 Sep 2012 03:56:12 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8K3uC2H035327; Thu, 20 Sep 2012 03:56:12 GMT (envelope-from osa@svn.freebsd.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8K3uCii035322; Thu, 20 Sep 2012 03:56:12 GMT (envelope-from osa@svn.freebsd.org) Message-Id: <201209200356.q8K3uCii035322@svn.freebsd.org> From: "Sergey A. Osokin" Date: Thu, 20 Sep 2012 03:56:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304561 - in head/www: nginx nginx-devel X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Sep 2012 03:56:12 -0000 Author: osa Date: Thu Sep 20 03:56:11 2012 New Revision: 304561 URL: http://svn.freebsd.org/changeset/ports/304561 Log: Add third-party CT++ module. Subnmitted: Veniamin Gvozdikov PR: 171702 Modified: head/www/nginx-devel/Makefile head/www/nginx-devel/distinfo head/www/nginx/Makefile head/www/nginx/distinfo Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Thu Sep 20 03:44:21 2012 (r304560) +++ head/www/nginx-devel/Makefile Thu Sep 20 03:56:11 2012 (r304561) @@ -53,6 +53,7 @@ OPTIONS_DEFINE= \ SPDY \ WWW \ CACHE_PURGE \ + CTPP2 \ ECHO \ HEADERS_MORE \ HTTP_ACCEPT_LANGUAGE \ @@ -139,6 +140,7 @@ MAIL_SSL_DESC= Enable mail_ssl module SPDY_DESC= Enable SPDY protocol support (SSL req.) WWW_DESC= Enable html sample files CACHE_PURGE_DESC= 3rd party cache_purge module +CTPP2_DESC= 3rd party CT++ module ECHO_DESC= 3rd party echo module HEADERS_MORE_DESC= 3rd party headers_more module HTTP_ACCEPT_LANGUAGE_DESC= 3rd party accept_language module @@ -329,6 +331,14 @@ DISTFILES+= ngx_cache_purge-${NGINX_CACH CONFIGURE_ARGS+=--add-module=${WRKDIR}/ngx_cache_purge-${NGINX_CACHE_PURGE_VERSION} .endif +.if ${PORT_OPTIONS:MCTPP2} +LIB_DEPENDS+= ctpp2:${PORTSDIR}/textproc/ctpp2 +NGINX_CTPP2_VERSION= 0.5 +MASTER_SITES+= http://dl.vbart.ru/ngx-ctpp/:ctpp2 +DISTFILES+= ngx_ctpp2-${NGINX_CTPP2_VERSION}.tar.gz:ctpp2 +CONFIGURE_ARGS+=--add-module=${WRKDIR}/ngx_ctpp2-${NGINX_CTPP2_VERSION} +.endif + .if ${PORT_OPTIONS:MECHO} NGINX_ECHO_VERSION= 0.41 GIT_ECHO_VERSION= 0-gd3eb42d Modified: head/www/nginx-devel/distinfo ============================================================================== --- head/www/nginx-devel/distinfo Thu Sep 20 03:44:21 2012 (r304560) +++ head/www/nginx-devel/distinfo Thu Sep 20 03:56:11 2012 (r304561) @@ -14,6 +14,8 @@ SHA256 (ngx_http_auth_request_module-0.2 SIZE (ngx_http_auth_request_module-0.2.tar.gz) = 6736 SHA256 (ngx_cache_purge-1.6.tar.gz) = 863d6dd60e31b3c24c1f2d314f294c62a4ab5cf37f98c20ded9f6df1018baac8 SIZE (ngx_cache_purge-1.6.tar.gz) = 7296 +SHA256 (ngx_ctpp2-0.5.tar.gz) = f8adfecc23e2c23af95df8549ef92fd52598b21506a9d9df2278b2605668d5a6 +SIZE (ngx_ctpp2-0.5.tar.gz) = 19686 SHA256 (agentzh-echo-nginx-module-v0.41-0-gd3eb42d.tar.gz) = 247a2fee95c9aef34154ac26867adeeacd407c3d51c839aadeefc9c4c469dbd9 SIZE (agentzh-echo-nginx-module-v0.41-0-gd3eb42d.tar.gz) = 73720 SHA256 (agentzh-headers-more-nginx-module-v0.18-0-g6586984.tar.gz) = c7ef9b58415446c09f82857e379e830273050006f9c5ac3b7a6946cf9944de24 Modified: head/www/nginx/Makefile ============================================================================== --- head/www/nginx/Makefile Thu Sep 20 03:44:21 2012 (r304560) +++ head/www/nginx/Makefile Thu Sep 20 03:56:11 2012 (r304561) @@ -51,6 +51,7 @@ OPTIONS_DEFINE= \ MAIL_SSL \ WWW \ CACHE_PURGE \ + CTPP2 \ ECHO \ HEADERS_MORE \ HTTP_ACCEPT_LANGUAGE \ @@ -136,6 +137,7 @@ MAIL_SMTP_DESC= Enable SMTP proxy modu MAIL_SSL_DESC= Enable mail_ssl module WWW_DESC= Enable html sample files CACHE_PURGE_DESC= 3rd party cache_purge module +CTPP2_DESC= 3rd party CT++ module ECHO_DESC= 3rd party echo module HEADERS_MORE_DESC= 3rd party headers_more module HTTP_ACCEPT_LANGUAGE_DESC= 3rd party accept_language module @@ -327,6 +329,14 @@ DISTFILES+= ngx_cache_purge-${NGINX_CACH CONFIGURE_ARGS+=--add-module=${WRKDIR}/ngx_cache_purge-${NGINX_CACHE_PURGE_VERSION} .endif +.if ${PORT_OPTIONS:MCTPP2} +LIB_DEPENDS+= ctpp2:${PORTSDIR}/textproc/ctpp2 +NGINX_CTPP2_VERSION= 0.5 +MASTER_SITES+= http://dl.vbart.ru/ngx-ctpp/:ctpp2 +DISTFILES+= ngx_ctpp2-${NGINX_CTPP2_VERSION}.tar.gz:ctpp2 +CONFIGURE_ARGS+=--add-module=${WRKDIR}/ngx_ctpp2-${NGINX_CTPP2_VERSION} +.endif + .if ${PORT_OPTIONS:MECHO} NGINX_ECHO_VERSION= 0.41 GIT_ECHO_VERSION= 0-gd3eb42d Modified: head/www/nginx/distinfo ============================================================================== --- head/www/nginx/distinfo Thu Sep 20 03:44:21 2012 (r304560) +++ head/www/nginx/distinfo Thu Sep 20 03:56:11 2012 (r304561) @@ -14,6 +14,8 @@ SHA256 (ngx_http_auth_request_module-0.2 SIZE (ngx_http_auth_request_module-0.2.tar.gz) = 6736 SHA256 (ngx_cache_purge-1.6.tar.gz) = 863d6dd60e31b3c24c1f2d314f294c62a4ab5cf37f98c20ded9f6df1018baac8 SIZE (ngx_cache_purge-1.6.tar.gz) = 7296 +SHA256 (ngx_ctpp2-0.5.tar.gz) = f8adfecc23e2c23af95df8549ef92fd52598b21506a9d9df2278b2605668d5a6 +SIZE (ngx_ctpp2-0.5.tar.gz) = 19686 SHA256 (agentzh-echo-nginx-module-v0.41-0-gd3eb42d.tar.gz) = 247a2fee95c9aef34154ac26867adeeacd407c3d51c839aadeefc9c4c469dbd9 SIZE (agentzh-echo-nginx-module-v0.41-0-gd3eb42d.tar.gz) = 73720 SHA256 (agentzh-headers-more-nginx-module-v0.18-0-g6586984.tar.gz) = c7ef9b58415446c09f82857e379e830273050006f9c5ac3b7a6946cf9944de24