[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: podofo: Fix detection of freetype.
From: |
Andreas Enge |
Subject: |
02/02: gnu: podofo: Fix detection of freetype. |
Date: |
Sat, 07 Mar 2015 00:39:09 +0000 |
andreas pushed a commit to branch master
in repository guix.
commit dde70926568019c1000a1cf7863a3e44433774d7
Author: Andreas Enge <address@hidden>
Date: Sat Mar 7 01:37:58 2015 +0100
gnu: podofo: Fix detection of freetype.
* gnu/packages/pdf.scm (podofo)[arguments]: Add phase patching the cmake
file that looks for freetype.
---
gnu/packages/pdf.scm | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index f6db546..f75a060 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -338,7 +338,16 @@ interaction.")
("zlib" ,zlib)))
(arguments
`(#:configure-flags '("-DPODOFO_BUILD_SHARED=ON"
- "-DPODOFO_BUILD_STATIC=ON")))
+ "-DPODOFO_BUILD_STATIC=ON")
+ #:phases
+ (alist-cons-before
+ 'configure 'patch
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let ((freetype (assoc-ref inputs "freetype")))
+ ;; Look for freetype include files in the correct place.
+ (substitute* "cmake/modules/FindFREETYPE.cmake"
+ (("/usr/local") freetype))))
+ %standard-phases)))
(home-page "http://podofo.sourceforge.net")
(synopsis "Tools to work with the PDF file format")
(description