[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
36/73: gnu: Add texlive-xdvi-bin.
From: |
guix-commits |
Subject: |
36/73: gnu: Add texlive-xdvi-bin. |
Date: |
Tue, 4 Jun 2024 16:39:59 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 0ae5512232728a9382592d15cf62a4595df682de
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 28 00:22:08 2024 +0200
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
---
gnu/packages/tex.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index eda83f8f83..3fa121f384 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -74757,6 +74757,7 @@ itself may be shipped out to the DVI file.")
"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
@@ -74766,6 +74767,53 @@ that it will build with web2c out of the box.")
;; 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")
- 16/73: gnu: Add texlive-patgen-bin., (continued)
- 16/73: gnu: Add texlive-patgen-bin., guix-commits, 2024/06/04
- 18/73: gnu: Add texlive-ptex-bin., guix-commits, 2024/06/04
- 22/73: gnu: Add texlive-xetex-bin., guix-commits, 2024/06/04
- 24/73: gnu: Add texlive-hitex-bin., guix-commits, 2024/06/04
- 25/73: gnu: Add texlive-afm2pl-bin., guix-commits, 2024/06/04
- 26/73: gnu: Add texlive-m-tx-bin., guix-commits, 2024/06/04
- 27/73: gnu: Add texlive-autosp-bin., guix-commits, 2024/06/04
- 28/73: gnu: Add texlive-gregoriotex-bin., guix-commits, 2024/06/04
- 30/73: gnu: Add texlive-velthuis-bin., guix-commits, 2024/06/04
- 33/73: gnu: Add texlive-dvips-bin., guix-commits, 2024/06/04
- 36/73: gnu: Add texlive-xdvi-bin.,
guix-commits <=
- 37/73: gnu: Add texlive-tpic2pdftex-bin., guix-commits, 2024/06/04
- 38/73: gnu: Add texlive-ttfutils-bin., guix-commits, 2024/06/04
- 42/73: gnu: Add texlive-metapost-bin., guix-commits, 2024/06/04
- 45/73: gnu: Add texlive-chktex-bin., guix-commits, 2024/06/04
- 47/73: gnu: Add texlive-dtl-bin., guix-commits, 2024/06/04
- 52/73: gnu: Add texlive-dvisvgm-bin., guix-commits, 2024/06/04
- 50/73: gnu: Add texlive-dviljk-bin., guix-commits, 2024/06/04
- 49/73: gnu: Add texlive-dvidvi-bin., guix-commits, 2024/06/04
- 60/73: gnu: texlive-kpathsea: Propagate the binaries., guix-commits, 2024/06/04
- 59/73: gnu: Add texlive-xpdfopen-bin., guix-commits, 2024/06/04