diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-05-28 18:29:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:29 +0200 |
commit | 06c2c0cde536d091837370623c2792db87f3deca (patch) | |
tree | 2f9685794035e4a9f68fe406e05c8220ee6f3b8c /gnu/packages/tex.scm | |
parent | b7572bbbc6c620c7377ea411d120dd006bc2c898 (diff) | |
download | guix-06c2c0cde536d091837370623c2792db87f3deca.tar.gz |
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
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 47 |
1 files changed, 35 insertions, 12 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 382e822883..1feaa9ecf7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -34982,8 +34982,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) @@ -35006,9 +35030,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? @@ -35018,15 +35042,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 |