From owner-svn-ports-all@freebsd.org Fri Sep 4 19:17:12 2020 Return-Path: Delivered-To: svn-ports-all@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 46D323CC9FC; Fri, 4 Sep 2020 19:17:12 +0000 (UTC) (envelope-from pkubaj@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 4BjnVc0qCHz4TkW; Fri, 4 Sep 2020 19:17:12 +0000 (UTC) (envelope-from pkubaj@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 F08221145B; Fri, 4 Sep 2020 19:17:11 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 084JHBD7032494; Fri, 4 Sep 2020 19:17:11 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 084JHBdv032493; Fri, 4 Sep 2020 19:17:11 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202009041917.084JHBdv032493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Fri, 4 Sep 2020 19:17:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r547564 - head/devel/pyside2-tools X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/devel/pyside2-tools X-SVN-Commit-Revision: 547564 X-SVN-Commit-Repository: ports 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.33 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: Fri, 04 Sep 2020 19:17:12 -0000 Author: pkubaj Date: Fri Sep 4 19:17:11 2020 New Revision: 547564 URL: https://svnweb.freebsd.org/changeset/ports/547564 Log: devel/pyside2-tools: remove webengine on non-x86 Builds fine without webengine on powerpc64. Modified: head/devel/pyside2-tools/Makefile Modified: head/devel/pyside2-tools/Makefile ============================================================================== --- head/devel/pyside2-tools/Makefile Fri Sep 4 19:14:17 2020 (r547563) +++ head/devel/pyside2-tools/Makefile Fri Sep 4 19:17:11 2020 (r547564) @@ -24,7 +24,7 @@ USE_PYTHON= flavors USE_QT= 3d buildtools charts core datavis3d declarative \ designer gui help location multimedia network opengl \ printsupport qmake_build script scripttools scxml sensors \ - speech sql svg testlib uitools webchannel webengine \ + speech sql svg testlib uitools webchannel \ websockets widgets x11extras xml xmlpatterns SHEBANG_FILES= pyside_tool.py @@ -34,5 +34,9 @@ CMAKE_ARGS+= "-DUSE_PYTHON_VERSION=${PYTHON_VER}" .include WRKSRC= ${WRKDIR}/pyside-setup-opensource-src-${DISTVERSION:C/^([0-9].[0-9]+.[0-9])(.[0-9])?/\1/}/sources/pyside2-tools + +.if ${ARCH} == amd64 || ${ARCH} == i386 +USE_QT+= webengine +.endif .include