[kbibtex] 07/08: Detect poppler-qt5
Bastien ROUCARIES
broucaries-guest at moszumanska.debian.org
Tue Sep 5 18:52:40 UTC 2017
This is an automated email from the git hooks/post-receive script.
broucaries-guest pushed a commit to branch gitdpm
in repository kbibtex.
commit 9b411e8bd40c1ecc15413b6e090a3f53d8852b45
Author: Bastien ROUCARIÈS <roucaries.bastien at gmail.com>
Date: Sat Sep 2 15:14:38 2017 +0200
Detect poppler-qt5
Forwarded: no
---
CMakeLists.txt | 43 ++++++++++++++++++++++++++++++-------------
src/data/CMakeLists.txt | 4 ++--
src/io/CMakeLists.txt | 4 ++--
src/io/fileimporterpdf.cpp | 2 +-
src/io/fileinfo.cpp | 2 +-
src/networking/CMakeLists.txt | 4 ++--
src/networking/findpdf.cpp | 2 +-
7 files changed, 39 insertions(+), 22 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1c5f007..d1d1844 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -131,19 +131,36 @@ macro_log_feature(
"Required to transform XML files"
)
-find_package(
- PopplerQt4
- REQUIRED
-)
-macro_log_feature(
- PopplerQt4_FOUND
- "Poppler/Qt4"
- "Poppler is a PDF rendering library"
- "http://poppler.freedesktop.org/"
- TRUE
- ""
- "Required to transform process PDF files"
-)
+
+#find_package(
+# PopplerQt5
+# REQUIRED
+#)
+#macro_log_feature(
+# PopplerQt5_FOUND
+# "Poppler/Qt5"
+# "Poppler is a PDF rendering library"
+# "http://poppler.freedesktop.org/"
+# TRUE
+# ""
+# "Required to transform process PDF files"
+#)
+
+find_package(PkgConfig)
+if(PKG_CONFIG_FOUND)
+ message(STATUS "PkgConfig was found.")
+ pkg_check_modules(POPPLER_QT REQUIRED poppler-qt5)
+else(PKG_CONFIG_FOUND)
+ message(FATAL_ERROR "Could not find PkgConfig")
+endif(PKG_CONFIG_FOUND)
+
+# Have we found libdaemon?
+if(POPPLER_QT_FOUND)
+ message(STATUS "poppler-qt5 was found: ${POPPLER_QT_LIBRARIES} includedir ${POPPLER_QT_INCLUDE_DIRSS}")
+else(POPPLER_QT_FOUND)
+ message(FATAL_ERROR "Could not find libdaemon.")
+endif(POPPLER_QT_FOUND)
+
find_package(
Qxt
diff --git a/src/data/CMakeLists.txt b/src/data/CMakeLists.txt
index c673841..16ea9dc 100644
--- a/src/data/CMakeLists.txt
+++ b/src/data/CMakeLists.txt
@@ -35,7 +35,7 @@ add_definitions(
include_directories(
${LIBXML2_INCLUDE_DIR}
${LIBXSLT_INCLUDE_DIR}
- ${POPPLER_QT4_INCLUDE_DIR}
+ ${POPPLER_QT_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}/config
${CMAKE_SOURCE_DIR}/src/config
)
@@ -58,7 +58,7 @@ target_link_libraries(
${KDE4_KIO_LIBS}
${LIBXML2_LIBRARIES}
${LIBXSLT_LIBRARIES}
- ${POPPLER_QT4_LIBRARIES}
+ ${POPPLER_QT_LIBRARIES}
kbibtexconfig
)
diff --git a/src/io/CMakeLists.txt b/src/io/CMakeLists.txt
index 624d173..3851e5c 100644
--- a/src/io/CMakeLists.txt
+++ b/src/io/CMakeLists.txt
@@ -76,7 +76,7 @@ add_definitions(
include_directories(
${LIBXML2_INCLUDE_DIR}
${LIBXSLT_INCLUDE_DIR}
- ${POPPLER_QT4_INCLUDE_DIR}
+ ${POPPLER_QT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/src/config
${CMAKE_SOURCE_DIR}/src/data
${CMAKE_CURRENT_SOURCE_DIR}/config
@@ -100,7 +100,7 @@ target_link_libraries(
${KDE4_KIO_LIBS}
${LIBXML2_LIBRARIES}
${LIBXSLT_LIBRARIES}
- ${POPPLER_QT4_LIBRARIES}
+ ${POPPLER_QT_LIBRARIES}
${ICU_LIBRARIES}
kbibtexconfig
kbibtexdata
diff --git a/src/io/fileimporterpdf.cpp b/src/io/fileimporterpdf.cpp
index c2b5bce..8a5aab3 100644
--- a/src/io/fileimporterpdf.cpp
+++ b/src/io/fileimporterpdf.cpp
@@ -22,7 +22,7 @@
#include <KDebug>
-#include <poppler-qt4.h>
+#include <poppler-qt5.h>
#include "file.h"
#include "fileimporterbibtex.h"
diff --git a/src/io/fileinfo.cpp b/src/io/fileinfo.cpp
index 13ed028..642b58c 100644
--- a/src/io/fileinfo.cpp
+++ b/src/io/fileinfo.cpp
@@ -17,7 +17,7 @@
#include "fileinfo.h"
-#include <poppler-qt4.h>
+#include <poppler-qt5.h>
#include <QFileInfo>
#include <QDir>
diff --git a/src/networking/CMakeLists.txt b/src/networking/CMakeLists.txt
index 03880ff..f96b430 100644
--- a/src/networking/CMakeLists.txt
+++ b/src/networking/CMakeLists.txt
@@ -6,7 +6,7 @@ include_directories(
${CMAKE_SOURCE_DIR}/src/io
${CMAKE_SOURCE_DIR}/src/networking/onlinesearch
${CMAKE_SOURCE_DIR}/src/networking
- ${POPPLER_QT4_INCLUDE_DIR}
+ ${POPPLER_QT_INCLUDE_DIRS}
${LIBXML2_INCLUDE_DIR}
${QCA2_INCLUDE_DIR}
)
@@ -135,7 +135,7 @@ target_link_libraries(
${QT_QTCORE_LIBRARY}
${KDE4_KDECORE_LIBS}
${KDE4_KIO_LIBS}
- ${POPPLER_QT4_LIBRARIES}
+ ${POPPLER_QT_LIBRARIES}
kbibtexconfig
kbibtexdata
kbibtexio
diff --git a/src/networking/findpdf.cpp b/src/networking/findpdf.cpp
index 1659262..9cc08fc 100644
--- a/src/networking/findpdf.cpp
+++ b/src/networking/findpdf.cpp
@@ -21,7 +21,7 @@
#include <QNetworkRequest>
#include <QRegExp>
-#include <poppler-qt4.h>
+#include <poppler-qt5.h>
#include <KApplication>
#include <KDebug>
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/kbibtex.git
More information about the debian-science-commits
mailing list