[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/97: gnu: Add texlive-fontware-bin.
From: |
guix-commits |
Subject: |
17/97: gnu: Add texlive-fontware-bin. |
Date: |
Fri, 21 Jun 2024 06:40:57 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 94f8803023b965c92aedc2e20ba8f22792163b42
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 16:11:20 2024 +0200
gnu: Add texlive-fontware-bin.
* gnu/packages/tex.scm (texlive-fontware-bin): New variable.
(texlive-fontware)[propagated-inputs]: Add TEXLIVE-FONTWARE-BIN.
Change-Id: I5c59658aeab1a3cb289e87f77fae9436acae8a7f
---
gnu/packages/tex.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index cb2a708888..0d652797f5 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -34825,6 +34825,7 @@ sources, and with LaTeX @file{.fd} files.")
"0ng27m6cz92aa52z99gnw5i8s8fbkxq4354mygwnchchgxndcba0")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-fontware-bin))
(home-page "https://ctan.org/pkg/vfware")
(synopsis "Tools for virtual font metrics")
(description
@@ -34836,6 +34837,30 @@ generates a VF file and a TFM file; @command{vftovp}
takes a VF file and a TFM
file and generates a VPL file.")
(license license:knuth)))
+(define-public texlive-fontware-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-fontware-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 '("pltotf" "tftopl" "vftovp" "vptovf")))
+ (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-fontware))
+ (synopsis "Binaries for @code{texlive-fontware}")
+ (description
+ "This package provides the binaries for @code{texlive-fontware}.")
+ (license (package-license texlive-fontware))))
+
(define-public texlive-forest-quickstart
(package
(name "texlive-forest-quickstart")
- 47/97: gnu: Add texlive-cjkutils-bin., (continued)
- 47/97: gnu: Add texlive-cjkutils-bin., guix-commits, 2024/06/21
- 19/97: gnu: Add texlive-patgen-bin., guix-commits, 2024/06/21
- 34/97: gnu: Add texlive-bibtex8-bin., guix-commits, 2024/06/21
- 32/97: gnu: Add texlive-pmx-bin., guix-commits, 2024/06/21
- 44/97: gnu: Add texlive-makeindex-bin., guix-commits, 2024/06/21
- 63/97: gnu: texlive-kpathsea: Propagate the binaries., guix-commits, 2024/06/21
- 68/97: gnu: texlive-ps2pk: Build binaries separately., guix-commits, 2024/06/21
- 77/97: gnu: texlive-texdirflatten: Add missing Perl input., guix-commits, 2024/06/21
- 90/97: gnu: TeX Live packages built from TEXLIVE-SOURCE use same version., guix-commits, 2024/06/21
- 92/97: gnu: texlive-scripts: Fix typo in description., guix-commits, 2024/06/21
- 17/97: gnu: Add texlive-fontware-bin.,
guix-commits <=
- 29/97: gnu: Add texlive-m-tx-bin., guix-commits, 2024/06/21
- 30/97: gnu: Add texlive-autosp-bin., guix-commits, 2024/06/21
- 48/97: gnu: Add texlive-chktex-bin., guix-commits, 2024/06/21
- 51/97: gnu: Add texlive-dvi2tty-bin., guix-commits, 2024/06/21
- 54/97: gnu: Add texlive-dvipng-bin., guix-commits, 2024/06/21
- 61/97: gnu: texlive-texdoctk: Fix runtime error., guix-commits, 2024/06/21
- 14/97: gnu: texlive-latex-bin: Create symlinks for "latex" variants., guix-commits, 2024/06/21
- 38/97: gnu: Add texlive-tex4ht-bin., guix-commits, 2024/06/21
- 40/97: gnu: Add texlive-tpic2pdftex-bin., guix-commits, 2024/06/21
- 43/97: gnu: Add texlive-gsftopk-bin., guix-commits, 2024/06/21