Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/google-perftools: ChangeLog google-perftools-1.5.ebuild
Date: Sun, 31 Jan 2010 00:33:29
Message-Id: E1NbNkj-0004NM-HM@stork.gentoo.org
1 flameeyes 10/01/31 00:33:25
2
3 Modified: ChangeLog
4 Added: google-perftools-1.5.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-util/google-perftools/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/google-perftools/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/google-perftools/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/google-perftools/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/google-perftools/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 26 Oct 2009 18:01:40 -0000 1.2
23 +++ ChangeLog 31 Jan 2010 00:33:24 -0000 1.3
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/google-perftools
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/google-perftools/ChangeLog,v 1.2 2009/10/26 18:01:40 swegener Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/google-perftools/ChangeLog,v 1.3 2010/01/31 00:33:24 flameeyes Exp $
30 +
31 +*google-perftools-1.5 (31 Jan 2010)
32 +
33 + 31 Jan 2010; Diego E. Pettenò <flameeyes@g.o>
34 + +google-perftools-1.5.ebuild:
35 + Version bump.
36
37 26 Oct 2009; Sven Wegener <swegener@g.o>
38 google-perftools-1.4.ebuild:
39
40
41
42 1.1 dev-util/google-perftools/google-perftools-1.5.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/google-perftools/google-perftools-1.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/google-perftools/google-perftools-1.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: google-perftools-1.5.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/dev-util/google-perftools/google-perftools-1.5.ebuild,v 1.1 2010/01/31 00:33:24 flameeyes Exp $
52
53 DESCRIPTION="Fast, multi-threaded malloc() and nifty performance analysis tools"
54 HOMEPAGE="http://code.google.com/p/google-perftools/"
55 SRC_URI="http://google-perftools.googlecode.com/files/${P}.tar.gz"
56
57 LICENSE="MIT"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE=""
61
62 DEPEND="sys-libs/libunwind"
63 RDEPEND="${DEPEND}"
64
65 # tests get stuck in a deadlock due to sandbox interactions.
66 # bug #290249.
67 RESTRICT=test
68
69 src_install() {
70 emake install DESTDIR="${D}" || die "emake install failed"
71
72 # Remove the already-installed documentation, since it does not
73 # follow our guidelines (doesn't use ${PF}, is not configurable
74 # and so on so forth).
75 rm -r "${D}"/usr/share/doc/${P} || die
76
77 dodoc README AUTHORS ChangeLog TODO README.windows || die
78 pushd doc
79 dohtml -r * || die
80 popd
81 }