mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 00:26:33 +01:00
gnu: texlive-dvipdfmx: Refresh package definition.
* gnu/packages/dvipdfmx (texlive-dvipdfmx): Remove SIMPLE-TEXLIVE-PACKAGE call.
This commit is contained in:
parent
f51751bb3d
commit
021d0216e0
1 changed files with 44 additions and 28 deletions
|
@ -837,35 +837,51 @@ (define-public texlive-hyphen-base
|
||||||
(license license:knuth)))
|
(license license:knuth)))
|
||||||
|
|
||||||
(define-public texlive-dvipdfmx
|
(define-public texlive-dvipdfmx
|
||||||
(let ((template (simple-texlive-package
|
(package
|
||||||
"texlive-dvipdfmx"
|
(name "texlive-dvipdfmx")
|
||||||
(list "doc/dvipdfm/"
|
(version (number->string %texlive-revision))
|
||||||
"doc/dvipdfmx/"
|
(source (texlive-origin
|
||||||
"doc/man/man1/"
|
name version
|
||||||
"dvipdfmx/"
|
(list "doc/dvipdfm/"
|
||||||
"fonts/cmap/dvipdfmx/"
|
"doc/dvipdfmx/"
|
||||||
"fonts/map/dvipdfmx/")
|
"doc/man/man1/dvipdfm.1"
|
||||||
(base32
|
"doc/man/man1/dvipdfm.man1.pdf"
|
||||||
"08i81hciksh0sm9pw6lw8v8s2rj92p58wd5j2mq1mzqbp171wjmr")
|
"doc/man/man1/dvipdfmx.1"
|
||||||
#:trivial? #t)))
|
"doc/man/man1/dvipdfmx.man1.pdf"
|
||||||
(package
|
"doc/man/man1/dvipdft.1"
|
||||||
(inherit template)
|
"doc/man/man1/dvipdft.man1.pdf"
|
||||||
(source
|
"doc/man/man1/ebb.1"
|
||||||
(origin
|
"doc/man/man1/ebb.man1.pdf"
|
||||||
(inherit (package-source template))
|
"doc/man/man1/extractbb.1"
|
||||||
;; This map file is supposed to be generated in a profile hook.
|
"doc/man/man1/extractbb.man1.pdf"
|
||||||
(snippet '(delete-file "fonts/map/dvipdfmx/updmap/kanjix.map"))))
|
"doc/man/man1/xdvipdfmx.1"
|
||||||
(propagated-inputs (list texlive-glyphlist))
|
"doc/man/man1/xdvipdfmx.man1.pdf"
|
||||||
(home-page "https://www.tug.org/texlive/")
|
"dvipdfmx/"
|
||||||
(synopsis "Extended version of dvipdfm")
|
"fonts/cmap/dvipdfmx/"
|
||||||
(description
|
"fonts/map/dvipdfmx/")
|
||||||
"Dvipdfmx (formerly dvipdfm-cjk) is a development of dvipdfm created to
|
(base32
|
||||||
|
"16qvi1id9qb8l337kl182qkl1di7wf16qbjw5k67x38g3p18qqna")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
|
(build-system texlive-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'delete-map-file
|
||||||
|
;; This map file is supposed to be generated in a profile hook.
|
||||||
|
(lambda _
|
||||||
|
(delete-file "fonts/map/dvipdfmx/updmap/kanjix.map"))))))
|
||||||
|
(propagated-inputs (list texlive-glyphlist))
|
||||||
|
(home-page "https://ctan.org/pkg/dvipdfmx")
|
||||||
|
(synopsis "Extended version of dvipdfm")
|
||||||
|
(description
|
||||||
|
"Dvipdfmx (formerly dvipdfm-cjk) is a development of dvipdfm created to
|
||||||
support multi-byte character encodings and large character sets for East Asian
|
support multi-byte character encodings and large character sets for East Asian
|
||||||
languages. Dvipdfmx, if \"called\" with the name dvipdfm, operates in a
|
languages. Dvipdfmx, if called with the name dvipdfm, operates in a dvipdfm
|
||||||
\"dvipdfm compatibility\" mode, so that users of the both packages need only
|
compatibility mode, so that users of the both packages need only keep one
|
||||||
keep one executable. A secondary design goal is to support as many \"PDF\"
|
executable. A secondary design goal is to support as many PDF features as
|
||||||
features as does pdfTeX.")
|
does pdfTeX.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public texlive-dvips
|
(define-public texlive-dvips
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue