svn commit: r548883 - head/www/qt5-webengine

Adriaan de Groot adridg at FreeBSD.org
Fri Sep 18 10:02:36 UTC 2020


Author: adridg
Date: Fri Sep 18 10:02:33 2020
New Revision: 548883
URL: https://svnweb.freebsd.org/changeset/ports/548883

Log:
  Simplify www/qt5-WebEngine dependencies.
  
  WebEngine contains a Qt Designer plugin -- so you can put webengine
  widgets into forms in designer -- so it needs designer to build that
  plugin against. However, you don't need designer to use webengine
  parts -- as a web-browser, it doesn't use the designer application
  at all. So shuffle the designer dependency to _build; this means
  that installing a web browser based on webengine no longer pulls
  in the designer application.
  
  Of course, you'll need to install designer, in order to use the
  webengine designer plugin, but that's for specific devel-work.
  
  PORTREVISION bumped because the deps change.
  
  Reported by:	FuryBSD

Modified:
  head/www/qt5-webengine/Makefile

Modified: head/www/qt5-webengine/Makefile
==============================================================================
--- head/www/qt5-webengine/Makefile	Fri Sep 18 10:02:23 2020	(r548882)
+++ head/www/qt5-webengine/Makefile	Fri Sep 18 10:02:33 2020	(r548883)
@@ -18,7 +18,7 @@
 
 PORTNAME=	webengine
 DISTVERSION=	${QT5_VERSION}
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	www
 PKGNAMEPREFIX=	qt5-
 
@@ -78,8 +78,9 @@ USES=		gl gnome gperf jpeg python:2.7,build pkgconfig 
 		qmake:norecursive,outsource qt-dist:5,webengine shebangfix xorg
 USE_GL=		gl
 USE_GNOME=	glib20 libxml2 libxslt
-USE_QT=		core declarative designer gui location network webchannel \
-		widgets buildtools_build qmake_build printsupport
+USE_QT=		core declarative gui location network printsupport \
+		webchannel widgets \
+		buildtools_build designer_build qmake_build
 USE_XORG=	x11 xcb xcomposite xcursor xdamage xext xfixes xi xorgproto \
 		xrandr xrender xscrnsaver xtst
 


More information about the svn-ports-head mailing list