mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 02:07:56 +01:00
gnu: Add texlive-pkfix-helper.
* gnu/packages/tex.scm (texlive-pkfix-helper): New variable.
This commit is contained in:
parent
4061203dd5
commit
bb5263af7c
1 changed files with 31 additions and 0 deletions
|
@ -3169,6 +3169,37 @@ (define-public texlive-pkfix
|
|||
1 versions of the fonts, if possible.")
|
||||
(license license:lppl1.3+)))
|
||||
|
||||
(define-public texlive-pkfix-helper
|
||||
(package
|
||||
(name "texlive-pkfix-helper")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/man/man1/pkfix-helper.1"
|
||||
"doc/man/man1/pkfix-helper.man1.pdf"
|
||||
"doc/support/pkfix-helper/"
|
||||
"scripts/pkfix-helper/")
|
||||
(base32
|
||||
"0vq52g65an1v9g0kdhsy0xpsf1hj69gl4cr5aq1m816i8ahhzxxy")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:link-scripts #~(list "pkfix-helper")))
|
||||
(inputs (list perl))
|
||||
(home-page "https://ctan.org/pkg/pkfix-helper")
|
||||
(synopsis "Make PostScript files accessible to pkfix")
|
||||
(description
|
||||
"Pkfix is a useful utility for replacing resolution-dependent bitmapped
|
||||
fonts in a dvips-produced PostScript file with the corresponding
|
||||
resolution-independent vector fonts. Unfortunately, @command{pkfix} needs to
|
||||
parse certain PostScript comments that appear only in files produced by dvips
|
||||
versions later than 5.58 (circa 1996); it fails to work on PostScript files
|
||||
produced by older versions of dvips. Pkfix-helper is a program that attempts
|
||||
to insert newer-dvips comments into an older-dvips PostScript file, thereby
|
||||
making the file suitable for processing by @command{pkfix}.
|
||||
@command{pkfix-helper} can sometimes process documents fully autonomously but
|
||||
does require the user to verify and, if needed, correct its decisions.")
|
||||
(license license:lppl1.3c)))
|
||||
|
||||
(define-public texlive-tex-ini-files
|
||||
(package
|
||||
(name "texlive-tex-ini-files")
|
||||
|
|
Loading…
Reference in a new issue