Hi,
Thanks for your reply:
Quote:
Originally Posted by Alien_Hominid
Do you have texinfo?
|
I do, but the ffmpeg-users have shown me what
should be going on:
Code:
root@ilium/home/andrew/source/ffmpeg/ffmpeg-20080223# make -n documentation
texi2html -monolithic -number doc/ffmpeg-doc.texi
mv ffmpeg-doc.html doc/ffmpeg-doc.html
texi2html -monolithic -number doc/faq.texi
mv faq.html doc/faq.html
texi2html -monolithic -number doc/ffserver-doc.texi
mv ffserver-doc.html doc/ffserver-doc.html
texi2html -monolithic -number doc/ffplay-doc.texi
mv ffplay-doc.html doc/ffplay-doc.html
texi2html -monolithic -number doc/general.texi
mv general.html doc/general.html
texi2html -monolithic -number doc/hooks.texi
mv hooks.html doc/hooks.html
doc/texi2pod.pl doc/ffmpeg-doc.texi doc/ffmpeg.pod
pod2man --section=1 --center=" " --release=" " doc/ffmpeg.pod > doc/ffmpeg.1
doc/texi2pod.pl doc/ffplay-doc.texi doc/ffplay.pod
pod2man --section=1 --center=" " --release=" " doc/ffplay.pod > doc/ffplay.1
doc/texi2pod.pl doc/ffserver-doc.texi doc/ffserver.pod
pod2man --section=1 --center=" " --release=" " doc/ffserver.pod > doc/ffserver.1
rm doc/ffserver.pod doc/ffplay.pod doc/ffmpeg.pod
Oddly enough I have texi2html and pod2man and I can accomplish the above manually but not automatically with make.
Edit:: Wooo hooo!!! Solved!!! pod2man was on my path but texi2html was squirreled away in /usr/share/texmf/bin/texi2html and not in roots path. This halted the whole generation of html docs and man pages, without error. All fixed now.
This might explain why the html docs were not added to the slackbuilds script, as they were not generated in the first place :-)
Andrew