guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: slang: Use a correct location for terminfo dirs.


From: Mathieu Othacehe
Subject: 01/01: gnu: slang: Use a correct location for terminfo dirs.
Date: Wed, 7 Nov 2018 04:39:42 -0500 (EST)

mothacehe pushed a commit to branch master
in repository guix.

commit 8243f4e55a9f87821370eb2198fa9b5c8eac6648
Author: Mathieu Othacehe <address@hidden>
Date:   Sun Oct 28 11:33:20 2018 +0900

    gnu: slang: Use a correct location for terminfo dirs.
    
    As termcap is disabled and no terminfo directory is given, slang is not able
    to query terminal capabilities. Specifying a correct path for terminfo will
    automatically disable termcap support in the configuration.
    
    * gnu/packages/slang.scm (slang)[source]: Remove the snippet disabling
    termcap.
    [arguments]: Set MISC_TERMINFO_DIRS to a correct location.
---
 gnu/packages/slang.scm | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/slang.scm b/gnu/packages/slang.scm
index 24eb5fa..185d441 100644
--- a/gnu/packages/slang.scm
+++ b/gnu/packages/slang.scm
@@ -50,13 +50,21 @@
                '(begin
                   (substitute* "src/Makefile.in"
                     (("/bin/ln") "ln"))
-                  (substitute* "configure"
-                    (("-ltermcap") ""))
                   #t))))
     (build-system gnu-build-system)
     (arguments
      '(#:parallel-tests? #f
-       #:parallel-build? #f)) ; there's at least one race
+       #:parallel-build? #f  ; there's at least one race
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'configure 'substitute-before-config
+           (lambda* (#:key inputs #:allow-other-keys)
+             (let ((ncurses (assoc-ref inputs "ncurses")))
+               (substitute* "configure"
+                 (("MISC_TERMINFO_DIRS=\"\"")
+                  (string-append "MISC_TERMINFO_DIRS="
+                                 "\"" ncurses "/share/terminfo" "\"")))
+               #t))))))
     (inputs
      `(("readline" ,readline)
        ("zlib" ,zlib)



reply via email to

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