Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Nov 2018 18:59:11 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r484629 - in head/net/linphone: . files
Message-ID:  <201811101859.wAAIxBj7002965@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Sat Nov 10 18:59:10 2018
New Revision: 484629
URL: https://svnweb.freebsd.org/changeset/ports/484629

Log:
  Add missing run dependencies and add an upstream patch to fix some UI
  problems.
  
  PR:		232392

Added:
  head/net/linphone/files/patch-08-313aa68   (contents, props changed)
Modified:
  head/net/linphone/Makefile

Modified: head/net/linphone/Makefile
==============================================================================
--- head/net/linphone/Makefile	Sat Nov 10 18:12:57 2018	(r484628)
+++ head/net/linphone/Makefile	Sat Nov 10 18:59:10 2018	(r484629)
@@ -2,7 +2,7 @@
 
 PORTNAME=	linphone
 PORTVERSION=	4.1.1
-PORTREVISION=	1
+PORTREVISION=	2
 PORTEPOCH=	1
 CATEGORIES=	net
 MASTER_SITES=	https://www.linphone.org/releases/sources/linphoneqt/
@@ -16,8 +16,9 @@ LIB_DEPENDS=	libbctoolbox.so:net/bctoolbox \
 		liblinphone++.so:net/liblinphone
 
 USES=		cmake:outsource compiler:c++11-lib pkgconfig qt:5
-USE_QT= 	buildtools_build concurrent core declarative gui linguisttools network \
-		qmake_build quickcontrols2 speech svg testlib widgets
+USE_QT= 	buildtools_build concurrent core declarative \
+		graphicaleffects_run gui linguisttools network qmake_build \
+		quickcontrols_run quickcontrols2 speech svg testlib widgets
 
 post-patch:
 	@${REINPLACE_CMD} 's/LINPHONE_QT_GIT_VERSION/"${PORTVERSION}"/' \

Added: head/net/linphone/files/patch-08-313aa68
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/linphone/files/patch-08-313aa68	Sat Nov 10 18:59:10 2018	(r484629)
@@ -0,0 +1,29 @@
+From 313aa682738fc877ee8ba78b1d4060e08739cc24 Mon Sep 17 00:00:00 2001
+From: Ronan Abhamon <ronan.abhamon@belledonne-communications.com>
+Date: Fri, 19 Jan 2018 15:16:03 +0100
+Subject: [PATCH] feat(AppController): force default theme style
+
+---
+ src/app/AppController.cpp | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/app/AppController.cpp b/src/app/AppController.cpp
+index 2d353884..711e1a9b 100644
+--- src/app/AppController.cpp
++++ src/app/AppController.cpp
+@@ -23,6 +23,7 @@
+ #include <QDirIterator>
+ #include <QFontDatabase>
+ #include <QMessageBox>
++#include <QQuickStyle>
+ 
+ #include "gitversion.h"
+ 
+@@ -85,6 +86,7 @@ AppController::AppController (int &argc, char *argv[]) {
+   QCoreApplication::setApplicationVersion(APPLICATION_VERSION);
+ 
+   mApp = new App(argc, argv);
++  QQuickStyle::setStyle("Default");
+   if (mApp->isSecondary()) {
+     #ifdef Q_OS_MACOS
+       mApp->processEvents();



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811101859.wAAIxBj7002965>