[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/71: gnu: Add texlive-dvicopy-bin.
From: |
guix-commits |
Subject: |
20/71: gnu: Add texlive-dvicopy-bin. |
Date: |
Sun, 2 Jun 2024 06:21:42 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit c44fad47368f1a8de3a51480686b46fda8554020
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 16:29:53 2024 +0200
gnu: Add texlive-dvicopy-bin.
* gnu/packages/tex.scm (texlive-dvicopy-bin): New variable.
(texlive-dvicopy)[propagated-inputs]: Add TEXLIVE-DVICOPY-BIN.
Change-Id: Ib0016bbda64c7a1cb7d062b034e73acaa3c28582
---
gnu/packages/tex.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index f93c37468d..d3e32e93f6 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -34026,6 +34026,7 @@ or watermarks.")
"010bs4iyaja7mq5wy9mz6fzxlxf9472c2zdm93x9i474dzgnh2vl")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-dvicopy-bin))
(home-page "https://ctan.org/pkg/dvicopy")
(synopsis "Copy DVI files, flattening VFs")
(description
@@ -34035,6 +34036,29 @@ does not contain such references. It also serves as a
basis for writing DVI
drivers (much like DVItype).")
(license license:gpl3+)))
+(define-public texlive-dvicopy-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-dvicopy-bin")
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(delete "--enable-web2c" #$flags))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "texk/web2c"
+ (invoke "make" "dvicopy")
+ (install-file "dvicopy"
+ (string-append #$output "/bin")))))))))
+ (native-inputs (list pkg-config))
+ (home-page (package-home-page texlive-dvicopy))
+ (synopsis "Binary for @code{texlive-dvicopy}")
+ (description
+ "This package provides the binary for @code{texlive-dvicopy}.")
+ (license (package-license texlive-dvicopy))))
+
(define-public texlive-dvidvi
(package
(name "texlive-dvidvi")
- 04/71: gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE., (continued)
- 04/71: gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE., guix-commits, 2024/06/02
- 05/71: gnu: texlive-libkpathsea: Better default values in "texmf.cnf"., guix-commits, 2024/06/02
- 01/71: gnu: texlive-libkpathsea: Fix TEXMFCACHE location., guix-commits, 2024/06/02
- 06/71: gnu: texlive-luatex: Set proper default values for "texmfcnf.lua"., guix-commits, 2024/06/02
- 08/71: gnu: Add texlive-libptexenc., guix-commits, 2024/06/02
- 07/71: gnu: texlive-context: Fix "context" call., guix-commits, 2024/06/02
- 09/71: gnu: texlive-bin: Minimize build surface., guix-commits, 2024/06/02
- 10/71: gnu: tex.scm: Remove completed TODO., guix-commits, 2024/06/02
- 15/71: gnu: Add texlive-texware-bin., guix-commits, 2024/06/02
- 17/71: gnu: Add texlive-uptex-bin., guix-commits, 2024/06/02
- 20/71: gnu: Add texlive-dvicopy-bin.,
guix-commits <=
- 11/71: gnu: texlive-latex-bin: Create symlinks for "latex" variants., guix-commits, 2024/06/02
- 12/71: gnu: Add texlive-mfware-bin., guix-commits, 2024/06/02
- 13/71: gnu: Add texlive-omegaware-bin., guix-commits, 2024/06/02
- 14/71: gnu: Add texlive-fontware-bin., guix-commits, 2024/06/02
- 16/71: gnu: Add texlive-patgen-bin., guix-commits, 2024/06/02
- 18/71: gnu: Add texlive-ptex-bin., guix-commits, 2024/06/02
- 19/71: gnu: Add texlive-bibtex-bin., guix-commits, 2024/06/02
- 22/71: gnu: Add texlive-xetex-bin., guix-commits, 2024/06/02
- 24/71: gnu: Add texlive-hitex-bin., guix-commits, 2024/06/02
- 25/71: gnu: Add texlive-afm2pl-bin., guix-commits, 2024/06/02