From owner-svn-ports-all@freebsd.org Tue Oct 23 18:25:18 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6625DFF0638; Tue, 23 Oct 2018 18:25:18 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 131628A140; Tue, 23 Oct 2018 18:25:18 +0000 (UTC) (envelope-from tcberner@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 0BDF3139D5; Tue, 23 Oct 2018 18:25:18 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9NIPH2q084123; Tue, 23 Oct 2018 18:25:17 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9NIPHkq084122; Tue, 23 Oct 2018 18:25:17 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201810231825.w9NIPHkq084122@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Tue, 23 Oct 2018 18:25:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482866 - head/sysutils/polkit-qt X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/sysutils/polkit-qt X-SVN-Commit-Revision: 482866 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.29 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: Tue, 23 Oct 2018 18:25:18 -0000 Author: tcberner Date: Tue Oct 23 18:25:17 2018 New Revision: 482866 URL: https://svnweb.freebsd.org/changeset/ports/482866 Log: sysutils/polkit-qt: fix build with GCC-based architectures - while here: add missing USES=gnome. PR: 232559 Submitted by: Piotr Kubaj Modified: head/sysutils/polkit-qt/Makefile Modified: head/sysutils/polkit-qt/Makefile ============================================================================== --- head/sysutils/polkit-qt/Makefile Tue Oct 23 18:13:04 2018 (r482865) +++ head/sysutils/polkit-qt/Makefile Tue Oct 23 18:25:17 2018 (r482866) @@ -20,7 +20,7 @@ LIB_DEPENDS= libpolkit-agent-1.so:sysutils/polkit FLAVORS= qt4 qt5 FLAVOR?= ${FLAVORS:[1]} -USES= cmake:outsource pkgconfig tar:bzip2 +USES= cmake:outsource gnome pkgconfig tar:bzip2 USE_GNOME= glib20 CMAKE_OFF= BUILD_EXAMPLES \ BUILD_TEST @@ -34,7 +34,7 @@ CMAKE_ON+= USE_QT4 CMAKE_OFF+= USE_QT5 QTVER_SUFFIX= # empty . else -USES+= qt:5 +USES+= compiler:c++11-lang qt:5 USE_QT= core dbus gui widgets buildtools_build qmake_build CMAKE_ON+= USE_QT5 CMAKE_OFF+= USE_QT4