From 908778078736bd36f7a60a2d576d415cb8e000fa Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 22 May 2021 07:31:18 +0100 Subject: gentoo resync : 22.05.2021 --- sci-physics/fastjet/Manifest | 2 +- sci-physics/fastjet/fastjet-3.0.6-r1.ebuild | 66 ---------------------------- sci-physics/fastjet/fastjet-3.0.6-r2.ebuild | 67 +++++++++++++++++++++++++++++ 3 files changed, 68 insertions(+), 67 deletions(-) delete mode 100644 sci-physics/fastjet/fastjet-3.0.6-r1.ebuild create mode 100644 sci-physics/fastjet/fastjet-3.0.6-r2.ebuild (limited to 'sci-physics/fastjet') diff --git a/sci-physics/fastjet/Manifest b/sci-physics/fastjet/Manifest index e892880122d9..a3b3222f027d 100644 --- a/sci-physics/fastjet/Manifest +++ b/sci-physics/fastjet/Manifest @@ -1,4 +1,4 @@ AUX fastjet-3.0.6-system-siscone.patch 3726 BLAKE2B b8fcd8b93631892b68b7d4584c3e456118fd66f80e12e39be3fc82f2f6dac3c52a3d2218c7e8f342166047aee385c9f12192777454be333b2a01b307bc67cdac SHA512 7522e3fd0fe789bc5b3172c2c26566136004b828a46a81fb0ec39bb6bedbf358efc0b51acab8cb19a40dd5b4138190f87655ddd2679cc91c819f5c7c9e9f4c57 DIST fastjet-3.0.6.tar.gz 2216501 BLAKE2B 1aacab5c91cb70d66035deddc4929d60c51444f6f23396f947d704f607d5f2267ccc5e09ec633d6e0ec1255b3a6bc7e51e4ea49c4cb06d0e3b6953b601ab76ee SHA512 1f01b7ed0e07bd94c88faa123f72c2e3bcd81ad32ab4d03dc0a18dd18635f3b18ba8d339176b0ef1d6e58cecd9f37aaea30b4ad909d2782ce5be7c11e205c3a5 -EBUILD fastjet-3.0.6-r1.ebuild 1304 BLAKE2B 58f7f12b6ad33bd2976ba53623c3ec0575a920381d016173fe39385dcb9403d186d06ffa13f3babc9b7e60c39e99988da11a40e5705108cb32339e880f8f84aa SHA512 0a535d074e76d74759aa1de5fce5635d0ae12b3f88516011ce3a48bed42cb5908cbb639b7a4a69c14b36429ab79398d4d0bd6cbfdba7021518bcf1ee4c59cd82 +EBUILD fastjet-3.0.6-r2.ebuild 1339 BLAKE2B ca3076effb5201f383ca8a7cfe7dbee42957ae10b24d1893736cad6eb03c5e8b3c9ac068046a7003fee452f335b2630e8451f566f06cf2d33c6b4b0e5c027061 SHA512 d81349b3172af35af02a68751fda948bab6a5300771f8f9647e54c1fe546b92fa5dd1f43753ddeab0fd4692c0aa655c097055f1132312141c7cbdddbda15c4c9 MISC metadata.xml 846 BLAKE2B 011aac1c331a66bf050ec977961ea2091f54dad9b15611c02c84210a460b791ff1862a9b210c4acc2ba7e8877e0fb8db735dbdb16d71b2e3aee0b918d6286e4a SHA512 7a785ebae9232cef55c62ada47e4ec87507b6e4c7115f928fa3260474e67f56db336f7698833fe995d4f046b7013c88f62faf71758a881a86c982fe60a92c40a diff --git a/sci-physics/fastjet/fastjet-3.0.6-r1.ebuild b/sci-physics/fastjet/fastjet-3.0.6-r1.ebuild deleted file mode 100644 index b5cfe12ace33..000000000000 --- a/sci-physics/fastjet/fastjet-3.0.6-r1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -FORTRAN_NEEDED=plugins - -inherit autotools flag-o-matic fortran-2 - -DESCRIPTION="Fast implementation of several recombination jet algorithms" -HOMEPAGE="http://www.fastjet.fr/" -SRC_URI="http://www.fastjet.fr/repo/${P}.tar.gz" - -LICENSE="GPL-2 QPL" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="cgal doc examples +plugins" - -RDEPEND=" - cgal? ( sci-mathematics/cgal:= ) - plugins? ( sci-physics/siscone:= )" -DEPEND="${RDEPEND}" -BDEPEND="doc? ( app-doc/doxygen[dot] )" - -PATCHES=( "${FILESDIR}"/${P}-system-siscone.patch ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - use cgal && \ - has_version 'sci-mathematics/cgal[gmp]' && append-libs -lgmp - - econf \ - --disable-static \ - $(use_enable cgal) \ - $(use_enable plugins allplugins) \ - $(use_enable plugins allcxxplugins) -} - -src_compile() { - default - - if use doc; then - doxygen Doxyfile || die - HTML_DOCS=( html/. ) - fi -} - -src_install() { - default - - if use examples; then - emake -C example maintainer-clean - find example -iname 'makefile*' -delete || die - - docinto examples - dodoc -r example/. - docompress -x /usr/share/doc/${PF}/examples - fi - - # no static archives - find "${ED}" -name '*.la' -delete || die -} diff --git a/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild b/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild new file mode 100644 index 000000000000..59084ef062c1 --- /dev/null +++ b/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +FORTRAN_NEEDED=plugins + +inherit autotools flag-o-matic fortran-2 + +DESCRIPTION="Fast implementation of several recombination jet algorithms" +HOMEPAGE="http://www.fastjet.fr/" +SRC_URI="http://www.fastjet.fr/repo/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="cgal doc examples +plugins" + +RDEPEND=" + cgal? ( sci-mathematics/cgal:= ) + plugins? ( sci-physics/siscone:= )" +DEPEND="${RDEPEND}" +BDEPEND="doc? ( app-doc/doxygen[dot] )" + +PATCHES=( "${FILESDIR}"/${P}-system-siscone.patch ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + use cgal && \ + has_version 'sci-mathematics/cgal[gmp]' && append-libs -lgmp + + CONFIG_SHELL="${EPREFIX}/bin/bash" \ + econf \ + --disable-static \ + $(use_enable cgal) \ + $(use_enable plugins allplugins) \ + $(use_enable plugins allcxxplugins) +} + +src_compile() { + default + + if use doc; then + doxygen Doxyfile || die + HTML_DOCS=( html/. ) + fi +} + +src_install() { + default + + if use examples; then + emake -C example maintainer-clean + find example -iname 'makefile*' -delete || die + + docinto examples + dodoc -r example/. + docompress -x /usr/share/doc/${PF}/examples + fi + + # no static archives + find "${ED}" -name '*.la' -delete || die +} -- cgit v1.2.3