From owner-svn-ports-all@FreeBSD.ORG Wed May 13 02:30:13 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D6D81D8; Wed, 13 May 2015 02:30:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 1B2871A00; Wed, 13 May 2015 02:30:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4D2UCFx053304; Wed, 13 May 2015 02:30:12 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4D2UCsY053303; Wed, 13 May 2015 02:30:12 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201505130230.t4D2UCsY053303@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Wed, 13 May 2015 02:30:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386193 - head/www/rubygem-passenger 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.20 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: Wed, 13 May 2015 02:30:13 -0000 Author: osa Date: Wed May 13 02:30:12 2015 New Revision: 386193 URL: https://svnweb.freebsd.org/changeset/ports/386193 Log: It's possible to build port without installed nginx, so, remove necessary code, it's just a consitency check for the version of the third-party passenger module compiled with nginx and passenger's versions. Modified: head/www/rubygem-passenger/Makefile Modified: head/www/rubygem-passenger/Makefile ============================================================================== --- head/www/rubygem-passenger/Makefile Wed May 13 02:11:51 2015 (r386192) +++ head/www/rubygem-passenger/Makefile Wed May 13 02:30:12 2015 (r386193) @@ -34,22 +34,6 @@ RUBYGEM_AUTOPLIST= yes USE_APACHE= 22+ .endif -.if ${PORT_OPTIONS:MNGINX} -NGINXVERSION!= ${PKG_INFO} -qO www/nginx-devel 2>/dev/null; ${ECHO_CMD} -NGXPASSENGER!= nginx -V 2>&1 | sed 's/.*passenger-\(.*\)\/ext.*/\1/g' | tail -1 -.if empty(NGINXVERSION) -BUILD_DEPENDS+= nginx:${PORTSDIR}/www/nginx -.else -BUILD_DEPENDS+= nginx:${PORTSDIR}/www/nginx-devel -.endif -.if empty(NGXPASSENGER) -IGNORE= rebuild nginx with latest passenger module -.endif -.if (${NGXPASSENGER} != ${PORTVERSION}) -IGNORE= rebuild nginx with third-party ${PORTVERSION} module, current verion is ${NGXPASSENGER} -.endif -.endif - LIB_DEPENDS+= libeio.so:${PORTSDIR}/devel/libeio \ libcurl.so:${PORTSDIR}/ftp/curl BUILD_DEPENDS+= rubygem-fastthread>=1.0.1:${PORTSDIR}/devel/rubygem-fastthread \