summaryrefslogtreecommitdiff
path: root/dev-libs/papi/papi-5.5.1.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/papi/papi-5.5.1.ebuild')
-rw-r--r--dev-libs/papi/papi-5.5.1.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-libs/papi/papi-5.5.1.ebuild b/dev-libs/papi/papi-5.5.1.ebuild
deleted file mode 100644
index 2667603df0e8..000000000000
--- a/dev-libs/papi/papi-5.5.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools fortran-2
-
-DESCRIPTION="Performance Application Programming Interface"
-HOMEPAGE="http://icl.cs.utk.edu/papi/"
-SRC_URI="http://icl.cs.utk.edu/projects/${PN}/downloads/${P}.tar.gz"
-S="${WORKDIR}/${PN}-$(ver_cut 1-3)/src"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="
- dev-libs/libpfm
- virtual/mpi
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- default
-
- mv configure.{in,ac} || die
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --with-shlib
- --with-perf-events
- --with-pfm-prefix="${EPREFIX}/usr"
- --with-pfm-libdir="${EPREFIX}/usr/$(get_libdir)"
- --with-shared-lib=yes
- --with-static-lib=no
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
-
- dodoc ../RE*
-}