diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-10-28 05:23:07 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-10-28 05:23:07 +0000 |
commit | a421cdd07e4a3f2614e09d5a8bd34767cd13cf36 (patch) | |
tree | b3ae53553737967357d7b738da6869425cce55a3 /sys-apps/collectl | |
parent | Brown paper bag commit: gtk+-3.2 requires atk-2. (diff) | |
download | gentoo-2-a421cdd07e4a3f2614e09d5a8bd34767cd13cf36.tar.gz gentoo-2-a421cdd07e4a3f2614e09d5a8bd34767cd13cf36.tar.bz2 gentoo-2-a421cdd07e4a3f2614e09d5a8bd34767cd13cf36.zip |
Version bump.
(Portage version: 2.2.0_alpha70/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/collectl')
-rw-r--r-- | sys-apps/collectl/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/collectl/collectl-3.6.0.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/sys-apps/collectl/ChangeLog b/sys-apps/collectl/ChangeLog index 9338217d913b..5903f7952456 100644 --- a/sys-apps/collectl/ChangeLog +++ b/sys-apps/collectl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/collectl # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/collectl/ChangeLog,v 1.12 2011/06/15 03:15:51 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/collectl/ChangeLog,v 1.13 2011/10/28 05:23:07 radhermit Exp $ + +*collectl-3.6.0 (28 Oct 2011) + + 28 Oct 2011; Tim Harder <radhermit@gentoo.org> +collectl-3.6.0.ebuild: + Version bump. *collectl-3.5.1 (15 Jun 2011) diff --git a/sys-apps/collectl/collectl-3.6.0.ebuild b/sys-apps/collectl/collectl-3.6.0.ebuild new file mode 100644 index 000000000000..1bb737d57810 --- /dev/null +++ b/sys-apps/collectl/collectl-3.6.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/collectl/collectl-3.6.0.ebuild,v 1.1 2011/10/28 05:23:07 radhermit Exp $ + +EAPI="4" + +DESCRIPTION="light-weight performance monitoring tool capable of reporting interactively as well as logging to disk" +HOMEPAGE="http://collectl.sourceforge.net/" +SRC_URI="mirror://sourceforge/collectl/${P}.src.tar.gz" + +LICENSE="GPL-2 Artistic" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~x86" +IUSE="" + +RDEPEND=">=dev-lang/perl-5.8.8 + virtual/perl-Time-HiRes + >=dev-perl/Archive-Zip-1.20 + sys-apps/ethtool + sys-apps/pciutils" + +src_prepare() { + sed -i INSTALL -e "/^DOCDIR/s:doc/collectl:doc/${PF}:" || die +} + +src_install() { + DESTDIR="${D}" bash -ex ./INSTALL || die + + rm "${D}"/etc/init.d/* || die + newinitd "${FILESDIR}"/collectl.initd collectl + + cd "${D}"/usr/share/doc/${PF} + dohtml * + rm -f ARTISTIC GPL COPYING *.html *.jpg *.css || die +} |