summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-04-23 07:07:35 +0000
committerMike Frysinger <vapier@gentoo.org>2005-04-23 07:07:35 +0000
commit43b8e8ba4632c9adb9849be90efc684b12e68bdc (patch)
tree80537e6d87da662a2124d8cf9e4a281e1cb58fbf /sys-process/atop
parentUSE=debug support #90035 (diff)
downloadhistorical-43b8e8ba4632c9adb9849be90efc684b12e68bdc.tar.gz
historical-43b8e8ba4632c9adb9849be90efc684b12e68bdc.tar.bz2
historical-43b8e8ba4632c9adb9849be90efc684b12e68bdc.zip
make sure init.d is +x #90018
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'sys-process/atop')
-rw-r--r--sys-process/atop/Manifest14
-rw-r--r--sys-process/atop/atop-1.13.ebuild22
2 files changed, 13 insertions, 23 deletions
diff --git a/sys-process/atop/Manifest b/sys-process/atop/Manifest
index 8513186dfdc5..6692aee4fc86 100644
--- a/sys-process/atop/Manifest
+++ b/sys-process/atop/Manifest
@@ -1,16 +1,6 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-MD5 701d2375c48535ed551339c615c090f4 atop-1.9.ebuild 766
MD5 265634af886a3e0d8643b1381c3b0716 ChangeLog 1044
-MD5 442187268ede0f41cd4b5b95843e27ef atop-1.13.ebuild 874
+MD5 06a31ff3cc2f7cd6a63147476147c4bc atop-1.13.ebuild 879
+MD5 701d2375c48535ed551339c615c090f4 atop-1.9.ebuild 766
MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164
MD5 64d981f140d4e6136ab5e48b54cf3d2f files/digest-atop-1.13 122
MD5 c21353e3cfd66e9e2108b1da390e9fad files/digest-atop-1.9 120
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.0 (GNU/Linux)
-
-iD8DBQFCJ2mII1lqEGTUzyQRAsdPAKDYvaF/b+LW2+NQR2+oL/shUPHAjQCfROYO
-sIfqThAZGUoxd6EuceCSZnE=
-=2Gpn
------END PGP SIGNATURE-----
diff --git a/sys-process/atop/atop-1.13.ebuild b/sys-process/atop/atop-1.13.ebuild
index 6b403075df2f..302ceab44a57 100644
--- a/sys-process/atop/atop-1.13.ebuild
+++ b/sys-process/atop/atop-1.13.ebuild
@@ -1,35 +1,35 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/atop/atop-1.13.ebuild,v 1.1 2005/03/03 15:26:22 ciaranm Exp $
-
+# $Header: /var/cvsroot/gentoo-x86/sys-process/atop/atop-1.13.ebuild,v 1.2 2005/04/23 07:07:35 vapier Exp $
ATOP_INIT_VERSION="1.9"
ATOP_INIT_SCRIPT=${PN}-${ATOP_INIT_VERSION}-initscript
DESCRIPTION="Resource-specific view of processes"
SRC_URI="ftp://ftp.atcomputing.nl/pub/tools/linux/${P}.tar.gz
- mirror://gentoo/${PN}-${ATOP_INIT_VERSION}-initscript"
+ mirror://gentoo/${PN}-${ATOP_INIT_VERSION}-initscript"
HOMEPAGE="http://freshmeat.net/releases/112061/"
+
LICENSE="GPL-2"
SLOT="0"
-DEPEND="sys-process/acct"
KEYWORDS="~x86 ~amd64"
IUSE=""
+DEPEND="sys-process/acct"
+
src_unpack() {
unpack ${A}
- cd ${S}
- mv ${S}/atop.init ${S}/atop.init.old
- cp ${DISTDIR}/${ATOP_INIT_SCRIPT} ${S}/atop.init
+ cd "${S}"
+ mv "${S}"/atop.init "${S}"/atop.init.old
+ cp "${DISTDIR}/${ATOP_INIT_SCRIPT}" "${S}"/atop.init
+ chmod a+rx atop.init
}
src_compile() {
emake || die
}
-src_install () {
- make DESTDIR=${D} INIPATH=/etc/init.d install || die
-
- # Install documentation.
+src_install() {
+ make DESTDIR="${D}" INIPATH=/etc/init.d install || die
dodoc README
}