svn commit: r569050 - head/www/joomla3

Chris Rees crees at FreeBSD.org
Tue Mar 23 19:10:27 UTC 2021


Author: crees
Date: Tue Mar 23 19:10:26 2021
New Revision: 569050
URL: https://svnweb.freebsd.org/changeset/ports/569050

Log:
  pdflib blocks the building of Joomla packages
  
  It is not necessary for runtime, so just disable it when package building
  
  Reported by:		Greg Rivers <gcr+freebsd-ports at tharned.org>
  Differential review:	https://reviews.freebsd.org/D29062

Modified:
  head/www/joomla3/Makefile   (contents, props changed)

Modified: head/www/joomla3/Makefile
==============================================================================
--- head/www/joomla3/Makefile	Tue Mar 23 18:55:40 2021	(r569049)
+++ head/www/joomla3/Makefile	Tue Mar 23 19:10:26 2021	(r569050)
@@ -38,7 +38,7 @@ WWWDIR=		${PREFIX}/www/${PORTNAME}${PORTVERSION:R:R}
 
 .include <bsd.port.options.mk>
 
-.if ${FLAVOR} != php80
+.if ${FLAVOR} != php80 && !defined(PACKAGE_BUILDING)
 USE_PHP+=	pdf
 .endif
 


More information about the svn-ports-head mailing list