amadio 15/03/04 04:32:17 Modified: ChangeLog Added: clhep-2.2.0.5.ebuild Log: version bump. Fix bug #525272. (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0xF0DE108F)
Revision Changes Path 1.48 sci-physics/clhep/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.48&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.48&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/clhep/ChangeLog?r1=1.47&r2=1.48 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- ChangeLog 30 Jun 2014 18:50:48 -0000 1.47 +++ ChangeLog 4 Mar 2015 04:32:17 -0000 1.48 @@ -1,6 +1,11 @@ # ChangeLog for sci-physics/clhep -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.47 2014/06/30 18:50:48 bicatali Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.48 2015/03/04 04:32:17 amadio Exp $ + +*clhep-2.2.0.5 (04 Mar 2015) + + 04 Mar 2015; <[email protected]> +clhep-2.2.0.5.ebuild: + version bump *clhep-2.2.0.1 (30 Jun 2014) 1.1 sci-physics/clhep/clhep-2.2.0.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/clhep/clhep-2.2.0.5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/clhep/clhep-2.2.0.5.ebuild?rev=1.1&content-type=text/plain Index: clhep-2.2.0.5.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.2.0.5.ebuild,v 1.1 2015/03/04 04:32:17 amadio Exp $ EAPI=5 inherit cmake-utils multilib DESCRIPTION="High Energy Physics C++ library" HOMEPAGE="http://www.cern.ch/clhep" SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz" LICENSE="GPL-3 LGPL-3" SLOT="2/${PV}" KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux" IUSE="doc static-libs test" RDEPEND="" DEPEND="${RDEPEND} doc? ( virtual/latex-base )" S="${WORKDIR}/${PV}/CLHEP" src_prepare() { # respect flags sed -i -e 's:-O::g' cmake/Modules/ClhepVariables.cmake || die # no batch mode to allow parallel building (bug #437482) sed -i \ -e 's:-interaction=batchmode::g' \ cmake/Modules/ClhepBuildTex.cmake || die # gentoo doc directory sed -i \ -e "/DESTINATION/s:doc:share/doc/${PF}:" \ cmake/Modules/ClhepBuildTex.cmake */doc/CMakeLists.txt || die # dont build test if not asked if ! use test; then sed -i \ -e '/add_subdirectory(test)/d' \ */CMakeLists.txt || die fi } src_configure() { local mycmakeargs=( $(cmake-utils_use_enable test TESTING) $(cmake-utils_use doc CLHEP_BUILD_DOCS) ) DESTDIR="${ED}" cmake-utils_src_configure use doc && MAKEOPTS+=" -j1" } src_install() { cmake-utils_src_install use static-libs || rm "${ED}"/usr/$(get_libdir)/*.a }
