summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Savchenko <bircoph@gmail.com>2015-09-26 11:35:55 +0300
committerAndrew Savchenko <bircoph@gmail.com>2015-09-26 11:44:29 +0300
commit1da3f352e7d9997c803e224e081ef40503057f5f (patch)
treef4c7543d09006759c998eb2444b95b298e14df61 /app-doc/root-docs/files
parentsci-physics/root: remove old version (diff)
downloadgentoo-1da3f352e7d9997c803e224e081ef40503057f5f.tar.gz
gentoo-1da3f352e7d9997c803e224e081ef40503057f5f.tar.bz2
gentoo-1da3f352e7d9997c803e224e081ef40503057f5f.zip
app-doc/root-docs: remove old version and related patches
Diffstat (limited to 'app-doc/root-docs/files')
-rw-r--r--app-doc/root-docs/files/root-docs-5.32-makehtml.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/app-doc/root-docs/files/root-docs-5.32-makehtml.patch b/app-doc/root-docs/files/root-docs-5.32-makehtml.patch
deleted file mode 100644
index 5cad0102a4fa..000000000000
--- a/app-doc/root-docs/files/root-docs-5.32-makehtml.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- root/Makefile.orig 2012-05-23 21:07:07.000000000 +0400
-+++ root/Makefile 2012-05-23 22:47:48.935680301 +0400
-@@ -1039,8 +1039,7 @@
- releasenotes:
- @$(MAKERELNOTES)
-
--html: $(ROOTEXE) changelog releasenotes
-- @$(MAKELOGHTML)
-+html: compiledata releasenotes
- @$(MAKEHTML)
-
- # Use DESTDIR to set a sandbox prior to calling "make install", e.g.:
---- root/build/unix/makehtml.sh.orig 2012-06-18 06:44:59.000000000 +0400
-+++ root/build/unix/makehtml.sh 2012-06-18 19:39:41.262064654 +0400
-@@ -1,17 +1,17 @@
- #! /bin/sh
-
--ROOT=bin/root.exe
-+ROOT=root.exe
-
- dir=`pwd`
- cd tutorials
- # we need tutorials/hsimple.root
- if [ ! -f hsimple.root ]; then
-- $ROOT -l -b -q hsimple.C
-+ $ROOT -l -b -q hsimple.C && exit 1
- fi
- cd tree
- # we need tutorials/tree/cernstaff.root
- if [ ! -f cernstaff.root ]; then
-- $ROOT -l -b -q cernbuild.C
-+ $ROOT -l -b -q cernbuild.C || exit 1
- fi
- cd $dir
-
-@@ -19,7 +19,7 @@
- echo "Generating doc in directory htmldoc/..."
- echo ""
-
--$ROOT -l <<makedoc
-+$ROOT -l <<makedoc || exit 1
- THtml h;
- h.LoadAllLibs();
- h.MakeAll();