diff options
author | 2015-02-17 23:21:14 +0000 | |
---|---|---|
committer | 2015-02-17 23:21:14 +0000 | |
commit | 13356b510b4818bd804959df4286d6b6e98b49c5 (patch) | |
tree | 092f51022a770869ca2934a9fbdd5ba26add480f /app-shells | |
parent | added live version (diff) | |
download | gentoo-2-13356b510b4818bd804959df4286d6b6e98b49c5.tar.gz gentoo-2-13356b510b4818bd804959df4286d6b6e98b49c5.tar.bz2 gentoo-2-13356b510b4818bd804959df4286d6b6e98b49c5.zip |
version bump
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/mpibash/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/mpibash/mpibash-1.2.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/app-shells/mpibash/ChangeLog b/app-shells/mpibash/ChangeLog index 8f680a36f5cd..e5c775b5a593 100644 --- a/app-shells/mpibash/ChangeLog +++ b/app-shells/mpibash/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-shells/mpibash # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/mpibash/ChangeLog,v 1.2 2015/02/17 23:10:31 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/mpibash/ChangeLog,v 1.3 2015/02/17 23:21:14 ottxor Exp $ + +*mpibash-1.2 (17 Feb 2015) + + 17 Feb 2015; Christoph Junghans <ottxor@gentoo.org> +mpibash-1.2.ebuild: + version bump *mpibash-9999 (17 Feb 2015) diff --git a/app-shells/mpibash/mpibash-1.2.ebuild b/app-shells/mpibash/mpibash-1.2.ebuild new file mode 100644 index 000000000000..daa43915d129 --- /dev/null +++ b/app-shells/mpibash/mpibash-1.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/mpibash/mpibash-1.2.ebuild,v 1.1 2015/02/17 23:21:14 ottxor Exp $ + +EAPI=5 + +inherit autotools multilib + +if [[ ${PV} = 9999 ]]; then + EGIT_REPO_URI="git://github.com/losalamos/MPI-Bash.git http://github.com/losalamos/MPI-Bash.git" + inherit git-r3 + KEYWORDS="" +else + SRC_URI="https://github.com/losalamos/MPI-Bash/releases/download/v${PV}/${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="Parallel scripting right from the Bourne-Again Shell (Bash)" +HOMEPAGE="https://github.com/losalamos/MPI-Bash" + +LICENSE="GPL-3" +SLOT="0" +IUSE="examples" + +DEPEND="virtual/mpi + >=app-shells/bash-4.2[plugins] + sys-cluster/libcircle" +RDEPEND="${DEPEND}" + +src_prepare() { + [[ "${PV}" = 9999 ]] && eautoreconf +} + +src_configure() { + econf --with-bashdir="${EPREFIX}"/usr/include/bash-plugins \ + --with-plugindir="${EPREFIX}"/usr/$(get_libdir)/bash +} + +src_install() { + default + sed -i '/^export LD_LIBRARY_PATH/d' "${ED}/usr/bin/${PN}" || die + use examples || rm -r "${ED}/usr/share/doc/${PF}/examples" || die +} |