diff options
author | 2022-05-30 14:50:41 +0200 | |
---|---|---|
committer | 2022-05-31 08:53:32 +0200 | |
commit | 47428f3d5faaf674d8da12366bbaea692b6d5d90 (patch) | |
tree | e567b0fc72e5990e1cb37398a3fa287c1ae55fe3 /sci-physics/clhep/clhep-2.4.4.0.ebuild | |
parent | sci-physics/clhep: stabilize 2.4.5.1 on amd64/x86 (diff) | |
download | gentoo-47428f3d5faaf674d8da12366bbaea692b6d5d90.tar.gz gentoo-47428f3d5faaf674d8da12366bbaea692b6d5d90.tar.bz2 gentoo-47428f3d5faaf674d8da12366bbaea692b6d5d90.zip |
sci-physics/clhep: drop old
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Guilherme Amadio <amadio@gentoo.org>
Diffstat (limited to 'sci-physics/clhep/clhep-2.4.4.0.ebuild')
-rw-r--r-- | sci-physics/clhep/clhep-2.4.4.0.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/sci-physics/clhep/clhep-2.4.4.0.ebuild b/sci-physics/clhep/clhep-2.4.4.0.ebuild deleted file mode 100644 index 770db67ea689..000000000000 --- a/sci-physics/clhep/clhep-2.4.4.0.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="High Energy Physics C++ library" -HOMEPAGE="http://proj-clhep.web.cern.ch/proj-clhep/" -SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/dist1/${P}.tgz" -LICENSE="GPL-3 LGPL-3" -SLOT="2/${PV}" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x64-macos" - -IUSE="doc test threads" -RESTRICT="!test? ( test )" - -BDEPEND=" - doc? ( - app-doc/doxygen - dev-texlive/texlive-bibtexextra - dev-texlive/texlive-fontsextra - dev-texlive/texlive-fontutils - dev-texlive/texlive-latex - dev-texlive/texlive-latexextra - ) -" - -PATCHES=( - "${FILESDIR}"/clhep-fix-testThreaded.patch - "${FILESDIR}"/clhep-modulemap.patch -) - -S="${WORKDIR}/${PV}/CLHEP" - -src_prepare() { - cmake_src_prepare - - # respect flags - sed -i -e 's:-O::g' cmake/Modules/ClhepVariables.cmake || die - # dont build test if not asked - if ! use test; then - cmake_comment_add_subdirectory test - fi - # gentoo doc directory - if use doc; then - grep -rl 'share/doc/CLHEP' | - xargs sed -i \ - -e "s:share/doc/CLHEP:share/doc/${PF}:" \ - {.,*}/CMakeLists.txt || die - fi -} - -src_configure() { - local mycmakeargs=( - -DCLHEP_BUILD_DOCS=$(usex doc) - -DCLHEP_SINGLE_THREAD=$(usex threads no yes) - ) - cmake_src_configure -} |