PageRenderTime 50ms CodeModel.GetById 26ms RepoModel.GetById 1ms app.codeStats 0ms

/sci-physics/root/files/root-5.32.00-htmldoc.patch

https://bitbucket.org/sebasguts/lmnd-prefix-wip
Patch | 50 lines | 46 code | 4 blank | 0 comment | 0 complexity | 8564f2c0475738c836cfed2ec95443d7 MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause, AGPL-1.0, LGPL-2.1, MIT, Unlicense, LGPL-2.0, GPL-3.0, GPL-2.0, LGPL-3.0, AGPL-3.0, MPL-2.0-no-copyleft-exception, CC0-1.0
  1. --- root/Makefile.orig 2012-05-23 21:07:07.000000000 +0400
  2. +++ root/Makefile 2012-05-23 22:47:48.935680301 +0400
  3. @@ -1039,8 +1039,7 @@
  4. releasenotes:
  5. @$(MAKERELNOTES)
  6. -html: $(ROOTEXE) changelog releasenotes
  7. - @$(MAKELOGHTML)
  8. +html: $(ROOTEXE) releasenotes
  9. @$(MAKEHTML)
  10. # Use DESTDIR to set a sandbox prior to calling "make install", e.g.:
  11. --- root/build/unix/makehtml.sh.orig 2012-05-23 23:25:45.000000000 +0400
  12. +++ root/build/unix/makehtml.sh 2012-05-24 13:04:43.919062126 +0400
  13. @@ -6,12 +6,12 @@
  14. cd tutorials
  15. # we need tutorials/hsimple.root
  16. if [ ! -f hsimple.root ]; then
  17. - $ROOT -l -b -q hsimple.C
  18. + ../$ROOT -l -b -q hsimple.C && exit 1
  19. fi
  20. cd tree
  21. # we need tutorials/tree/cernstaff.root
  22. if [ ! -f cernstaff.root ]; then
  23. - $ROOT -l -b -q cernbuild.C
  24. + ../../$ROOT -l -b -q cernbuild.C || exit 1
  25. fi
  26. cd $dir
  27. @@ -19,7 +19,7 @@
  28. echo "Generating doc in directory htmldoc/..."
  29. echo ""
  30. -$ROOT -l <<makedoc
  31. +$ROOT -l <<makedoc || exit 1
  32. THtml h;
  33. h.LoadAllLibs();
  34. h.MakeAll();
  35. --- root/html/src/THtml.cxx.orig 2012-05-25 16:18:10.000000000 +0400
  36. +++ root/html/src/THtml.cxx 2012-05-29 19:22:40.810563296 +0400
  37. @@ -1913,6 +1913,9 @@
  38. void THtml::CreateStyleSheet() const {
  39. // Write the default ROOT style sheet.
  40. CopyFileFromEtcDir("ROOT.css");
  41. + CopyFileFromEtcDir("info.png");
  42. + CopyFileFromEtcDir("root-banner.png");
  43. + CopyFileFromEtcDir("rootdrawing-logo.png");
  44. CopyFileFromEtcDir("shadowAlpha.png");
  45. CopyFileFromEtcDir("shadow.gif");
  46. }