[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/75: gnu: Add texlive-omegaware-bin.
From: |
guix-commits |
Subject: |
15/75: gnu: Add texlive-omegaware-bin. |
Date: |
Mon, 10 Jun 2024 12:24:30 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 8690f1f346ffbd793c92b5fc0ad0f3594cc50b66
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 16:09:34 2024 +0200
gnu: Add texlive-omegaware-bin.
* gnu/packages/tex.scm (texlive-omegaware-bin): New variable.
(texlive-omegaware)[propagated-inputs]: Add TEXLIVE-OMEGAWARE-BIN.
[synopsis, description]: Improve text.
Change-Id: I472a258799d423c66abc5222ae6ce047ac1e6055
---
gnu/packages/tex.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 44 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index c38af6d5e2..31e016c7b6 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -24187,12 +24187,54 @@ LuaTeX.")
"06kzz0342h6vvc32ydrzgpqsdqv5l0jbd5finr43fmzqi5jnswil")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-omegaware-bin))
(home-page "https://ctan.org/pkg/omega")
- (synopsis "Documentation for Omega executables")
+ (synopsis "Wide-character-set extension of TeX")
(description
- "This package provides the documentation for Omega executables.")
+ "This package provides a development of TeX, which deals in multi-octet
+Unicode characters, to enable native treatment of a wide range of languages
+without changing character-set. Work on Omega has ceased (the TeX Live
+package contains only support files); its compatible successor is Aleph, which
+is itself also in major maintenance mode only. Ongoing projects developing
+Omega (and Aleph) ideas include Omega-2 and LuaTeX.")
(license license:gpl3+)))
+(define-public texlive-omegaware-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-omegaware-bin")
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(delete "--enable-web2c" #$flags))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'install
+ (lambda _
+ (let ((bin (string-append #$output "/bin")))
+ (with-directory-excursion "texk/web2c"
+ (let ((files '("odvicopy" "odvitype""otangle" "wofm2opl"
+ "wopl2ofm" "wovf2ovp")))
+ (for-each (lambda (t) (invoke "make" t)) files)
+ (for-each (lambda (f) (install-file f bin)) files))
+ (with-directory-excursion "omegafonts"
+ (invoke "make" "omfonts")
+ (install-file "omfonts" bin))
+ (with-directory-excursion "otps"
+ (for-each (lambda (t)
+ (invoke "make" t)
+ (install-file t bin))
+ '("otp2ocp" "outocp"))))
+ (with-directory-excursion bin
+ (for-each (lambda (l) (symlink "omfonts" l))
+ '("ofm2opl" "opl2ofm" "ovf2ovp"
"ovp2ovf"))))))))))
+ (native-inputs (list pkg-config))
+ (home-page (package-home-page texlive-omegaware))
+ (synopsis "Binaries for @code{texlive-omegaware}")
+ (description
+ "This package provides the binaries for @code{texlive-omegaware}.")
+ (license (package-license texlive-omegaware))))
+
(define-public texlive-onrannual
(package
(name "texlive-onrannual")
- 03/75: gnu: Add texlive-source., (continued)
- 03/75: gnu: Add texlive-source., guix-commits, 2024/06/10
- 06/75: gnu: texlive-luatex: Set proper default values for "texmfcnf.lua"., guix-commits, 2024/06/10
- 05/75: gnu: texlive-libkpathsea: Better default values in "texmf.cnf"., guix-commits, 2024/06/10
- 07/75: gnu: texlive-context: Fix "context" call., guix-commits, 2024/06/10
- 08/75: gnu: Add texlive-libptexenc., guix-commits, 2024/06/10
- 10/75: gnu: tex.scm: Remove completed TODO., guix-commits, 2024/06/10
- 04/75: gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE., guix-commits, 2024/06/10
- 09/75: gnu: texlive-bin: Minimize build surface., guix-commits, 2024/06/10
- 11/75: gnu: texlive-xcjk2uni: Fix build., guix-commits, 2024/06/10
- 13/75: gnu: texlive-latex-bin: Create symlinks for "latex" variants., guix-commits, 2024/06/10
- 15/75: gnu: Add texlive-omegaware-bin.,
guix-commits <=
- 17/75: gnu: Add texlive-texware-bin., guix-commits, 2024/06/10
- 20/75: gnu: Add texlive-ptex-bin., guix-commits, 2024/06/10
- 14/75: gnu: Add texlive-mfware-bin., guix-commits, 2024/06/10
- 12/75: gnu: texlive-luatex: Fix build., guix-commits, 2024/06/10
- 16/75: gnu: Add texlive-fontware-bin., guix-commits, 2024/06/10
- 19/75: gnu: Add texlive-uptex-bin., guix-commits, 2024/06/10
- 18/75: gnu: Add texlive-patgen-bin., guix-commits, 2024/06/10
- 21/75: gnu: Add texlive-bibtex-bin., guix-commits, 2024/06/10
- 22/75: gnu: Add texlive-dvicopy-bin., guix-commits, 2024/06/10
- 25/75: gnu: Add texlive-aleph-bin., guix-commits, 2024/06/10