diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2005-07-05 20:19:20 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2005-07-05 20:19:20 +0000 |
commit | ee22caf9adf0fa92263f9d46eedd0d089be3c8e3 (patch) | |
tree | c74c423322f17eb26936773b89116edfc891a06a /sys-cluster/lspbs/lspbs-1.0-r1.ebuild | |
parent | Stable on hppa (diff) | |
download | gentoo-2-ee22caf9adf0fa92263f9d46eedd0d089be3c8e3.tar.gz gentoo-2-ee22caf9adf0fa92263f9d46eedd0d089be3c8e3.tar.bz2 gentoo-2-ee22caf9adf0fa92263f9d46eedd0d089be3c8e3.zip |
Move to virtual/pbs.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'sys-cluster/lspbs/lspbs-1.0-r1.ebuild')
-rw-r--r-- | sys-cluster/lspbs/lspbs-1.0-r1.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sys-cluster/lspbs/lspbs-1.0-r1.ebuild b/sys-cluster/lspbs/lspbs-1.0-r1.ebuild new file mode 100644 index 000000000000..df33d6e94d7c --- /dev/null +++ b/sys-cluster/lspbs/lspbs-1.0-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/lspbs/lspbs-1.0-r1.ebuild,v 1.1 2005/07/05 20:19:20 robbat2 Exp $ + +DESCRIPTION="Displays clear, concise and up-to-date PBS node and CPU usage information." +SRC_URI="http://homepages.inf.ed.ac.uk/s0239160/misc/lspbs/lspbs-${PV}.tar.gz" +HOMEPAGE="http://homepages.inf.ed.ac.uk/s0239160/misc/lspbs/lspbs.html" +IUSE="" + +DEPEND="virtual/libc + virtual/pbs" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64 ~ppc" + +src_compile() { + cd ${S} + ./configure --mandir=/usr/share/man --prefix=/usr --with-pbs=/usr --with-pbs-src=/usr || die + make || die +} + +src_install() { + dodir /usr/sbin + dodir /usr/local/bin + + make install prefix=${D}/usr mandir=${D}/usr/share/man infodir=/usr/share/infoinstall || die + + dodoc COPYING README + doman lspbs.1 +} + |