Gentoo Archives: gentoo-commits

From: "Romain Perier (mrpouet)" <mrpouet@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libindicate: ChangeLog libindicate-0.2.3.ebuild
Date: Thu, 29 Oct 2009 16:27:22
Message-Id: E1N3XqE-0002wG-GD@stork.gentoo.org
1 mrpouet 09/10/29 16:27:14
2
3 Modified: ChangeLog libindicate-0.2.3.ebuild
4 Log:
5 Fix some QA : do not ever use ../something/something.la, it is prone to breakage(parallel build). Add a missing || die to dodoc. Thanks to EvaSDK
6 (Portage version: 2.2_rc46/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-libs/libindicate/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libindicate/ChangeLog?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libindicate/ChangeLog?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libindicate/ChangeLog?r1=1.1&r2=1.2
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libindicate/ChangeLog,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- ChangeLog 29 Oct 2009 15:47:05 -0000 1.1
22 +++ ChangeLog 29 Oct 2009 16:27:13 -0000 1.2
23 @@ -1,6 +1,12 @@
24 # ChangeLog for dev-libs/libindicate
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/ChangeLog,v 1.1 2009/10/29 15:47:05 mrpouet Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/ChangeLog,v 1.2 2009/10/29 16:27:13 mrpouet Exp $
28 +
29 + 29 Oct 2009; Romain Perier <mrpouet@g.o>
30 + libindicate-0.2.3.ebuild,
31 + files/libindicate-0.2.3-optional-gtk-support.patch:
32 + Fix some QA : do not ever use ../something/something.la, it is prone to
33 + breakage (parallel build). Add a missing die to dodoc. Thanks to EvaSDK.
34
35 *libindicate-0.2.3 (29 Oct 2009)
36
37
38
39
40 1.2 dev-libs/libindicate/libindicate-0.2.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libindicate/libindicate-0.2.3.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libindicate/libindicate-0.2.3.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libindicate/libindicate-0.2.3.ebuild?r1=1.1&r2=1.2
45
46 Index: libindicate-0.2.3.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libindicate/libindicate-0.2.3.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- libindicate-0.2.3.ebuild 29 Oct 2009 15:47:05 -0000 1.1
53 +++ libindicate-0.2.3.ebuild 29 Oct 2009 16:27:13 -0000 1.2
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/libindicate-0.2.3.ebuild,v 1.1 2009/10/29 15:47:05 mrpouet Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/libindicate-0.2.3.ebuild,v 1.2 2009/10/29 16:27:13 mrpouet Exp $
59
60 EAPI=2
61
62 @@ -43,5 +43,5 @@
63 }
64 src_install() {
65 emake DESTDIR="${D}" install || die "make install failed"
66 - dodoc AUTHORS
67 + dodoc AUTHORS || die "dodoc failed"
68 }