guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: perl: Work around more "dotless @INC" build issues.


From: Ludovic Courtès
Subject: 03/03: gnu: perl: Work around more "dotless @INC" build issues.
Date: Fri, 4 Aug 2017 18:34:45 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit a56bf101c603aac3c7e2fc47bd8bd025f2ed44a6
Author: Ludovic Courtès <address@hidden>
Date:   Sat Aug 5 00:11:41 2017 +0200

    gnu: perl: Work around more "dotless @INC" build issues.
    
    * gnu/packages/web.scm (perl-www-curl)[arguments]: Add 'set-search-path'
    phase.
    * gnu/packages/bioinformatics.scm (ngs-sdk)[arguments]: Augment
    'configure' phase to set PERL5LIB.
    * gnu/packages/image.scm (steghide)[arguments]: Add #:phases argument.
---
 gnu/packages/bioinformatics.scm |  4 ++++
 gnu/packages/image.scm          | 11 ++++++++++-
 gnu/packages/web.scm            | 11 ++++++++++-
 3 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 6bbbe33..2b4b400 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -4680,6 +4680,10 @@ Roche 454, Ion Torrent and Pacific BioSciences SMRT.")
         'configure
         (lambda* (#:key outputs #:allow-other-keys)
           (let ((out (assoc-ref outputs "out")))
+            ;; Allow 'konfigure.perl' to find 'package.prl'.
+            (setenv "PERL5LIB"
+                    (string-append ".:" (getenv "PERL5LIB")))
+
             ;; The 'configure' script doesn't recognize things like
             ;; '--enable-fast-install'.
             (zero? (system* "./configure"
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 1b230b5..5bc9a77 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -986,7 +986,16 @@ differences in file encoding, image quality, and other 
small variations.")
        ("libjpeg" ,libjpeg)
        ("zlib" ,zlib)))
     (arguments
-     `(#:make-flags '("CXXFLAGS=-fpermissive"))) ;required for MHashPP.cc
+     `(#:make-flags '("CXXFLAGS=-fpermissive")    ;required for MHashPP.cc
+
+       #:phases (modify-phases %standard-phases
+                  (add-before 'configure 'set-perl-search-path
+                    (lambda _
+                      ;; Work around "dotless @INC" build failure.
+                      (setenv "PERL5LIB"
+                              (string-append (getcwd) "/tests:"
+                                             (getenv "PERL5LIB")))
+                      #t)))))
     (home-page "http://steghide.sourceforge.net";)
     (synopsis "Image and audio steganography")
     (description
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 695b7a3..096d05c 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -3249,7 +3249,16 @@ RFC 6570.")
                 "1fmp9aib1kaps9vhs4dwxn7b15kgnlz9f714bxvqsd1j1q8spzsj"))))
     (build-system perl-build-system)
     (arguments
-     '(#:tests? #f))                        ;XXX: tests require network access
+     '(#:tests? #f                          ;XXX: tests require network access
+
+       #:phases (modify-phases %standard-phases
+                   (add-before 'configure 'set-search-path
+                     (lambda _
+                       ;; Work around "dotless @INC" build failure.
+                       (setenv "PERL5LIB"
+                               (string-append (getcwd) ":"
+                                              (getenv "PERL5LIB")))
+                       #t)))))
     (native-inputs
      `(("perl-module-install" ,perl-module-install)))
     (inputs `(("curl" ,curl)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]