From 212422dad739e5280fb19a8acf8409374183c9c1 Mon Sep 17 00:00:00 2001 From: Justin Bronder Date: Fri, 6 Jul 2018 10:12:02 -0400 Subject: app-doc/root-docs: removal due to migration of sci-physics/root Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- .../files/root-docs-6.00.01-makehtml.patch | 55 ---------- app-doc/root-docs/metadata.xml | 22 ---- app-doc/root-docs/root-docs-9999.ebuild | 112 --------------------- 3 files changed, 189 deletions(-) delete mode 100644 app-doc/root-docs/files/root-docs-6.00.01-makehtml.patch delete mode 100644 app-doc/root-docs/metadata.xml delete mode 100644 app-doc/root-docs/root-docs-9999.ebuild diff --git a/app-doc/root-docs/files/root-docs-6.00.01-makehtml.patch b/app-doc/root-docs/files/root-docs-6.00.01-makehtml.patch deleted file mode 100644 index 613468629..000000000 --- a/app-doc/root-docs/files/root-docs-6.00.01-makehtml.patch +++ /dev/null @@ -1,55 +0,0 @@ -diff --git a/Makefile b/Makefile -index 600e8db..afad025 100644 ---- a/Makefile -+++ b/Makefile -@@ -1072,16 +1072,7 @@ $(ROOTPCH): $(ROOTCLINGSTAGE1DEP) $(ALLHDRS) $(CLINGETCPCH) $(ORDER_) $(ALLLIBS) - - 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: -diff --git a/build/unix/makehtml.sh b/build/unix/makehtml.sh -index a94e790..8b4589d 100755 ---- a/build/unix/makehtml.sh -+++ b/build/unix/makehtml.sh -@@ -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 -n -l -b -q hsimple.C -+ $ROOT -n -l -b -q hsimple.C && exit 1 - fi - cd tree - # we need tutorials/tree/cernstaff.root - if [ ! -f cernstaff.root ]; then -- $ROOT -n -l -b -q cernbuild.C -+ $ROOT -n -l -b -q cernbuild.C || exit 1 - fi - cd $dir - -@@ -20,7 +20,7 @@ echo "" - - # To generate the full documentation, we do need to - # use the graphics engine, so do not use '-b'. --$ROOT -n -l < - - - - bircoph@gentoo.org - Andrew Savchenko - - - sci-physics@gentoo.org - Gentoo Physics Project - - -This package contains the automatically generated ROOT class -documentation. - - - Generate html API documentation - Build HttpServer documentation - Provide all math related documentation - Default to A4 paper size and metric measurement. Letter will be used otherwise - - diff --git a/app-doc/root-docs/root-docs-9999.ebuild b/app-doc/root-docs/root-docs-9999.ebuild deleted file mode 100644 index 0d5916f42..000000000 --- a/app-doc/root-docs/root-docs-9999.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -ROOT_PN="root" -ROOFIT_DOC_PV=2.91-33 -ROOFIT_QS_DOC_PV=3.00 -TMVA_DOC_PV=4.2.0 - -inherit eutils git-r3 multilib virtualx - -DESCRIPTION="Documentation for ROOT Data Analysis Framework" -HOMEPAGE="http://root.cern.ch/drupal" -SRC_URI="" -EGIT_REPO_URI="http://root.cern.ch/git/root.git" - -SLOT="0" -LICENSE="LGPL-2.1" -IUSE="api +math +metric http" - -VIRTUALX_REQUIRED="api" - -DEPEND=" - app-text/pandoc - app-text/texlive - dev-haskell/pandoc-citeproc[bibutils] - virtual/pkgconfig - api? ( - media-fonts/dejavu - ~sci-physics/root-${PV}[X,graphviz,opengl] - )" -RDEPEND="" - -DOC_DIR="/usr/share/doc/${ROOT_PN}-${PV}" - -PATCHES=( - "${FILESDIR}"/${PN}-6.00.01-makehtml.patch -) - -src_prepare() { - default - # prefixify the configure script - sed -i \ - -e "s:/usr:${EPREFIX}/usr:g" \ - configure || die "prefixify configure failed" -} - -src_configure() { - # we need only to setup paths here, html docs doesn't depend on USE flags - if use api; then - ./configure \ - --prefix="${EPREFIX}/usr" \ - --etcdir="${EPREFIX}/etc/root" \ - --libdir="${EPREFIX}/usr/$(get_libdir)/${PN}" \ - --docdir="${EPREFIX}/usr/share/doc/${PF}" \ - --tutdir="${EPREFIX}/usr/share/doc/${PF}/examples/tutorials" \ - --testdir="${EPREFIX}/usr/share/doc/${PF}/examples/tests" \ - --with-llvm-config="${EPREFIX}/usr/bin/llvm-config" \ - --with-sys-iconpath="${EPREFIX}/usr/share/pixmaps" \ - --nohowto - fi -} - -src_compile() { - pdf_target=( primer users-guide ) - local pdf_size=pdfa4 - use metric || pdf_size=pdfletter - use math && pdf_target+=( minuit2 spectrum ) - use http && pdf_target+=( HttpServer JSROOT ) - - local i - for (( i=0; i<${#pdf_target[@]}; i++ )); do - emake -C documentation/"${pdf_target[i]}" "${pdf_size}" - done - - if use api; then - # video drivers may want to access hardware devices - cards=$(echo -n /dev/dri/card* /dev/ati/card* /dev/nvidiactl* | sed 's/ /:/g') - [[ -n "${cards}" ]] && addpredict "${cards}" - - ROOTSYS="${S}" Xemake html - # if root.exe crashes, return code will be 0 due to gdb attach, - # so we need to check if last html file was generated; - # this check is volatile and can't catch crash on the last file. - [[ -f htmldoc/WindowAttributes_t.html ]] || die "html doc generation crashed" - fi -} - -src_install() { - insinto "${DOC_DIR}" - - local i - for (( i=0; i<${#pdf_target[@]}; i++ )); do - doins documentation/"${pdf_target[i]}"/*.pdf - done - unset pdf_target - - use math && doins \ - "${DISTDIR}/RooFit_Users_Manual_${ROOFIT_DOC_PV}.pdf" \ - "${DISTDIR}/roofit_quickstart_${ROOFIT_QS_DOC_PV}.pdf" \ - "${DISTDIR}/TMVAUsersGuide-v${TMVA_DOC_PV}.pdf" - - if use api; then - # Install offline replacements for online messages - cp "${DISTDIR}"/{root6-banner.jpg,info.png} htmldoc/ || die "cp failed" - # too large data to copy - dodir "${DOC_DIR}/html" - mv htmldoc/* "${ED}${DOC_DIR}/html/" || die - docompress -x ${DOC_DIR}/html - fi -} -- cgit v1.2.3-18-g5258