diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2013-06-11 16:29:51 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2013-06-11 16:29:51 +0000 |
commit | 073c9758a0c47b889d64906a4c71a89f742c6dfc (patch) | |
tree | 22243394626fcc93cbedf3606942008d752c9061 /sci-physics | |
parent | Add missing dependency. (diff) | |
download | gentoo-2-073c9758a0c47b889d64906a4c71a89f742c6dfc.tar.gz gentoo-2-073c9758a0c47b889d64906a4c71a89f742c6dfc.tar.bz2 gentoo-2-073c9758a0c47b889d64906a4c71a89f742c6dfc.zip |
Fixed installation of doc with the new metric flag (bug #472974)
(Portage version: 2.2.01.21938-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/root/ChangeLog | 5 | ||||
-rw-r--r-- | sci-physics/root/root-5.34.08.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sci-physics/root/ChangeLog b/sci-physics/root/ChangeLog index 321da85ef220..35ada3553fa3 100644 --- a/sci-physics/root/ChangeLog +++ b/sci-physics/root/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-physics/root # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/ChangeLog,v 1.119 2013/06/10 16:44:06 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/ChangeLog,v 1.120 2013/06/11 16:29:51 bicatali Exp $ + + 11 Jun 2013; Sébastien Fabbro <bicatali@gentoo.org> root-5.34.08.ebuild: + Fixed installation of doc with the new metric flag (bug #472974) *root-5.34.08 (10 Jun 2013) diff --git a/sci-physics/root/root-5.34.08.ebuild b/sci-physics/root/root-5.34.08.ebuild index cf894e34c3a0..ab540d0076f6 100644 --- a/sci-physics/root/root-5.34.08.ebuild +++ b/sci-physics/root/root-5.34.08.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/root-5.34.08.ebuild,v 1.1 2013/06/10 16:44:06 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/root-5.34.08.ebuild,v 1.2 2013/06/11 16:29:51 bicatali Exp $ EAPI=5 @@ -291,7 +291,8 @@ doc_install() { cd "${S}" if use doc; then einfo "Installing user's guides" - dodoc "${DISTDIR}"/ROOTUsersGuide-${PV}.pdf + use metric && dodoc "${DISTDIR}"/ROOTUsersGuideA4-${PV}.pdf || \ + dodoc "${DISTDIR}"/ROOTUsersGuideLetter-${PV}.pdf use math && dodoc \ "${DISTDIR}"/RooFit_Users_Manual_${ROOFIT_DOC_PV}.pdf \ "${DISTDIR}"/TMVAUsersGuide-v${TMVA_DOC_PV}.pdf |