ngz pushed a commit to branch master
in repository guix.
commit 820ba95c7315467722818a2a75d8ea87e9789ab4
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Mon Aug 21 12:23:18 2023 +0200
gnu: Add texlive-gothic.
* gnu/packages/tex.scm (texlive-gothic): New variable.
---
gnu/packages/tex.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 9226429bec..d5e1b007a8 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -13441,6 +13441,39 @@ styles (which do not conform to current standards) are
retained for backwards
compatibility.")
(license license:lppl1.3c)))
+(define-public texlive-gothic
+ (package
+ (name "texlive-gothic")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/fonts/gothic/"
+ "fonts/source/public/gothic/"
+ "fonts/tfm/public/gothic/"
+ "source/fonts/gothic/")
+ (base32
+ "08hqp2a0ch67d38p2jca6cvx72vc6dagb04a9w6ff7dniqp6gps2")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ ;; FIXME: Font metrics generation fails with "! Strange path (turning
+ ;; number is zero)." error.
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (delete 'generate-font-metrics))))
+ (native-inputs (list texlive-metafont))
+ (home-page "https://ctan.org/pkg/gothic")
+ (synopsis "Collection of old German-style fonts")
+ (description
+ "This package provides a collection of fonts that reproduce those used in
+old German printing and handwriting. The set comprises Gothic, Schwabacher
+and Fraktur fonts, a pair of handwriting fonts, Sutterlin and Schwell, and
+a font containing decorative initials. In addition, there are two re-encoding
+packages for Haralambous's fonts, providing T1, using virtual fonts, and OT1
+and T1, using Metafont.")
+ ;; This is a collection of packages, with various licenses.
+ (license (list license:lppl1.2+ license:lppl1.3c license:public-domain))))
+
(define-public texlive-gotoh
(package
(name "texlive-gotoh")