From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B7EB6198006 for ; Thu, 28 Feb 2013 05:11:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5348FE073A; Thu, 28 Feb 2013 05:11:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6C99E073A for ; Thu, 28 Feb 2013 05:11:21 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AF27433DD88 for ; Thu, 28 Feb 2013 05:11:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 6B709E42E0 for ; Thu, 28 Feb 2013 05:11:18 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1362028273.26daba777e4fe1d62e552e5891ba2ea2e109c6bf.alexxy@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-libs/papi/ X-VCS-Repository: proj/sci X-VCS-Files: dev-libs/papi/ChangeLog dev-libs/papi/metadata.xml dev-libs/papi/papi-5.1.0.2.ebuild X-VCS-Directories: dev-libs/papi/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 26daba777e4fe1d62e552e5891ba2ea2e109c6bf X-VCS-Branch: master Date: Thu, 28 Feb 2013 05:11:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6280954d-542e-476c-a6f1-a4f31db682fc X-Archives-Hash: a83b40a5f0ada2b5fab43b6725cf8afe commit: 26daba777e4fe1d62e552e5891ba2ea2e109c6bf Author: Alexey Shvetsov gentoo org> AuthorDate: Thu Feb 28 05:11:13 2013 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Thu Feb 28 05:11:13 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=26daba77 Initial import Package-Manager: portage-2.2.0_alpha163 --- dev-libs/papi/ChangeLog | 9 +++++++++ dev-libs/papi/metadata.xml | 9 +++++++++ dev-libs/papi/papi-5.1.0.2.ebuild | 30 ++++++++++++++++++++++++++++++ 3 files changed, 48 insertions(+), 0 deletions(-) diff --git a/dev-libs/papi/ChangeLog b/dev-libs/papi/ChangeLog new file mode 100644 index 0000000..4ea86d2 --- /dev/null +++ b/dev-libs/papi/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-libs/papi +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*papi-5.1.0.2 (28 Feb 2013) + + 28 Feb 2013; Alexey Shvetsov +metadata.xml, + +papi-5.1.0.2.ebuild: + Initial import diff --git a/dev-libs/papi/metadata.xml b/dev-libs/papi/metadata.xml new file mode 100644 index 0000000..fe31728 --- /dev/null +++ b/dev-libs/papi/metadata.xml @@ -0,0 +1,9 @@ + + + + sci + + alexxy@gentoo.org + Alexey Shvetsov + + diff --git a/dev-libs/papi/papi-5.1.0.2.ebuild b/dev-libs/papi/papi-5.1.0.2.ebuild new file mode 100644 index 0000000..56fab5a --- /dev/null +++ b/dev-libs/papi/papi-5.1.0.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit versionator + +DESCRIPTION="Performance Application Programming Interface" +HOMEPAGE="http://icl.cs.utk.edu/papi/index.html" +SRC_URI="http://icl.cs.utk.edu/projects/papi/downloads/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +DEPEND=" + dev-libs/libpfm[static-libs] + " +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)/src" + +src_configure() { + econf \ + --with-perf-events \ + --with-pfm-prefix="${EPREFIX}/usr" \ + $(use_with static-libs) +}