diff options
author | Alexander Puck Neuwirth <alexander@neuwirth-informatik.de> | 2024-03-26 11:00:25 +0100 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2024-03-26 20:09:46 +0100 |
commit | 4b09eb80c56dc123d456a4bcfe679e3e72a16714 (patch) | |
tree | 69e3d916a41628f12c99f6d7758c08c5747e06f8 /sci-physics/fastjet-contrib | |
parent | app-admin/ansible-core: add 2.16.5 (diff) | |
download | gentoo-4b09eb80c56dc123d456a4bcfe679e3e72a16714.tar.gz gentoo-4b09eb80c56dc123d456a4bcfe679e3e72a16714.tar.bz2 gentoo-4b09eb80c56dc123d456a4bcfe679e3e72a16714.zip |
sci-physics/fastjet-contrib: drop 1.049-r1
Closes: https://bugs.gentoo.org/871420
Signed-off-by: Alexander Puck Neuwirth <alexander@neuwirth-informatik.de>
Closes: https://github.com/gentoo/gentoo/pull/35924
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'sci-physics/fastjet-contrib')
-rw-r--r-- | sci-physics/fastjet-contrib/fastjet-contrib-1.049-r1.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/sci-physics/fastjet-contrib/fastjet-contrib-1.049-r1.ebuild b/sci-physics/fastjet-contrib/fastjet-contrib-1.049-r1.ebuild deleted file mode 100644 index 5327d49c484d..000000000000 --- a/sci-physics/fastjet-contrib/fastjet-contrib-1.049-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -MY_PN=fjcontrib -MY_P=${MY_PN}-${PV} - -DESCRIPTION="3rd party extensions of FastJet." -HOMEPAGE="https://fastjet.hepforge.org/contrib/" -SRC_URI="https://fastjet.hepforge.org/contrib/downloads/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" - -DEPEND=">=sci-physics/fastjet-3.4.0" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-soname.patch - "${FILESDIR}"/${P}-ar.patch -) - -src_configure() { - tc-export CXX AR RANLIB - ./configure --prefix=/usr --fastjet-config=/usr/bin/fastjet-config RANLIB="${RANLIB}" AR="${AR}" CXX="${CXX}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" FFLAGS="${FFLAGS}" LDFLAGS="${LDFLAGS}" || die -} - -src_compile() { - emake - emake fragile-shared -} - -src_install() { - emake install PREFIX="${ED}/usr" - dolib.so libfastjetcontribfragile.so - # The name used for requesting this library varies - dosym libfastjetcontribfragile.so /usr/$(get_libdir)/libfastjetcontribfragile.so.0 - dosym libfastjetcontribfragile.so /usr/$(get_libdir)/fastjetcontribfragile.so.0 -} |