From owner-svn-ports-all@freebsd.org Sat Oct 27 17:15:15 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 0FD6710CCF90; Sat, 27 Oct 2018 17:15:15 +0000 (UTC) (envelope-from makc@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 B2F2E72C49; Sat, 27 Oct 2018 17:15:14 +0000 (UTC) (envelope-from makc@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 883F913418; Sat, 27 Oct 2018 17:15:14 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9RHFEKq024512; Sat, 27 Oct 2018 17:15:14 GMT (envelope-from makc@FreeBSD.org) Received: (from makc@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9RHFEf0024510; Sat, 27 Oct 2018 17:15:14 GMT (envelope-from makc@FreeBSD.org) Message-Id: <201810271715.w9RHFEf0024510@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: makc set sender to makc@FreeBSD.org using -f From: Max Brazhnikov Date: Sat, 27 Oct 2018 17:15:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483153 - in head/graphics/fraqtive: . files X-SVN-Group: ports-head X-SVN-Commit-Author: makc X-SVN-Commit-Paths: in head/graphics/fraqtive: . files X-SVN-Commit-Revision: 483153 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: Sat, 27 Oct 2018 17:15:15 -0000 Author: makc Date: Sat Oct 27 17:15:13 2018 New Revision: 483153 URL: https://svnweb.freebsd.org/changeset/ports/483153 Log: graphics/fraqtive: - Switch to Qt 5 - Add patch to fix build with Qt 5 Added: head/graphics/fraqtive/files/ head/graphics/fraqtive/files/patch-qt5 (contents, props changed) Modified: head/graphics/fraqtive/Makefile Modified: head/graphics/fraqtive/Makefile ============================================================================== --- head/graphics/fraqtive/Makefile Sat Oct 27 17:12:39 2018 (r483152) +++ head/graphics/fraqtive/Makefile Sat Oct 27 17:15:13 2018 (r483153) @@ -3,7 +3,7 @@ PORTNAME= fraqtive PORTVERSION= 0.4.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF/fraqtive/Fraqtive/Fraqtive%20${PORTVERSION}/ @@ -13,8 +13,8 @@ COMMENT= Draws Mandelbrot and Julia fractals LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= qmake qt:4 tar:bzip2 -USE_QT= corelib gui opengl xml uic_build moc_build rcc_build +USES= qmake qt:5 tar:bzip2 +USE_QT= core gui opengl widgets xml buildtools_build USE_GL= gl glu OPTIONS_DEFINE= SSE2 Added: head/graphics/fraqtive/files/patch-qt5 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/fraqtive/files/patch-qt5 Sat Oct 27 17:15:13 2018 (r483153) @@ -0,0 +1,20 @@ +--- src/configurationdata.cpp.orig 2015-01-24 14:43:13 UTC ++++ src/configurationdata.cpp +@@ -25,6 +25,7 @@ + #include + #endif + ++#include + #include + #include + +--- src/fractalgenerator.h.orig 2012-12-03 22:37:51 UTC ++++ src/fractalgenerator.h +@@ -21,6 +21,7 @@ + + #include + #include ++#include + #include + + #include "abstractjobprovider.h"