mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add texlive-xdvi-bin.
* gnu/packages/tex.scm (texlive-xdvi-bin): New variable. (texlive-xdvi)[propagated-inputs]: Add TEXLIVE-XDVI-BIN. Change-Id: I305992d58740cf23e89aa175fa81109fa1923f04
This commit is contained in:
parent
ac9798bf4b
commit
cde7374a9e
1 changed files with 48 additions and 0 deletions
|
@ -74787,6 +74787,7 @@ (define-public texlive-xdvi
|
|||
"1iidl3876vyi9k2dyfwd73q5kb53kwckivfyvvxh953n4axbqmi4")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(propagated-inputs (list texlive-xdvi-bin))
|
||||
(home-page "https://ctan.org/pkg/xdvi")
|
||||
(synopsis "DVI previewer for the X Window System")
|
||||
(description
|
||||
|
@ -74796,6 +74797,53 @@ (define-public texlive-xdvi
|
|||
;; Xdvi is under MIT terms, whereas Xdvik extensions use BS2-2.
|
||||
(license (list license:expat license:bsd-2))))
|
||||
|
||||
(define-public texlive-xdvi-bin
|
||||
(package
|
||||
(inherit texlive-bin)
|
||||
(name "texlive-xdvi-bin")
|
||||
(source
|
||||
(origin
|
||||
(inherit texlive-source)
|
||||
(modules '((guix build utils)
|
||||
(ice-9 ftw)))
|
||||
(snippet
|
||||
#~(let ((delete-other-directories
|
||||
(lambda (root dirs)
|
||||
(with-directory-excursion root
|
||||
(for-each
|
||||
delete-file-recursively
|
||||
(scandir "."
|
||||
(lambda (file)
|
||||
(and (not (member file (append '("." "..") dirs)))
|
||||
(eq? 'directory (stat:type (stat file)))))))))))
|
||||
(delete-other-directories "libs" '())
|
||||
(delete-other-directories "utils" '())
|
||||
(delete-other-directories "texk" '("xdvik"))))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments texlive-bin)
|
||||
((#:configure-flags flags)
|
||||
#~(cons "--enable-xdvik" (delete "--enable-web2c" #$flags)))
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(with-directory-excursion "texk/xdvik"
|
||||
(invoke "make" "check")))))
|
||||
(replace 'install
|
||||
(lambda* (#:key inputs native-inputs #:allow-other-keys)
|
||||
(mkdir-p (string-append #$output "/bin"))
|
||||
(with-directory-excursion "texk/xdvik"
|
||||
(invoke "make" "install"))))))))
|
||||
(native-inputs (list pkg-config))
|
||||
(inputs (list freetype ghostscript libxaw texlive-libkpathsea))
|
||||
(propagated-inputs '())
|
||||
(home-page (package-home-page texlive-xdvi))
|
||||
(synopsis "Binaries for @code{texlive-xdvi}}")
|
||||
(description
|
||||
"This package provides the binaries for @code{texlive-xdvi}}.")
|
||||
(license (package-license texlive-xdvi))))
|
||||
|
||||
(define-public texlive-xetexconfig
|
||||
(package
|
||||
(name "texlive-xetexconfig")
|
||||
|
|
Loading…
Reference in a new issue