diff options
author | Federico Beffa <beffa@fbengineering.ch> | 2015-10-17 18:11:49 +0200 |
---|---|---|
committer | Federico Beffa <beffa@fbengineering.ch> | 2015-10-17 18:15:42 +0200 |
commit | 1f7ffd6ff7eef41fb1bc29fb23a70c5feb6ea2c5 (patch) | |
tree | 4cde58461cf0cd9f92348eee2bb637f49870e48b | |
parent | 5d86684ddfe7ed27b37fa4b29c602b45756cc5be (diff) | |
download | patches-1f7ffd6ff7eef41fb1bc29fb23a70c5feb6ea2c5.tar patches-1f7ffd6ff7eef41fb1bc29fb23a70c5feb6ea2c5.tar.gz |
gnu: fastcap: Fix 'fix-doc phase.
* gnu/packages/engineering.scm (fastcap): Adapt documentation generation to
change in TeXLive 2015.
-rw-r--r-- | gnu/packages/engineering.scm | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 54e43ef0f8..3738596ded 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -265,8 +265,18 @@ optimizer; and it can produce photorealistic and design review images.") (("\\\\special\\{psfile=([^,]*),.*scale=([#0-9.]*).*\\}" all file scale) (string-append "\\includegraphics[scale=" scale "]{" - file "}"))) - (substitute* '("doc/mtt.tex" "doc/tcad.tex") + file "}")) + (("\\\\psfig\\{figure=([^,]*),.*width=([#0-9.]*in).*\\}" + all file width) + (string-append "\\includegraphics[width=" width "]{" + file "}")) + (("\\\\psfig\\{figure=([^,]*),.*height=([#0-9.]*in).*\\}" + all file height) + (string-append "\\includegraphics[height=" height "]{" + file "}")) + (("\\\\psfig\\{figure=([^,]*)\\}" all file) + (string-append "\\includegraphics{" file "}"))) + (substitute* '("doc/mtt.tex" "doc/tcad.tex" "doc/ug.tex") (("^\\\\documentstyle\\[(.*)\\]\\{(.*)\\}" all options class) (string-append "\\documentclass[" options "]{" |