diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-07-22 20:34:45 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-07-22 20:34:45 +0000 |
commit | 65e298dccdf0624be6215913d1bbaf799c514eaf (patch) | |
tree | dcaea119481fafb070bd486c329ba9cb8e3c9944 /app-doc | |
parent | Imported from science overlay. Added a patch from fedora for glib-2.16. Chang... (diff) | |
download | gentoo-2-65e298dccdf0624be6215913d1bbaf799c514eaf.tar.gz gentoo-2-65e298dccdf0624be6215913d1bbaf799c514eaf.tar.bz2 gentoo-2-65e298dccdf0624be6215913d1bbaf799c514eaf.zip |
imported from science overlay
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/root-docs/ChangeLog | 9 | ||||
-rw-r--r-- | app-doc/root-docs/files/root-docs-5.34.01-makehtml.patch | 51 | ||||
-rw-r--r-- | app-doc/root-docs/root-docs-5.34.01.ebuild (renamed from app-doc/root-docs/root-docs-5.34.00.ebuild) | 4 |
3 files changed, 61 insertions, 3 deletions
diff --git a/app-doc/root-docs/ChangeLog b/app-doc/root-docs/ChangeLog index 045765968a36..911cfdbbcaaa 100644 --- a/app-doc/root-docs/ChangeLog +++ b/app-doc/root-docs/ChangeLog @@ -1,7 +1,14 @@ # ChangeLog for app-doc/root-docs # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/root-docs/ChangeLog,v 1.24 2012/07/15 09:36:36 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/root-docs/ChangeLog,v 1.25 2012/07/22 20:34:45 bicatali Exp $ +*root-docs-5.34.01 (22 Jul 2012) + + 22 Jul 2012; Andrew Savchenko <bircoph@gmail.com> +root-docs-5.34.01.ebuild, + +files/root-docs-5.34.01-makehtml.patch, root-docs-9999.ebuild, + -files/root-docs-9999-makehtml.patch: + Version bump. + 15 Jul 2012; Justin Lecher <jlec@gentoo.org> -root-docs-5.26.00.ebuild, -root-docs-5.28-r1.ebuild: Cleaned old diff --git a/app-doc/root-docs/files/root-docs-5.34.01-makehtml.patch b/app-doc/root-docs/files/root-docs-5.34.01-makehtml.patch new file mode 100644 index 000000000000..b339226c83d1 --- /dev/null +++ b/app-doc/root-docs/files/root-docs-5.34.01-makehtml.patch @@ -0,0 +1,51 @@ +--- root/Makefile.orig 2012-07-13 13:42:46.000000000 +0400 ++++ root/Makefile 2012-07-22 00:15:03.282994389 +0400 +@@ -1087,16 +1087,7 @@ + + ifeq ($(BUILDX11),yes) + ifeq ($(BUILDASIMAGE),yes) +-html: rootexecs postbin changelog releasenotes +-ifneq ($(USECONFIG),FALSE) +- @if [ "x`which root.exe`" != "x$(DESTDIR)$(BINDIR)/root.exe" ] \ +- || [ "`which root.exe`" -ot "bin/root.exe" ]; then \ +- echo 'ERROR: root.exe has not been installed by this build.'; \ +- echo ' Run "make install" before running "make html".'; \ +- exit 1; \ +- fi +-endif +- @$(MAKELOGHTML) ++html: compiledata releasenotes + @$(MAKEHTML) + else + html: +--- root/build/unix/makehtml.sh.orig 2012-06-28 11:33:36.000000000 +0400 ++++ root/build/unix/makehtml.sh 2012-07-22 00:18:58.705804436 +0400 +@@ -1,16 +1,16 @@ + #! /bin/sh + + dir=`pwd` +-ROOT=$dir/bin/root ++ROOT=root + 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 + +@@ -20,7 +20,7 @@ + + # To generate the full documentation, we do need to + # use the graphics engine, so do not use '-b'. +-$ROOT -l <<makedoc ++$ROOT -l <<makedoc || exit 1 + THtml h; + h.LoadAllLibs(); + h.MakeAll(); diff --git a/app-doc/root-docs/root-docs-5.34.00.ebuild b/app-doc/root-docs/root-docs-5.34.01.ebuild index ca27548511ad..f873d30b25a2 100644 --- a/app-doc/root-docs/root-docs-5.34.00.ebuild +++ b/app-doc/root-docs/root-docs-5.34.01.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/root-docs/root-docs-5.34.00.ebuild,v 1.2 2012/06/27 17:31:12 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/root-docs/root-docs-5.34.01.ebuild,v 1.1 2012/07/22 20:34:45 bicatali Exp $ EAPI=4 ROOT_PN="root" -PATCH_PV="5.34" +PATCH_PV="5.34.01" if [[ ${PV} == "9999" ]] ; then _SVN_DEP="dev-vcs/subversion" |