diff options
author | Aaron Bauman <bman@gentoo.org> | 2019-12-13 10:59:59 -0500 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2019-12-13 11:07:42 -0500 |
commit | f7a62a884132062a27a98f4cef2e967b62d71985 (patch) | |
tree | 8e3ce37de800443dccfb0ddb2ddbfa8f3204f5de /sys-cluster/maui | |
parent | app-emulation/firecracker: Version bump (v0.19.1) (diff) | |
download | gentoo-f7a62a884132062a27a98f4cef2e967b62d71985.tar.gz gentoo-f7a62a884132062a27a98f4cef2e967b62d71985.tar.bz2 gentoo-f7a62a884132062a27a98f4cef2e967b62d71985.zip |
sys-cluster/maui: drop old
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'sys-cluster/maui')
-rw-r--r-- | sys-cluster/maui/maui-3.3.1-r2.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/sys-cluster/maui/maui-3.3.1-r2.ebuild b/sys-cluster/maui/maui-3.3.1-r2.ebuild deleted file mode 100644 index af2623ae6e15..000000000000 --- a/sys-cluster/maui/maui-3.3.1-r2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit eutils multilib - -DESCRIPTION="Maui Cluster Scheduler" -HOMEPAGE="http://www.adaptivecomputing.com/products/open-source/maui/" -SRC_URI="http://www.adaptivecomputing.com/download/${PN}/${P}.tar.gz" - -LICENSE="maui" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux" -IUSE="pbs slurm" - -REQUIRED_USE="^^ ( pbs slurm )" - -DEPEND=" - pbs? ( sys-cluster/torque ) - slurm? ( sys-cluster/slurm )" -RDEPEND="${DEPEND}" - -RESTRICT="fetch mirror" - -pkg_setup() { - if use slurm; then - if [ -z ${MAUI_KEY} ]; then - eerror "You should set MAUI_KEY to any integer value in make.conf" - return 1 - fi - fi -} - -src_prepare() { - sed -e "s:\$(INST_DIR)/lib:\$(INST_DIR)/$(get_libdir):" \ - -i src/{moab,server,mcom}/Makefile || die -} - -src_configure() { - local myconf - use pbs && myconf="--with-pbs=${EPREFIX}/usr" - use slurm && myconf+=" --with-wiki --with-key=${MAUI_KEY}" - econf \ - --with-spooldir="${EPREFIX}"/var/spool/${PN} \ - ${myconf} -} - -src_install() { - emake BUILDROOT="${D}" INST_DIR="${ED}/usr" install - dodoc docs/README CHANGELOG - dohtml docs/mauidocs.html - newinitd "${FILESDIR}/${PN}.initd" ${PN} -} - -pkg_nofetch() { - einfo "Please visit ${HOMEPAGE}, obtain the file" - einfo "${P}.tar.gz and put it in your DISTDIR directory." -} |