berkeley_upc-2020.12.0science
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="The Berkeley UPC Runtime/driver"
HOMEPAGE="https://upc.lbl.gov/"
SRC_URI="https://upc.lbl.gov/download/release/${P}.tar.gz"
LICENSE="BSD-4"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="mpi mpi-compat pshm +segment-fast segment-large +single +sptr-packed
sptr-struct sptr-symmetric threads +udp"
# Requires network access
RESTRICT="test"
REQUIRED_USE="
^^ ( segment-fast segment-large )
^^ ( sptr-packed sptr-struct sptr-symmetric )"
DEPEND="mpi? ( virtual/mpi )
mpi-compat? ( virtual/mpi )"
pkg_setup() {
elog "There is a lot of options for this package,"
elog "especially network conduits settings."
elog "You can set them using EXTRA_ECONF variable."
elog "To see full list of options visit ${HOMEPAGE}download/dist/INSTALL.TXT"
}
src_configure() {
./configure \
--prefix="${EPREFIX}"/usr/libexec/${P} \
--mandir="${EPREFIX}"/usr/share/man/ \
--disable-aligned-segments \
--disable-auto-conduit-detect \
$(use_enable mpi) \
$(use_enable mpi-compat) \
$(use_enable pshm) \
$(use_enable segment-fast) \
$(use_enable segment-large) \
$(use_enable single smp) \
$(use_enable sptr-packed) \
$(use_enable sptr-struct) \
$(use_enable sptr-symmetric) \
$(use_enable threads par) \
$(use_enable udp) \
${EXTRA_ECONF} || die
}
src_install() {
default
dodir /usr/bin
dosym ../libexec/${P}/bin/upc_trace /usr/bin/upc_trace
dosym ../libexec/${P}/bin/upcc /usr/bin/upcc
dosym ../libexec/${P}/bin/upcdecl /usr/bin/upcdecl
dosym ../libexec/${P}/bin/upcrun /usr/bin/upcrun
}