diff options
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/texworks/files/qt5.15-support.patch | 21 | ||||
-rw-r--r-- | app-editors/texworks/texworks-0.6.5.ebuild | 9 |
2 files changed, 28 insertions, 2 deletions
diff --git a/app-editors/texworks/files/qt5.15-support.patch b/app-editors/texworks/files/qt5.15-support.patch new file mode 100644 index 000000000000..9c77c157e463 --- /dev/null +++ b/app-editors/texworks/files/qt5.15-support.patch @@ -0,0 +1,21 @@ +From a5352a3a94e3685125650b65e6197de060326cc2 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Stefan=20L=C3=B6ffler?= <st.loeffler@gmail.com> +Date: Fri, 1 May 2020 08:05:46 +0200 +Subject: [PATCH] <QtPDF> Fix compilation with Qt 5.15 + +--- + modules/QtPDF/src/PDFBackend.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/modules/QtPDF/src/PDFBackend.cpp b/modules/QtPDF/src/PDFBackend.cpp +index 0305d87a..500d20aa 100644 +--- a/modules/QtPDF/src/PDFBackend.cpp ++++ b/modules/QtPDF/src/PDFBackend.cpp +@@ -14,6 +14,7 @@ + + #include <PDFBackend.h> + #include <QPainter> ++#include <QPainterPath> + #include <QApplication> + + namespace QtPDF { diff --git a/app-editors/texworks/texworks-0.6.5.ebuild b/app-editors/texworks/texworks-0.6.5.ebuild index d9fa4f242770..f9228f2ac586 100644 --- a/app-editors/texworks/texworks-0.6.5.ebuild +++ b/app-editors/texworks/texworks-0.6.5.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python{3_6,3_7} ) -inherit python-single-r1 cmake-utils virtualx xdg-utils +inherit python-single-r1 cmake virtualx xdg-utils DESCRIPTION="A simple interface for working with TeX documents" HOMEPAGE="http://tug.org/texworks/" @@ -40,6 +40,11 @@ pkg_setup() { python-single-r1_pkg_setup } +src_prepare() { + cmake_src_prepare + eapply "${FILESDIR}"/qt5.15-support.patch +} + src_configure() { local mycmakeargs=( -Wno-dev @@ -52,7 +57,7 @@ src_configure() { -DBUILD_SHARED_LIBS=ON -DBUILD_SHARED_PLUGINS=ON ) - cmake-utils_src_configure + cmake_src_configure } src_test() { |