[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/66: gnu: Add texlive-mfware-bin.
From: |
guix-commits |
Subject: |
10/66: gnu: Add texlive-mfware-bin. |
Date: |
Wed, 29 May 2024 10:17:15 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 7a32dec610f539d8f439eb39bc1a9ff3f60e5420
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 15:27:49 2024 +0200
gnu: Add texlive-mfware-bin.
* gnu/packages/tex.scm (texlive-mfware-bin): New variable.
(texlive-mfware)[propagated-inputs]: Add TEXLIVE-MFWARE-BIN.
(texlive-cm)[arguments]<#:phases>: Call `gftopk' binary from
TEXLIVE-MFWARE-BIN.
[native-inputs]: Add TEXLIVE-MFWARE-BIN.
Change-Id: Ic1aaa377fd7137794ff7705a42a4cb69e48f74f5
---
gnu/packages/tex.scm | 36 +++++++++++++++++++++++++++++++++---
1 file changed, 33 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 3d3d15c10b..13e0996705 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -39749,17 +39749,21 @@ part of the cite bundle of the author's
citation-related packages.")
(let* ((cwd (getcwd))
(pkdir
(string-append cwd "/fonts/pk/ljfour/public/cm/dpi600"))
- (build-dir (string-append cwd "/build")))
+ (build-dir (string-append cwd "/build"))
+ (gftopk
+ (string-append
+ #$(this-package-native-input "texlive-mfware-bin")
+ "/bin/gftopk")))
(with-directory-excursion "fonts/source/public/cm/"
(mkdir-p pkdir)
(for-each
(lambda (font)
(let ((font-name (basename font ".mf")))
- (invoke "gftopk"
+ (invoke gftopk
(string-append build-dir "/" font-name ".600gf")
(string-append pkdir "/" font-name ".pk"))))
(find-files "." "cm(.*[0-9]+.*|inch)\\.mf$")))))))))
- (native-inputs (list texlive-metafont))
+ (native-inputs (list texlive-metafont texlive-mfware-bin))
(home-page "https://ctan.org/pkg/cm")
(synopsis "Computer Modern fonts for TeX")
(description
@@ -40805,6 +40809,7 @@ Taco Hoekwater.")
"0l0xy2zl7yzb14wbzsg4sz5bdj22ggqlsw54d0yrm430wlr1s6sd")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-mfware-bin))
(home-page "https://ctan.org/pkg/mfware")
(synopsis "Supporting tools for use with Metafont")
(description
@@ -40812,6 +40817,31 @@ Taco Hoekwater.")
processing the output of Metafont.")
(license license:public-domain)))
+(define-public texlive-mfware-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-mfware-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"
+ (let ((bin (string-append #$output "/bin"))
+ (files '("gftodvi" "gftopk" "gftype" "mft" "pktogf"
+ "pktype")))
+ (for-each (lambda (f) (invoke "make" f)) files)
+ (for-each (lambda (f) (install-file f bin)) files)))))))))
+ (native-inputs (list pkg-config))
+ (home-page (package-home-page texlive-mfware))
+ (synopsis "Binaries for @code{texlive-mfware}")
+ (description
+ "This package provides the binaries for @code{texlive-mfware}.")
+ (license (package-license texlive-mfware))))
+
(define-public texlive-milsymb
(package
(name "texlive-milsymb")
- branch tex-team created (now 6ea0d05bee), guix-commits, 2024/05/29
- 03/66: gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE., guix-commits, 2024/05/29
- 01/66: gnu: texlive-libkpathsea: Fix TEXMFCACHE location., guix-commits, 2024/05/29
- 02/66: gnu: Add texlive-source., guix-commits, 2024/05/29
- 04/66: gnu: texlive-libkpathsea: Better default values in "texmf.cnf"., guix-commits, 2024/05/29
- 05/66: gnu: texlive-luatex: Set proper default values for "texmfcnf.lua"., guix-commits, 2024/05/29
- 06/66: gnu: texlive-context: Fix "context" call., guix-commits, 2024/05/29
- 07/66: gnu: Add texlive-libptexenc., guix-commits, 2024/05/29
- 09/66: gnu: tex.scm: Remove completed TODO., guix-commits, 2024/05/29
- 10/66: gnu: Add texlive-mfware-bin.,
guix-commits <=
- 14/66: gnu: Add texlive-patgen-bin., guix-commits, 2024/05/29
- 12/66: gnu: Add texlive-fontware-bin., guix-commits, 2024/05/29
- 13/66: gnu: Add texlive-texware-bin., guix-commits, 2024/05/29
- 08/66: gnu: texlive-bin: Minimize build surface., guix-commits, 2024/05/29
- 11/66: gnu: Add texlive-omegaware-bin., guix-commits, 2024/05/29
- 17/66: gnu: Add texlive-bibtex-bin., guix-commits, 2024/05/29
- 18/66: gnu: Add texlive-dvicopy-bin., guix-commits, 2024/05/29
- 21/66: gnu: Add texlive-aleph-bin., guix-commits, 2024/05/29
- 15/66: gnu: Add texlive-uptex-bin., guix-commits, 2024/05/29
- 19/66: gnu: Add texlive-dvipdfmx-bin., guix-commits, 2024/05/29