From 11d0061108bd85da8064929b00373b26cf465bbe Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 28 May 2024 00:33:02 +0200 Subject: [PATCH] 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 3e2c194a91..7bd16cb17f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -45787,6 +45787,7 @@ (define-public texlive-tpic2pdftex "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 @@ -45794,6 +45795,52 @@ (define-public texlive-tpic2pdftex @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")