From owner-svn-ports-head@freebsd.org Fri Sep 18 10:02:35 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D9C9A3DEFC1; Fri, 18 Sep 2020 10:02:35 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bt8XB6Kb5z4Nb6; Fri, 18 Sep 2020 10:02:34 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 08A1E1965A; Fri, 18 Sep 2020 10:02:34 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08IA2Xhj083228; Fri, 18 Sep 2020 10:02:33 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08IA2X8i083227; Fri, 18 Sep 2020 10:02:33 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <202009181002.08IA2X8i083227@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Fri, 18 Sep 2020 10:02:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548883 - head/www/qt5-webengine X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: head/www/qt5-webengine X-SVN-Commit-Revision: 548883 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 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: Fri, 18 Sep 2020 10:02:36 -0000 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