From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 99B251387B3 for ; Mon, 6 Jan 2014 17:41:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0A75E0AFB; Mon, 6 Jan 2014 17:41:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 24244E0AFB for ; Mon, 6 Jan 2014 17:41:41 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 155E433F70B for ; Mon, 6 Jan 2014 17:41:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 028A3E5537 for ; Mon, 6 Jan 2014 17:41:37 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1389030060.4965054a93b9dd9f630a31b290e20c799dc1cf94.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-physics/geant-vmc/ X-VCS-Repository: proj/sci X-VCS-Files: sci-physics/geant-vmc/ChangeLog sci-physics/geant-vmc/geant-vmc-4.2.14b.ebuild sci-physics/geant-vmc/geant-vmc-4.2.15.ebuild sci-physics/geant-vmc/metadata.xml X-VCS-Directories: sci-physics/geant-vmc/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 4965054a93b9dd9f630a31b290e20c799dc1cf94 X-VCS-Branch: master Date: Mon, 6 Jan 2014 17:41:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a92f00d3-9443-46a5-b08b-730da2e9f162 X-Archives-Hash: 522c6dbbdac899d8a72d6d3482399cf3 commit: 4965054a93b9dd9f630a31b290e20c799dc1cf94 Author: Justin Lecher gentoo org> AuthorDate: Mon Jan 6 17:41:00 2014 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Jan 6 17:41:00 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4965054a sci-physics/geant-vmc: Add missing die Package-Manager: portage-2.2.8 --- sci-physics/geant-vmc/ChangeLog | 4 ++++ sci-physics/geant-vmc/geant-vmc-4.2.14b.ebuild | 11 ++++++----- sci-physics/geant-vmc/geant-vmc-4.2.15.ebuild | 11 ++++++----- sci-physics/geant-vmc/metadata.xml | 10 +++++----- 4 files changed, 21 insertions(+), 15 deletions(-) diff --git a/sci-physics/geant-vmc/ChangeLog b/sci-physics/geant-vmc/ChangeLog index 7eb7657..8f81bf9 100644 --- a/sci-physics/geant-vmc/ChangeLog +++ b/sci-physics/geant-vmc/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 06 Jan 2014; Justin Lecher geant-vmc-4.2.14b.ebuild, + geant-vmc-4.2.15.ebuild, metadata.xml: + Add missing die + *geant-vmc-4.2.15 (06 Jan 2014) 06 Jan 2014; geant-vmc-4.2.14b.ebuild, diff --git a/sci-physics/geant-vmc/geant-vmc-4.2.14b.ebuild b/sci-physics/geant-vmc/geant-vmc-4.2.14b.ebuild index d7efd9d..5e39bf8 100644 --- a/sci-physics/geant-vmc/geant-vmc-4.2.14b.ebuild +++ b/sci-physics/geant-vmc/geant-vmc-4.2.14b.ebuild @@ -34,23 +34,24 @@ src_compile() { local d source $(ls -1 "${EROOT}"usr/share/Geant4-*/geant4make/geant4make.sh) || die for d in ${dirs}; do - pushd ${d} > /dev/null + pushd ${d} > /dev/null || die emake - use doc && doxygen + if use doc; then + doxygen || die + fi popd > /dev/null done } src_test() { - cd examples + cd examples || die emake ./run_suite.sh || die } src_install() { dolib.so lib/tgt_*/{libg4root,libgeant4vmc}.so - insinto /usr - doins -r include + doheader include/* dodoc README history version_number use doc && dohtml -r Geant4VMC.html doc/* if use examples; then diff --git a/sci-physics/geant-vmc/geant-vmc-4.2.15.ebuild b/sci-physics/geant-vmc/geant-vmc-4.2.15.ebuild index 10d38e4..c350288 100644 --- a/sci-physics/geant-vmc/geant-vmc-4.2.15.ebuild +++ b/sci-physics/geant-vmc/geant-vmc-4.2.15.ebuild @@ -33,23 +33,24 @@ src_compile() { local d source $(ls -1 "${EROOT}"usr/share/Geant4-*/geant4make/geant4make.sh) || die for d in ${dirs}; do - pushd ${d} > /dev/null + pushd ${d} > /dev/null || die emake - use doc && doxygen + if use doc; then + doxygen || die + fi popd > /dev/null done } src_test() { - cd examples + cd examples || die emake ./run_suite.sh || die } src_install() { dolib.so lib/tgt_*/{libg4root,libgeant4vmc}.so - insinto /usr - doins -r include + doheader include/* dodoc README history version_number use doc && dohtml -r Geant4VMC.html doc/* if use examples; then diff --git a/sci-physics/geant-vmc/metadata.xml b/sci-physics/geant-vmc/metadata.xml index a5a0c84..1bbc127 100644 --- a/sci-physics/geant-vmc/metadata.xml +++ b/sci-physics/geant-vmc/metadata.xml @@ -1,8 +1,8 @@ -sci-physics - + sci-physics + The Virtual Monte Carlo (VMC) allows to run different simulation Monte Carlo without changing the user code and therefore the input and output format as well as the geometry and detector response @@ -13,7 +13,7 @@ Geant3 VMC (C++) is provided within a single package together with GEANT3 (Fortran) - geant3. - - Enable the Virtual Geometry Model (sci-physics/vgm) - + + Enable the Virtual Geometry Model (sci-physics/vgm) +