From owner-svn-ports-branches@freebsd.org Mon Nov 28 11:20:25 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 388EEC59AD0; Mon, 28 Nov 2016 11:20:25 +0000 (UTC) (envelope-from martymac@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 mx1.freebsd.org (Postfix) with ESMTPS id 076ED1BAA; Mon, 28 Nov 2016 11:20:24 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uASBKOdc031009; Mon, 28 Nov 2016 11:20:24 GMT (envelope-from martymac@FreeBSD.org) Received: (from martymac@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uASBKO8r031008; Mon, 28 Nov 2016 11:20:24 GMT (envelope-from martymac@FreeBSD.org) Message-Id: <201611281120.uASBKO8r031008@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: martymac set sender to martymac@FreeBSD.org using -f From: Ganael LAPLANCHE Date: Mon, 28 Nov 2016 11:20:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r427297 - branches/2016Q4/games/flightgear X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2016 11:20:25 -0000 Author: martymac Date: Mon Nov 28 11:20:23 2016 New Revision: 427297 URL: https://svnweb.freebsd.org/changeset/ports/427297 Log: MFH: r427116 Make QT5 optional PR: 214748 Submitted by: Michael Danilov Approved by: ports-secteam Modified: branches/2016Q4/games/flightgear/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/games/flightgear/Makefile ============================================================================== --- branches/2016Q4/games/flightgear/Makefile Mon Nov 28 11:18:53 2016 (r427296) +++ branches/2016Q4/games/flightgear/Makefile Mon Nov 28 11:20:23 2016 (r427297) @@ -3,6 +3,7 @@ PORTNAME= flightgear PORTVERSION= 2016.3.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/flightgear/release-${PORTVERSION:R} @@ -26,7 +27,6 @@ RUN_DEPENDS= ${LOCALBASE}/lib/libplibsl. USE_XORG= ice sm x11 xext xft xi xinerama xmu xt USE_GL= gl glu glut -USE_QT5= core buildtools gui qmake widgets USES= alias cmake compiler cpe dos2unix jpeg openal:al,alut sqlite \ tar:bzip2 @@ -38,12 +38,15 @@ CMAKE_ARGS+= -DENABLE_JS_SERVER:BOOL=ON -DFGCOM_DATA_PATH:PATH=${DATADIR} LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS_DEFINE= DBUS -OPTIONS_DEFAULT= DBUS +OPTIONS_DEFINE= DBUS QT5 +OPTIONS_DEFAULT= DBUS QT5 DBUS_LIB_DEPENDS= libdbus-1.so:devel/dbus DBUS_USES= pkgconfig DBUS_CMAKE_ON= -DUSE_DBUS:BOOL=ON DBUS_CMAKE_OFF= -DUSE_DBUS:BOOL=OFF +QT5_CMAKE_ON= -DENABLE_QT:BOOL=ON +QT5_CMAKE_OFF= -DENABLE_QT:BOOL=OFF +QT5_USE= QT5=core,buildtools,gui,qmake,widgets .include