ngz pushed a commit to branch tex-team
in repository guix.

commit 542da13a5c6229b079d0fc5348e2da3f54b8939d
Author: Nicolas Goaziou <m...@nicolasgoaziou.fr>
AuthorDate: Tue May 28 18:29:02 2024 +0200

    gnu: texlive-dviout-util: Build binaries separately.
    
    * gnu/packages/tex.scm (texlive-dviout-util-bin): New variable.
    (texlive-dviout-util): Do not inherit from TEXLIVE-BIN.  Make it a regular 
TeX
    Live package instead.
    [source]: Use TEXLIVE-ORIGIN.
    [arguments]: Remove it.
    [propagated-inputs]: Add TEXLIVE-DVIOUT-UTIL-BIN.
    
    Change-Id: Id6c82baf15df8d253cd15aa6bd31d2d1e707c5fd
---
 gnu/packages/tex.scm | 47 +++++++++++++++++++++++++++++++++++------------
 1 file changed, 35 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 9f39f9285d..c41772317b 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -34967,8 +34967,32 @@ file.  It also supports XeTeX XDV format.")
 
 (define-public texlive-dviout-util
   (package
-    (inherit texlive-bin)
     (name "texlive-dviout-util")
+    (version (number->string %texlive-revision))
+    (source (texlive-origin
+             name version
+             (list "doc/man/man1/chkdvifont.1"
+                   "doc/man/man1/chkdvifont.man1.pdf"
+                   "doc/man/man1/dvispc.1"
+                   "doc/man/man1/dvispc.man1.pdf")
+             (base32
+              "098pksgf2iamq96rmzg5fw7i9dlpvdksficsz1bf8k8z4djnbk8n")))
+    (outputs '("out" "doc"))
+    (build-system texlive-build-system)
+    (propagated-inputs (list texlive-dviout-util-bin))
+    (home-page "https://www.tug.org/texlive/";)
+    (synopsis "Utilities from the @code{dviout} package")
+    (description
+     "This package provides two utilities: @command{chkdvifont}, which check
+fonts in DVI/TFM/JFM/FONT files, and @command{dvispc}, which corrects the
+page-independence of DVI file using color specials or tpic specials, and
+transforms between a DVI file and a text file.")
+    (license license:expat)))
+
+(define-public texlive-dviout-util-bin
+  (package
+    (inherit texlive-bin)
+    (name "texlive-dviout-util-bin")
     (source
      (origin
        (inherit texlive-source)
@@ -34991,9 +35015,9 @@ file.  It also supports XeTeX XDV format.")
     (arguments
      (substitute-keyword-arguments (package-arguments texlive-bin)
        ((#:configure-flags flags)
-        #~(cons* "--enable-dviout-util" (delete "--enable-web2c" #$flags)))
-       ((#:phases _)
-        #~(modify-phases %standard-phases
+        #~(cons "--enable-dviout-util" (delete "--enable-web2c" #$flags)))
+       ((#:phases phases)
+        #~(modify-phases #$phases
             (replace 'check
               (lambda* (#:key tests? #:allow-other-keys)
                 (when tests?
@@ -35003,15 +35027,14 @@ file.  It also supports XeTeX XDV format.")
               (lambda _
                 (with-directory-excursion "texk/dviout-util"
                   (invoke "make" "install"))))))))
-    (inputs (list texlive-libptexenc))
-    (home-page "https://www.tug.org/texlive/";)
-    (synopsis "Utilities from the @code{dviout} package")
+    (native-inputs (list pkg-config))
+    (inputs (list texlive-libkpathsea texlive-libptexenc))
+    (propagated-inputs '())
+    (home-page (package-home-page texlive-dviout-util))
+    (synopsis "Binary for @code{texlive-dviout-util}")
     (description
-     "This package provides two utilities: @command{chkdvifont}, which check
-fonts in DVI/TFM/JFM/FONT files, and @command{dvispc}, which corrects the
-page-independence of DVI file using color specials or tpic specials, and
-transforms between a DVI file and a text file.")
-    (license license:expat)))
+     "This package provides the binary for @code{texlive-dviout-util}.")
+    (license (package-license texlive-dviout-util))))
 
 (define-public texlive-dvipng
   (package

Reply via email to