summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Johanson <latexer@gentoo.org>2003-02-18 22:13:19 +0000
committerPeter Johanson <latexer@gentoo.org>2003-02-18 22:13:19 +0000
commit7b710e80a9480c00f161e6458fd96dbaf8b231bc (patch)
treec2753f4b697e13cd4d71feba9fb90475d58a63f7 /sys-apps/atop/atop-1.9.ebuild
parentmarked as stable (diff)
downloadgentoo-2-7b710e80a9480c00f161e6458fd96dbaf8b231bc.tar.gz
gentoo-2-7b710e80a9480c00f161e6458fd96dbaf8b231bc.tar.bz2
gentoo-2-7b710e80a9480c00f161e6458fd96dbaf8b231bc.zip
Initial import
Diffstat (limited to 'sys-apps/atop/atop-1.9.ebuild')
-rw-r--r--sys-apps/atop/atop-1.9.ebuild31
1 files changed, 31 insertions, 0 deletions
diff --git a/sys-apps/atop/atop-1.9.ebuild b/sys-apps/atop/atop-1.9.ebuild
new file mode 100644
index 000000000000..a5092e0b1740
--- /dev/null
+++ b/sys-apps/atop/atop-1.9.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/atop/atop-1.9.ebuild,v 1.1 2003/02/18 22:13:19 latexer Exp $
+
+
+DESCRIPTION="Resource-specific view of processes"
+SRC_URI="ftp://ftp.atcomputing.nl/pub/tools/linux/${P}.tar.gz
+ mirror://gentoo/${P}-initscript"
+HOMEPAGE="http://freshmeat.net/releases/112061/"
+LICENSE="GPL-2"
+SLOT="0"
+DEPEND="sys-apps/acct"
+KEYWORDS="~x86"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ mv ${S}/atop.init ${S}/atop.init.old
+ cp ${DISTDIR}/${P}-initscript ${S}/atop.init
+}
+
+src_compile() {
+ emake || die
+}
+
+src_install () {
+ make DESTDIR=${D} INIPATH=/etc/init.d install || die
+
+ # Install documentation.
+ dodoc README
+}