gnu: texlive-latex-oberdiek: Build ifpdf package.
* gnu/packages/tex.scm (texlive-latex-oberdiek)[arguments]: Only build the "oberdiek.ins" package (which includes all other packages); patch file to build "ifpdf.dtx" instead of "ifpdf.ins".
This commit is contained in:
parent
702f23b3b8
commit
05d28068ed
|
@ -1022,13 +1022,14 @@ nameref packages, which make use of the facilities of hyperref.")
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tex-directory "latex/oberdiek"
|
'(#:tex-directory "latex/oberdiek"
|
||||||
|
#:build-targets '("oberdiek.ins")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
;; "ifpdf.ins" is not generated, so we cannot process it.
|
;; "ifpdf.ins" is not generated, so we need to process the dtx file.
|
||||||
(add-after 'unpack 'do-not-process-ifpdf.ins
|
(add-after 'unpack 'do-not-process-ifpdf.ins
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "oberdiek.ins"
|
(substitute* "oberdiek.ins"
|
||||||
(("\\\\batchinput\\{ifpdf.ins\\}") ""))
|
(("ifpdf.ins") "ifpdf.dtx"))
|
||||||
#t)))))
|
#t)))))
|
||||||
(home-page "http://www.ctan.org/pkg/oberdiek")
|
(home-page "http://www.ctan.org/pkg/oberdiek")
|
||||||
(synopsis "Bundle of packages submitted by Heiko Oberdiek")
|
(synopsis "Bundle of packages submitted by Heiko Oberdiek")
|
||||||
|
|
Loading…
Reference in New Issue