svn commit: r386193 - head/www/rubygem-passenger

Sergey A. Osokin osa at FreeBSD.org
Wed May 13 02:30:13 UTC 2015


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 \


More information about the svn-ports-all mailing list