summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Imhof <tantive@gentoo.org>2004-11-24 22:23:57 +0000
committerMichael Imhof <tantive@gentoo.org>2004-11-24 22:23:57 +0000
commitb2888e6813fce4f63043817822dde5809acdded7 (patch)
tree28cad1e07187700c24303c304221d5ffd62cd1ac /sys-cluster
parentRemoved unused digest entries. (Manifest recommit) (diff)
downloadgentoo-2-b2888e6813fce4f63043817822dde5809acdded7.tar.gz
gentoo-2-b2888e6813fce4f63043817822dde5809acdded7.tar.bz2
gentoo-2-b2888e6813fce4f63043817822dde5809acdded7.zip
Cleaned out old version.
Diffstat (limited to 'sys-cluster')
-rw-r--r--sys-cluster/openpbs/ChangeLog5
-rw-r--r--sys-cluster/openpbs/files/digest-openpbs-2.3.161
-rw-r--r--sys-cluster/openpbs/openpbs-2.3.16.ebuild79
3 files changed, 4 insertions, 81 deletions
diff --git a/sys-cluster/openpbs/ChangeLog b/sys-cluster/openpbs/ChangeLog
index 00ac408f00eb..73c251b97931 100644
--- a/sys-cluster/openpbs/ChangeLog
+++ b/sys-cluster/openpbs/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-cluster/openpbs
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openpbs/ChangeLog,v 1.17 2004/11/24 08:19:05 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openpbs/ChangeLog,v 1.18 2004/11/24 22:23:57 tantive Exp $
+
+ 24 Nov 2004; Michael Imhof <tantive@gentoo.org> -openpbs-2.3.16.ebuild:
+ Cleaned out old version.
24 Nov 2004; Michael Sterrett <mr_bones_@gentoo.org>
openpbs-2.3.16-r1.ebuild:
diff --git a/sys-cluster/openpbs/files/digest-openpbs-2.3.16 b/sys-cluster/openpbs/files/digest-openpbs-2.3.16
deleted file mode 100644
index 2918ceafa227..000000000000
--- a/sys-cluster/openpbs/files/digest-openpbs-2.3.16
+++ /dev/null
@@ -1 +0,0 @@
-MD5 42be627d513839a2daf258692b0092aa OpenPBS_2_3_16.tar.gz 1307483
diff --git a/sys-cluster/openpbs/openpbs-2.3.16.ebuild b/sys-cluster/openpbs/openpbs-2.3.16.ebuild
deleted file mode 100644
index 312ce6093d90..000000000000
--- a/sys-cluster/openpbs/openpbs-2.3.16.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openpbs/openpbs-2.3.16.ebuild,v 1.12 2004/08/08 00:39:46 slarti Exp $
-
-NAME=`echo ${P} | sed -e "s|openpbs-|OpenPBS_|; y|.|_|"`
-B=${NAME}.tar.gz
-S="${WORKDIR}/${NAME}.tar.gz"
-
-DESCRIPTION="The Portable Batch System (PBS) is a flexible batch queuing and workload management system"
-HOMEPAGE="http://www.openpbs.org/"
-LICENSE="openpbs"
-
-SLOT="0"
-KEYWORDS="x86"
-IUSE="X tcltk"
-
-DEPEND="virtual/libc
- X? ( virtual/x11 )
- tcltk? ( dev-lang/tcl )"
-RDEPEND="net-misc/openssh"
-
-
-src_unpack() {
- if [ ! -e ${DISTDIR}/${A} ] ; then
- einfo "Due to license issues you have to download"
- einfo "the appropriate openpbs archive:"
- einfo "http://www.openpbs.org/UserArea/Download/"${B}
- einfo ""
- einfo "The archive should be placed into ${DISTDIR}."
-
- die "package archive not found"
- fi
-
- cd ${WORKDIR}
- unpack ${B}
- cd ${S}
- # apply a patch I made for gcc3.
- # maybe this should be done with sed but I'm too lazy
- patch -p0 < ${FILESDIR}/makedepend-sh-gcc3.patch
-
- # this thing doesn't use make install, but rather it's own install script
- # fix it here so the install dirs are set to the ${D} directory
- cd buildutils
- mv pbs_mkdirs.in pbs_mkdirs.in-orig
- sed -e "s|prefix=@prefix@|prefix=\${D}@prefix@| ; \
- s|PBS_SERVER_HOME=@PBS_SERVER_HOME@|PBS_SERVER_HOME=\${D}@PBS_SERVER_HOME@| ; \
- s|PBS_DEFAULT_FILE=@PBS_DEFAULT_FILE@|PBS_DEFAULT_FILE=\${D}@PBS_DEFAULT_FILE@| ; \
- s|PBS_ENVIRON=@PBS_ENVIRON@|PBS_ENVIRON=\${D}@PBS_ENVIRON@|" \
- pbs_mkdirs.in-orig > pbs_mkdirs.in
-}
-
-src_compile() {
- local myconf
- use X || myconf="--disable-gui"
- use tcltk && myconf="${myconf} --with-tcl"
-
- ./configure ${myconf} \
- --prefix=/usr \
- --mandir=/usr/share/man \
- --enable-docs \
- --enable-server \
- --enable-mom \
- --enable-clients \
- --set-server-home=/var/spool/PBS \
- --set-environ=/etc/pbs_environment \
- --with-scp || die "./configure failed"
-
- make || die
-}
-
-src_install() {
-
- make prefix=${D}/usr \
- mandir=${D}/usr/share/man \
- PBS_SERVER_HOME=${D}/var/spool/PBS \
- install || die
-
- dodoc INSTALL PBS_License.text Read.Me Release_Notes
-}