lspbs-1.1-r1.ebuild 687 B

123456789101112131415161718192021222324
  1. # Copyright 1999-2014 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. DESCRIPTION="Displays clear, concise and up-to-date PBS node and CPU usage information"
  4. SRC_URI="http://homepages.inf.ed.ac.uk/s0239160/misc/lspbs/${P}.tar.gz"
  5. HOMEPAGE="http://homepages.inf.ed.ac.uk/s0239160/misc/lspbs/lspbs.html"
  6. IUSE=""
  7. DEPEND="sys-cluster/torque"
  8. RDEPEND="${DEPEND}"
  9. SLOT="0"
  10. LICENSE="GPL-2"
  11. KEYWORDS="~x86 ~amd64 ~ppc"
  12. src_install() {
  13. emake DESTDIR="${D}" install || die "install failed"
  14. dodoc README || die "dodoc failed"
  15. doman "${D}"/usr/share/lspbs.1 || die "doman failed"
  16. rm -f "${D}"/usr/share/lspbs.1 || die "failed to remove old man page"
  17. }