commit:     c2ead8aed4c4832560e0cd205863ab22f315c2d9
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  4 21:00:51 2015 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Wed Mar  4 21:01:57 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=c2ead8ae

added live version

Package-Manager: portage-2.2.14

 sys-cluster/gasnet/ChangeLog          |  5 ++++
 sys-cluster/gasnet/gasnet-9999.ebuild | 44 +++++++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/sys-cluster/gasnet/ChangeLog b/sys-cluster/gasnet/ChangeLog
index 519336b..9739af2 100644
--- a/sys-cluster/gasnet/ChangeLog
+++ b/sys-cluster/gasnet/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*gasnet-9999 (04 Mar 2015)
+
+  04 Mar 2015; Christoph Junghans <ott...@gentoo.org> +gasnet-9999.ebuild:
+  added live version
+
 *gasnet-1.24.0 (01 Mar 2015)
 
   01 Mar 2015; Christoph Junghans <ott...@gentoo.org> +gasnet-1.24.0.ebuild,

diff --git a/sys-cluster/gasnet/gasnet-9999.ebuild 
b/sys-cluster/gasnet/gasnet-9999.ebuild
new file mode 100644
index 0000000..d6cc303
--- /dev/null
+++ b/sys-cluster/gasnet/gasnet-9999.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit autotools-utils
+
+MY_P="${PN^^[gasn]}-${PV}"
+DESCRIPTION="networking middleware layer to implementing partitioned global 
address space (PGAS) language"
+HOMEPAGE="http://gasnet.lbl.gov/";
+
+if [[ $PV = 9999 ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="https://bitbucket.org/berkeleylab/${PN}.git";
+       AUTOTOOLS_AUTORECONF=yes
+else
+       KEYWORDS="~amd64"
+       SRC_URI="http://gasnet.lbl.gov/${MY_P}.tar.gz";
+       S="${WORKDIR}/${MY_P}"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="mpi threads"
+
+DEPEND="mpi? ( virtual/mpi )"
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+       echo
+       elog "GASNet has an overwhelming count of configuration options."
+       elog "Don't forget the EXTRA_ECONF environment variable can let you"
+       elog "specify configure options if you find them necessary."
+       echo
+}
+
+src_configure() {
+       local myeconfargs=(
+               $(use_enable threads pthreads)
+               $(use_enable mpi)
+       )
+       autotools-utils_src_configure
+}

Reply via email to