Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/collectl: ChangeLog collectl-3.4.0.ebuild
Date: Fri, 08 Jan 2010 02:30:37
Message-Id: E1NT4cP-0007GK-LV@stork.gentoo.org
1 vapier 10/01/08 02:30:29
2
3 Modified: ChangeLog
4 Added: collectl-3.4.0.ebuild
5 Log:
6 Version bump #292864 by Mark Seger.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 sys-apps/collectl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/collectl/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/collectl/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/collectl/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/collectl/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 15 Nov 2009 01:29:22 -0000 1.7
23 +++ ChangeLog 8 Jan 2010 02:30:29 -0000 1.8
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-apps/collectl
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/collectl/ChangeLog,v 1.7 2009/11/15 01:29:22 vapier Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/collectl/ChangeLog,v 1.8 2010/01/08 02:30:29 vapier Exp $
30 +
31 +*collectl-3.4.0 (08 Jan 2010)
32 +
33 + 08 Jan 2010; Mike Frysinger <vapier@g.o> +collectl-3.4.0.ebuild,
34 + +files/collectl-3.4.0-install.patch:
35 + Version bump #292864 by Mark Seger.
36
37 15 Nov 2009; Mike Frysinger <vapier@g.o> files/collectl.initd:
38 Fix path to collectl #292864 by DBautell.
39
40
41
42 1.1 sys-apps/collectl/collectl-3.4.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/collectl/collectl-3.4.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/collectl/collectl-3.4.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: collectl-3.4.0.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/collectl/collectl-3.4.0.ebuild,v 1.1 2010/01/08 02:30:29 vapier Exp $
52
53 inherit eutils
54
55 DESCRIPTION="light-weight performance monitoring tool capable of reporting interactively as well as logging to disk"
56 HOMEPAGE="http://collectl.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/collectl/${P}.src.tar.gz"
58
59 LICENSE="GPL-2 Artistic"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~ia64 ~x86"
62 IUSE=""
63
64 RDEPEND=">=dev-lang/perl-5.8.8
65 virtual/perl-Time-HiRes
66 >=dev-perl/Archive-Zip-1.20
67 sys-apps/ethtool
68 sys-apps/pciutils"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 epatch "${FILESDIR}"/${P}-install.patch
74 sed -i \
75 -e "/^DOCDIR/s:doc/collectl:doc/${PF}:" \
76 INSTALL || die
77 }
78
79 src_install() {
80 DESTDIR=${D} bash -ex ./INSTALL || die
81
82 rm "${D}"/etc/init.d/* || die
83 newinitd "${FILESDIR}"/collectl.initd collectl
84
85 cd "${D}"/usr/share/doc/${PF}
86 dohtml * || die
87 rm -f ARTISTIC GPL COPYING *.html *.jpg *.css || die
88 prepalldocs
89 }