[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
35/66: gnu: Add texlive-tpic2pdftex-bin.
From: |
guix-commits |
Subject: |
35/66: gnu: Add texlive-tpic2pdftex-bin. |
Date: |
Wed, 29 May 2024 10:17:25 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 1118cbfaf823497cb3c522b9a70ec788d5a9fdbd
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 28 00:33:02 2024 +0200
gnu: Add texlive-tpic2pdftex-bin.
* gnu/packages/tex.scm (texlive-tpic2pdftex-bin): New variable.
(texlive-tpic2pdftex)[propagated-inputs]: Add TEXLIVE-TPIC2PDFTEX-BIN.
Change-Id: I8b48c82c8df632c8bbe2d0aac76f1a7421116c2b
---
gnu/packages/tex.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 31c77dd752..356297bf20 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -45764,6 +45764,7 @@ is planned.")
"02nf2fg4xzh8lbbddvm44qyvcvfn5b7kzcyg729a58l29gd88pbs")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-tpic2pdftex-bin))
(home-page "https://ctan.org/pkg/tpic2pdftex")
(synopsis "Use @code{tpic} commands in pdfTeX")
(description
@@ -45771,6 +45772,52 @@ is planned.")
@code{.PS} and @code{.PE} markers), to @code{\\pdfliteral} commands.")
(license license:gpl3+)))
+(define-public texlive-tpic2pdftex-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-tpic2pdftex-bin")
+ (source
+ (origin
+ (inherit texlive-source)
+ (modules '((guix build utils)
+ (ice-9 ftw)))
+ (snippet
+ #~(let ((delete-other-directories
+ (lambda (root dirs)
+ (with-directory-excursion root
+ (for-each
+ delete-file-recursively
+ (scandir "."
+ (lambda (file)
+ (and (not (member file (append '("." "..")
dirs)))
+ (eq? 'directory (stat:type (stat
file)))))))))))
+ (delete-other-directories "libs" '())
+ (delete-other-directories "utils" '("tpic2pdftex"))
+ (delete-other-directories "texk" '())))))
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons* "--enable-tpic2pdftex" (delete "--enable-web2c" #$flags)))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "utils/tpic2pdftex"
+ (invoke "make" "check")))))
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "utils/tpic2pdftex"
+ (invoke "make" "install"))))))))
+ (native-inputs '())
+ (inputs '())
+ (propagated-inputs '())
+ (home-page (package-home-page texlive-tpic2pdftex))
+ (synopsis "Binary for @code{texlive-tpic2pdftex}")
+ (description
+ "This package provides the binary for @code{texlive-tpic2pdftex}.")
+ (license (package-license texlive-tpic2pdftex))))
+
(define-public texlive-tqft
(package
(name "texlive-tqft")
- 27/66: gnu: Add texlive-pmx-bin., (continued)
- 27/66: gnu: Add texlive-pmx-bin., guix-commits, 2024/05/29
- 28/66: gnu: Add texlive-velthuis-bin., guix-commits, 2024/05/29
- 31/66: gnu: Add texlive-dvips-bin., guix-commits, 2024/05/29
- 32/66: gnu: Add texlive-psutils-bin., guix-commits, 2024/05/29
- 25/66: gnu: Add texlive-autosp-bin., guix-commits, 2024/05/29
- 29/66: gnu: Add texlive-bibtex8-bin., guix-commits, 2024/05/29
- 30/66: gnu: Add texlive-bibtexu-bin., guix-commits, 2024/05/29
- 33/66: gnu: Add texlive-tex4ht-bin., guix-commits, 2024/05/29
- 34/66: gnu: Add texlive-xdvi-bin., guix-commits, 2024/05/29
- 36/66: gnu: Add texlive-ttfutils-bin., guix-commits, 2024/05/29
- 35/66: gnu: Add texlive-tpic2pdftex-bin.,
guix-commits <=
- 37/66: gnu: Add texlive-upmendex-bin., guix-commits, 2024/05/29
- 41/66: gnu: Add texlive-vlna-bin., guix-commits, 2024/05/29
- 42/66: gnu: Add texlive-cjkutils-bin., guix-commits, 2024/05/29
- 43/66: gnu: Add texlive-chktex-bin., guix-commits, 2024/05/29
- 39/66: gnu: Add texlive-makeindex-bin., guix-commits, 2024/05/29
- 40/66: gnu: Add texlive-metapost-bin., guix-commits, 2024/05/29
- 38/66: gnu: Add texlive-gsftopk-bin., guix-commits, 2024/05/29
- 44/66: gnu: Add texlive-detex-bin., guix-commits, 2024/05/29
- 45/66: gnu: Add texlive-dtl-bin., guix-commits, 2024/05/29
- 46/66: gnu: Add texlive-dvi2tty-bin., guix-commits, 2024/05/29