summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2005-07-05 20:20:09 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2005-07-05 20:20:09 +0000
commit88bc3def0ad61118aa589732d6c2cf036295d04f (patch)
tree066fb4b849571d7f000ce75429818c0522e2f375 /sys-cluster/maui
parentMove to virtual/pbs. (diff)
downloadhistorical-88bc3def0ad61118aa589732d6c2cf036295d04f.tar.gz
historical-88bc3def0ad61118aa589732d6c2cf036295d04f.tar.bz2
historical-88bc3def0ad61118aa589732d6c2cf036295d04f.zip
Move to virtual/pbs. And libpbs back in /usr/lib.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'sys-cluster/maui')
-rw-r--r--sys-cluster/maui/ChangeLog8
-rw-r--r--sys-cluster/maui/files/digest-maui-3.2.6_p13-r11
-rw-r--r--sys-cluster/maui/maui-3.2.6_p13-r1.ebuild37
3 files changed, 45 insertions, 1 deletions
diff --git a/sys-cluster/maui/ChangeLog b/sys-cluster/maui/ChangeLog
index 81afd4d29dfb..1864d525a779 100644
--- a/sys-cluster/maui/ChangeLog
+++ b/sys-cluster/maui/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-cluster/maui
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/maui/ChangeLog,v 1.1 2005/07/05 01:25:54 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/maui/ChangeLog,v 1.2 2005/07/05 20:20:09 robbat2 Exp $
+
+*maui-3.2.6_p13-r1 (05 Jul 2005)
+
+ 05 Jul 2005; Robin H. Johnson <robbat2@gentoo.org>
+ +maui-3.2.6_p13-r1.ebuild:
+ Move to virtual/pbs. And libpbs back in /usr/lib.
*maui-3.2.6_p13 (05 Jul 2005)
diff --git a/sys-cluster/maui/files/digest-maui-3.2.6_p13-r1 b/sys-cluster/maui/files/digest-maui-3.2.6_p13-r1
new file mode 100644
index 000000000000..908a4a6baf89
--- /dev/null
+++ b/sys-cluster/maui/files/digest-maui-3.2.6_p13-r1
@@ -0,0 +1 @@
+MD5 b330867069ded056f2cf33253fd34c7b maui-3.2.6p13.tar.gz 883810
diff --git a/sys-cluster/maui/maui-3.2.6_p13-r1.ebuild b/sys-cluster/maui/maui-3.2.6_p13-r1.ebuild
new file mode 100644
index 000000000000..b8b4ec9cd4cf
--- /dev/null
+++ b/sys-cluster/maui/maui-3.2.6_p13-r1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/maui/maui-3.2.6_p13-r1.ebuild,v 1.1 2005/07/05 20:20:09 robbat2 Exp $
+
+DESCRIPTION="Maui Cluster Scheduler"
+HOMEPAGE="http://www.clusterresources.com/products/maui/"
+SRC_URI="http://www.clusterresources.com/downloads/maui/${P/_/}.tar.gz"
+IUSE=""
+DEPEND="virtual/pbs"
+RDEPEND="${DEPEND}
+ virtual/libc"
+SLOT="0"
+LICENSE="maui"
+KEYWORDS="~x86"
+RESTRICT="fetch nomirror"
+
+S="${WORKDIR}/${P/_/}"
+
+src_compile() {
+ econf --with-spooldir=/usr/spool/maui --with-pbs || die "econf failed!"
+
+ # Torque on Gentoo installs libnet.a, which clobbers libnet.a from libnet.
+ # (Stupid developers.) Unfortunately, libnet also installs libnet.so, which
+ # Torque doesn't clobber, so when running make we end up linking against
+ # .so rather than .a. Big problem. Fix it.
+
+ sed -i -e "s~-lnet~/usr/$(get_libdir)/pbs/libnet.a~" Makefile
+ sed -i -e "s~BUILDROOT=~BUILDROOT=${D}~" Makefile
+ emake || die "emake failed!"
+}
+
+src_install() {
+ make install INST_DIR=${D}/usr
+
+ cd docs
+ dodoc README mauidocs.html
+}