mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
- Fix clang build
- Add License - Stage support PR: 186735 Submitted by: ports fury
This commit is contained in:
parent
3e21eb2366
commit
471e1146e3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=345748
@ -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>
|
||||
|
18
editors/klat4/files/patch-klatexecsettingsdlgimpl.cpp
Normal file
18
editors/klat4/files/patch-klatexecsettingsdlgimpl.cpp
Normal file
@ -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)
|
21
editors/klat4/files/patch-klathtmlwidget.cpp
Normal file
21
editors/klat4/files/patch-klathtmlwidget.cpp
Normal file
@ -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)
|
Loading…
Reference in New Issue
Block a user