Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Feb 2014 16:11:38 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r345748 - in head/editors/klat4: . files
Message-ID:  <201402231611.s1NGBcNq012583@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Sun Feb 23 16:11:38 2014
New Revision: 345748
URL: http://svnweb.freebsd.org/changeset/ports/345748
QAT: https://qat.redports.org/buildarchive/r345748/

Log:
  - Fix clang build
  - Add License
  - Stage support
  
  PR:		186735
  Submitted by:	ports fury

Added:
  head/editors/klat4/files/
  head/editors/klat4/files/patch-klatexecsettingsdlgimpl.cpp   (contents, props changed)
  head/editors/klat4/files/patch-klathtmlwidget.cpp   (contents, props changed)
Modified:
  head/editors/klat4/Makefile

Modified: head/editors/klat4/Makefile
==============================================================================
--- head/editors/klat4/Makefile	Sun Feb 23 16:10:45 2014	(r345747)
+++ head/editors/klat4/Makefile	Sun Feb 23 16:11:38 2014	(r345748)
@@ -8,14 +8,13 @@ CATEGORIES=	editors
 MASTER_SITES=	http://klat.algebraic.ru/
 
 MAINTAINER=	ports@FreeBSD.org
-COMMENT=	A LaTeX source editor for KDE4
+COMMENT=	LaTeX source editor for KDE4
 
-RUN_DEPENDS=	${KDE4_PREFIX}/lib/kde4/katepart.so:${PORTSDIR}/editors/kate
+LICENSE=	GPLv2 # (or later)
 
 USE_BZIP2=	yes
 USES=		cmake
-USE_KDE4=	kdeprefix kdelibs automoc4
-USE_QT4=	corelib qmake_build moc_build rcc_build uic_build
+USE_KDE4=	automoc4 kate kdelibs kdeprefix
+USE_QT4=	moc_build qmake_build rcc_build uic_build
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Added: head/editors/klat4/files/patch-klatexecsettingsdlgimpl.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/editors/klat4/files/patch-klatexecsettingsdlgimpl.cpp	Sun Feb 23 16:11:38 2014	(r345748)
@@ -0,0 +1,18 @@
+--- klatexecsettingsdlgimpl.cpp.orig
++++ klatexecsettingsdlgimpl.cpp
+@@ -271,6 +271,7 @@
+ 				return tmp.entry().commandLine();
+ //			else if (index.column() == 4)
+ //				return tmp.entry().shortcut().toString();
++			return QVariant();
+ 		} 
+ 		else
+ 			return QVariant();
+@@ -294,6 +295,7 @@
+ 		return QString(i18n("Parameters"));
+ //	else if(sect == 4)
+ //		return QString("Shortcut");
++	return QString("Invisible");
+ }
+ 
+ void KlatExecConfigModel::slotDataChanged(const QModelIndex &top, const QModelIndex &bottom)

Added: head/editors/klat4/files/patch-klathtmlwidget.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/editors/klat4/files/patch-klathtmlwidget.cpp	Sun Feb 23 16:11:38 2014	(r345748)
@@ -0,0 +1,21 @@
+--- klathtmlwidget.cpp.orig
++++ klathtmlwidget.cpp
+@@ -73,7 +73,7 @@
+ 			}
+ 			if(cURL.protocol() == LTRTOKLATPROT && found == true)
+ 			{
+-				for (i ,found = false ; !found && i < len ; i++)
++				for (i = 0, found = false ; !found && i < len ; i++)
+ 				{
+ 					if (code[i] == '}')
+ 					{
+@@ -85,7 +85,9 @@
+ 		}
+ 		
+ 		emit signalSymbolCodeSelected(code,advance);
++		return found;
+ 	}
++	return false;
+ }
+ 
+ void KlatHTMLWidget::openAppDataUrl(const QString &relpath)



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