gnu: ncurses: support mingw.
* gnu/packages/ncurses.scm (ncurses): Support MinGW. Co-Authored-By: Jan Nieuwenhuizen <janneke@gnu.org>
This commit is contained in:
parent
7f1c32f0e6
commit
d230cf61f6
|
@ -1,9 +1,10 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2016 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2015 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2015 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
|
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -21,6 +22,7 @@
|
||||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(define-module (gnu packages ncurses)
|
(define-module (gnu packages ncurses)
|
||||||
|
#:use-module (gnu packages)
|
||||||
#:use-module (guix licenses)
|
#:use-module (guix licenses)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
@ -28,9 +30,24 @@
|
||||||
#:use-module (guix build-system perl)
|
#:use-module (guix build-system perl)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages swig))
|
#:use-module (gnu packages swig)
|
||||||
|
#:use-module (guix utils))
|
||||||
|
|
||||||
(define-public ncurses
|
(define-public ncurses
|
||||||
|
(package
|
||||||
|
(name "ncurses")
|
||||||
|
(version "6.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://gnu/ncurses/ncurses-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0q3jck7lna77z5r42f13c4xglc7azd19pxfrjrpgp2yf615w4lgm"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(outputs '("out"
|
||||||
|
"doc")) ;1 MiB of man pages
|
||||||
|
(arguments
|
||||||
(let ((patch-makefile-phase
|
(let ((patch-makefile-phase
|
||||||
'(lambda _
|
'(lambda _
|
||||||
(for-each patch-makefile-SHELL
|
(for-each patch-makefile-SHELL
|
||||||
|
@ -66,60 +83,70 @@
|
||||||
"mandir=share/man"))
|
"mandir=share/man"))
|
||||||
#t))
|
#t))
|
||||||
(post-install-phase
|
(post-install-phase
|
||||||
'(lambda* (#:key outputs #:allow-other-keys)
|
`(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
;; When building a wide-character (Unicode) build, create backward
|
;; When building a wide-character (Unicode) build, create backward
|
||||||
;; compatibility links from the the "normal" libraries to the
|
;; compatibility links from the the "normal" libraries to the
|
||||||
;; wide-character libraries (e.g. libncurses.so to libncursesw.so).
|
;; wide-character libraries (e.g. libncurses.so to libncursesw.so).
|
||||||
|
,@(if (target-mingw?)
|
||||||
|
'( ;; TODO: create .la files to link to the .dll?
|
||||||
|
(with-directory-excursion (string-append out "/bin")
|
||||||
|
(for-each
|
||||||
|
(lambda (lib)
|
||||||
|
(define lib.dll
|
||||||
|
(string-append "lib" lib ".dll"))
|
||||||
|
(define libw6.dll
|
||||||
|
(string-append "lib" lib "w6.dll"))
|
||||||
|
|
||||||
|
(when (file-exists? libw6.dll)
|
||||||
|
(format #t "creating symlinks for `lib~a'~%" lib)
|
||||||
|
(symlink libw6.dll lib.dll)))
|
||||||
|
'("curses" "ncurses" "form" "panel" "menu"))))
|
||||||
|
'())
|
||||||
(with-directory-excursion (string-append out "/lib")
|
(with-directory-excursion (string-append out "/lib")
|
||||||
(for-each (lambda (lib)
|
(for-each (lambda (lib)
|
||||||
(define libw.a
|
(define libw.a
|
||||||
(string-append "lib" lib "w.a"))
|
(string-append "lib" lib "w.a"))
|
||||||
(define lib.a
|
(define lib.a
|
||||||
(string-append "lib" lib ".a"))
|
(string-append "lib" lib ".a"))
|
||||||
(define libw.so.x
|
|
||||||
|
,@(if (not (target-mingw?))
|
||||||
|
'((define libw.so.x
|
||||||
(string-append "lib" lib "w.so.6"))
|
(string-append "lib" lib "w.so.6"))
|
||||||
(define lib.so.x
|
(define lib.so.x
|
||||||
(string-append "lib" lib ".so.6"))
|
(string-append "lib" lib ".so.6"))
|
||||||
(define lib.so
|
(define lib.so
|
||||||
(string-append "lib" lib ".so"))
|
(string-append "lib" lib ".so")))
|
||||||
|
'())
|
||||||
|
|
||||||
(when (file-exists? libw.a)
|
(when (file-exists? libw.a)
|
||||||
(format #t "creating symlinks for `lib~a'~%" lib)
|
(format #t "creating symlinks for `lib~a'~%" lib)
|
||||||
(symlink libw.a lib.a)
|
(symlink libw.a lib.a)
|
||||||
(symlink libw.so.x lib.so.x)
|
,@(if (not (target-mingw?))
|
||||||
|
'((symlink libw.so.x lib.so.x)
|
||||||
(false-if-exception (delete-file lib.so))
|
(false-if-exception (delete-file lib.so))
|
||||||
(call-with-output-file lib.so
|
(call-with-output-file lib.so
|
||||||
(lambda (p)
|
(lambda (p)
|
||||||
(format p "INPUT (-l~aw)~%" lib)))))
|
(format p "INPUT (-l~aw)~%" lib))))
|
||||||
|
'())))
|
||||||
'("curses" "ncurses" "form" "panel" "menu")))))))
|
'("curses" "ncurses" "form" "panel" "menu")))))))
|
||||||
(package
|
|
||||||
(name "ncurses")
|
|
||||||
(version "6.0")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "mirror://gnu/ncurses/ncurses-"
|
|
||||||
version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0q3jck7lna77z5r42f13c4xglc7azd19pxfrjrpgp2yf615w4lgm"))))
|
|
||||||
(build-system gnu-build-system)
|
|
||||||
(outputs '("out"
|
|
||||||
"doc")) ;1 MiB of man pages
|
|
||||||
(arguments
|
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
`("--with-shared" "--without-debug" "--enable-widec"
|
,(cons*
|
||||||
|
'quasiquote
|
||||||
|
`(("--with-shared" "--without-debug" "--enable-widec"
|
||||||
|
|
||||||
;; By default headers land in an `ncursesw' subdir, which is not
|
;; By default headers land in an `ncursesw' subdir, which is not
|
||||||
;; what users expect.
|
;; what users expect.
|
||||||
,(string-append "--includedir=" (assoc-ref %outputs "out")
|
,(list 'unquote '(string-append "--includedir=" (assoc-ref %outputs "out")
|
||||||
"/include")
|
"/include"))
|
||||||
"--enable-overwrite" ;really honor --includedir
|
"--enable-overwrite" ;really honor --includedir
|
||||||
|
|
||||||
;; Make sure programs like 'tic', 'reset', and 'clear' have a
|
;; Make sure programs like 'tic', 'reset', and 'clear' have a
|
||||||
;; correct RUNPATH.
|
;; correct RUNPATH.
|
||||||
,(string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out")
|
,(list 'unquote '(string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out")
|
||||||
"/lib"))
|
"/lib"))
|
||||||
|
;; MinGW: Use term-driver created for the MinGW port.
|
||||||
|
,@(if (target-mingw?) '("--enable-term-driver") '()))))
|
||||||
#:tests? #f ; no "check" target
|
#:tests? #f ; no "check" target
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases (modify-phases %standard-phases
|
||||||
(replace 'configure ,configure-phase)
|
(replace 'configure ,configure-phase)
|
||||||
|
@ -128,7 +155,7 @@
|
||||||
(add-before 'configure 'patch-makefile-SHELL
|
(add-before 'configure 'patch-makefile-SHELL
|
||||||
,patch-makefile-phase)
|
,patch-makefile-phase)
|
||||||
(add-after 'unpack 'remove-unneeded-shebang
|
(add-after 'unpack 'remove-unneeded-shebang
|
||||||
,remove-shebang-phase))))
|
,remove-shebang-phase)))))
|
||||||
(self-native-input? #t) ; for `tic'
|
(self-native-input? #t) ; for `tic'
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
|
@ -142,7 +169,7 @@ well as multiple highlights and forms characters. It is typically used to
|
||||||
implement user interfaces for command-line applications. The accompanying
|
implement user interfaces for command-line applications. The accompanying
|
||||||
ncursesw library provides wide character support.")
|
ncursesw library provides wide character support.")
|
||||||
(license x11)
|
(license x11)
|
||||||
(home-page "http://www.gnu.org/software/ncurses/"))))
|
(home-page "http://www.gnu.org/software/ncurses/")))
|
||||||
|
|
||||||
(define-public dialog
|
(define-public dialog
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue