diff options
author | 2017-12-20 21:30:13 +0000 | |
---|---|---|
committer | 2017-12-20 21:34:28 +0000 | |
commit | baa2b7d340e6636519d069ee235a429bd546d289 (patch) | |
tree | b3fb0bca19a211bec2a4ef8421e0d75276b05a3a /app-office/scribus/files | |
parent | app-office/scribus: fix eclass function names (diff) | |
download | gentoo-baa2b7d340e6636519d069ee235a429bd546d289.tar.gz gentoo-baa2b7d340e6636519d069ee235a429bd546d289.tar.bz2 gentoo-baa2b7d340e6636519d069ee235a429bd546d289.zip |
app-office/scribus: Patch openssl determination in cmake
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-office/scribus/files')
-rw-r--r-- | app-office/scribus/files/scribus-1.5.3-cmake-openssl.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app-office/scribus/files/scribus-1.5.3-cmake-openssl.patch b/app-office/scribus/files/scribus-1.5.3-cmake-openssl.patch new file mode 100644 index 000000000000..c2cb5e9dd58e --- /dev/null +++ b/app-office/scribus/files/scribus-1.5.3-cmake-openssl.patch @@ -0,0 +1,15 @@ +Description: Fix case of "OpenSSL" to match the case of the file shipped by cmake +Author: Mattia Rizzolo <mattia@debian.org> +Last-Update: 2017-06-05 + +--- a/cmake/modules/FindLIBPODOFO.cmake ++++ b/cmake/modules/FindLIBPODOFO.cmake +@@ -45,7 +45,7 @@ + #message(STATUS "PODOFO PATCH VERSION ${PODOFO_PATCH_VER}") + set(LIBPODOFO_VERSION "${PODOFO_MAJOR_VER}.${PODOFO_MINOR_VER}.${PODOFO_PATCH_VER}" CACHE STRING "PoDoFo version string") + if(LIBPODOFO_VERSION VERSION_GREATER "0.9.4") +- find_package(OPENSSL) ++ find_package(OpenSSL) + if (OPENSSL_FOUND) + message("OpenSSL found OK for installed version of PoDoFo (>= 0.9.5) - Enabling support for PDF embedded in AI") + set(LIBPODOFO_FOUND TRUE CACHE BOOLEAN "Was libpodofo found") |