svn commit: r483153 - in head/graphics/fraqtive: . files

Max Brazhnikov makc at FreeBSD.org
Sat Oct 27 17:15:15 UTC 2018


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 <shlobj.h>
+ #endif
+ 
++#include <QDataStream>
+ #include <QDir>
+ #include <cstdlib>
+ 
+--- src/fractalgenerator.h.orig	2012-12-03 22:37:51 UTC
++++ src/fractalgenerator.h
+@@ -21,6 +21,7 @@
+ 
+ #include <QEvent>
+ #include <QMutex>
++#include <QObject>
+ #include <QWaitCondition>
+ 
+ #include "abstractjobprovider.h"


More information about the svn-ports-all mailing list