diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-05-18 17:17:06 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-05-18 17:17:06 +0000 |
commit | dddf5386499439ea25ca6761e389ddc021f8b9d9 (patch) | |
tree | 6d45919ea14a680647429c054a6534d3672291db /sys-process | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-dddf5386499439ea25ca6761e389ddc021f8b9d9.tar.gz gentoo-2-dddf5386499439ea25ca6761e389ddc021f8b9d9.tar.bz2 gentoo-2-dddf5386499439ea25ca6761e389ddc021f8b9d9.zip |
Version bump.
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/atop/ChangeLog | 7 | ||||
-rw-r--r-- | sys-process/atop/atop-1.25.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/sys-process/atop/ChangeLog b/sys-process/atop/ChangeLog index 1eabb9154423..e46dcee8e6a2 100644 --- a/sys-process/atop/ChangeLog +++ b/sys-process/atop/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-process/atop # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/atop/ChangeLog,v 1.32 2010/03/29 17:51:11 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/atop/ChangeLog,v 1.33 2010/05/18 17:17:06 jer Exp $ + +*atop-1.25 (18 May 2010) + + 18 May 2010; Jeroen Roovers <jer@gentoo.org> +atop-1.25.ebuild: + Version bump. 29 Mar 2010; Jeroen Roovers <jer@gentoo.org> atop-1.23.ebuild: Stable for HPPA (bug #309217). diff --git a/sys-process/atop/atop-1.25.ebuild b/sys-process/atop/atop-1.25.ebuild new file mode 100644 index 000000000000..bd64ed9ffafa --- /dev/null +++ b/sys-process/atop/atop-1.25.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-process/atop/atop-1.25.ebuild,v 1.1 2010/05/18 17:17:06 jer Exp $ + +inherit toolchain-funcs + +DESCRIPTION="Resource-specific view of processes" +HOMEPAGE="http://www.atoptool.nl/" +SRC_URI="http://www.atoptool.nl/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="" + +DEPEND="sys-process/acct" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e '/^CFLAGS/s: = -O : += :' \ + -e '/^LDFLAGS/s: = : += :' \ + -e 's:\<cc\>:$(CC):' \ + Makefile + tc-export CC + cp "${FILESDIR}"/atop.rc atop.init + chmod a+rx atop.init + sed -i 's: root : :' atop.cron #191926 +} + +src_install() { + emake DESTDIR="${D}" INIPATH=/etc/init.d install || die + dodoc README "${D}"/etc/cron.d/* + rm -r "${D}"/etc/cron.d || die +} |