diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-03-14 07:59:33 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-03-14 07:59:33 +0000 |
commit | a352e375fc08cae1612e8ce72a2f7214c0d980c7 (patch) | |
tree | c281758944125f080855e247ad810c21ceaf3065 /app-office/texmaker/files | |
parent | Initial import (bug #335113 by Jose). (diff) | |
download | gentoo-2-a352e375fc08cae1612e8ce72a2f7214c0d980c7.tar.gz gentoo-2-a352e375fc08cae1612e8ce72a2f7214c0d980c7.tar.bz2 gentoo-2-a352e375fc08cae1612e8ce72a2f7214c0d980c7.zip |
Version Bump
(Portage version: 2.2.0_alpha26/cvs/Linux x86_64)
Diffstat (limited to 'app-office/texmaker/files')
-rw-r--r-- | app-office/texmaker/files/texmaker-2.30-hunspell.patch | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/app-office/texmaker/files/texmaker-2.30-hunspell.patch b/app-office/texmaker/files/texmaker-2.30-hunspell.patch new file mode 100644 index 000000000000..b938064655f8 --- /dev/null +++ b/app-office/texmaker/files/texmaker-2.30-hunspell.patch @@ -0,0 +1,124 @@ +diff --git a/latexeditor.h b/latexeditor.h +index ce36a27..d768977 100644 +--- a/latexeditor.h ++++ b/latexeditor.h +@@ -26,7 +26,7 @@ + #include <QTimer> + + #include "latexhighlighter.h" +-#include "hunspell/hunspell.hxx" ++#include <hunspell.hxx> + + typedef int UserBookmarkList[3]; + +diff --git a/latexeditorview.h b/latexeditorview.h +index 5635464..8fb37cb 100644 +--- a/latexeditorview.h ++++ b/latexeditorview.h +@@ -18,7 +18,7 @@ + #include "latexeditor.h" + #include "linenumberwidget.h" + #include "findwidget.h" +-#include "hunspell/hunspell.hxx" ++#include <hunspell.hxx> + + class LatexEditorView : public QWidget { + Q_OBJECT +diff --git a/latexhighlighter.h b/latexhighlighter.h +index 83ca79c..a1e437a 100644 +--- a/latexhighlighter.h ++++ b/latexhighlighter.h +@@ -20,7 +20,7 @@ + #include <QColor> + #include <QTextBlockUserData> + //#include "latexeditor.h" +-#include "hunspell/hunspell.hxx" ++#include <hunspell.hxx> + + class QTextDocument; + class LatexEditor; +diff --git a/spellerdialog.h b/spellerdialog.h +index 83248ae..cd16dad 100644 +--- a/spellerdialog.h ++++ b/spellerdialog.h +@@ -13,7 +13,7 @@ + + #include "ui_spellerdialog.h" + #include "latexeditor.h" +-#include "hunspell/hunspell.hxx" ++#include <hunspell.hxx> + + #include <QTextCursor> + +diff --git a/texmaker.h b/texmaker.h +index d07d1fb..74ba873 100644 +--- a/texmaker.h ++++ b/texmaker.h +@@ -44,7 +44,7 @@ + #include "logeditor.h" + #include "gotolinedialog.h" + #include "replacedialog.h" +-#include "hunspell/hunspell.hxx" ++#include <hunspell.hxx> + #include "browser.h" + #include "pdfviewer.h" + #include "encodingprober/qencodingprober.h" +diff --git a/texmaker.pro b/texmaker.pro +index 3b3f666..ddd91b3 100644 +--- a/texmaker.pro ++++ b/texmaker.pro +@@ -4,7 +4,8 @@ TARGET = texmaker + QT += network \ + xml \ + webkit +-CONFIG += qt warn_off release ++CONFIG += qt warn_off release link_pkgconfig ++PKGCONFIG = hunspell + TEXMAKERVERSION=2.3 + DEFINES += TEXMAKERVERSION=\\\"$${TEXMAKERVERSION}\\\" + DEFINES += HAVE_SPLASH +@@ -53,25 +54,6 @@ HEADERS += texmaker.h \ + encodingdialog.h \ + synctex_parser.h \ + synctex_parser_utils.h \ +- hunspell/affentry.hxx \ +- hunspell/affixmgr.hxx \ +- hunspell/atypes.hxx \ +- hunspell/baseaffix.hxx \ +- hunspell/csutil.hxx \ +- hunspell/dictmgr.hxx \ +- hunspell/hashmgr.hxx \ +- hunspell/htypes.hxx \ +- hunspell/hunspell.hxx \ +- hunspell/hunspell.h \ +- hunspell/langnum.hxx \ +- hunspell/license.hunspell \ +- hunspell/phonet.hxx \ +- hunspell/suggestmgr.hxx \ +- hunspell/license.myspell \ +- hunspell/filemgr.hxx \ +- hunspell/hunzip.hxx \ +- hunspell/replist.hxx \ +- hunspell/w_char.hxx \ + singleapp/qtlocalpeer.h \ + singleapp/qtlockedfile.h \ + singleapp/qtsingleapplication.h \ +@@ -144,18 +126,6 @@ SOURCES += main.cpp \ + encodingdialog.cpp \ + synctex_parser.c \ + synctex_parser_utils.c \ +- hunspell/affentry.cxx \ +- hunspell/affixmgr.cxx \ +- hunspell/csutil.cxx \ +- hunspell/dictmgr.cxx \ +- hunspell/hashmgr.cxx \ +- hunspell/hunspell.cxx \ +- hunspell/phonet.cxx \ +- hunspell/suggestmgr.cxx \ +- hunspell/utf_info.cxx \ +- hunspell/filemgr.cxx \ +- hunspell/replist.cxx \ +- hunspell/hunzip.cxx \ + singleapp/qtlocalpeer.cpp \ + singleapp/qtlockedfile.cpp \ + singleapp/qtsingleapplication.cpp \ |