Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/dia2code: ChangeLog dia2code-0.8.3.ebuild
Date: Wed, 07 Oct 2009 16:57:10
Message-Id: E1MvZoc-0005NC-V2@stork.gentoo.org
1 eva 09/10/07 16:56:38
2
3 Modified: ChangeLog dia2code-0.8.3.ebuild
4 Log:
5 Add die with messages.
6 (Portage version: 2.2_rc42/cvs/Linux i686)
7
8 Revision Changes Path
9 1.15 app-office/dia2code/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia2code/ChangeLog?rev=1.15&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia2code/ChangeLog?rev=1.15&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia2code/ChangeLog?r1=1.14&r2=1.15
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-office/dia2code/ChangeLog,v
18 retrieving revision 1.14
19 retrieving revision 1.15
20 diff -u -r1.14 -r1.15
21 --- ChangeLog 24 Feb 2008 10:31:25 -0000 1.14
22 +++ ChangeLog 7 Oct 2009 16:56:38 -0000 1.15
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-office/dia2code
25 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-office/dia2code/ChangeLog,v 1.14 2008/02/24 10:31:25 eva Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/app-office/dia2code/ChangeLog,v 1.15 2009/10/07 16:56:38 eva Exp $
29 +
30 + 07 Oct 2009; Gilles Dartiguelongue <eva@g.o> dia2code-0.8.3.ebuild:
31 + Add die with messages.
32
33 *dia2code-0.8.3 (24 Feb 2008)
34
35
36
37
38 1.3 app-office/dia2code/dia2code-0.8.3.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia2code/dia2code-0.8.3.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia2code/dia2code-0.8.3.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/dia2code/dia2code-0.8.3.ebuild?r1=1.2&r2=1.3
43
44 Index: dia2code-0.8.3.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-office/dia2code/dia2code-0.8.3.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- dia2code-0.8.3.ebuild 23 Sep 2009 16:09:58 -0000 1.2
51 +++ dia2code-0.8.3.ebuild 7 Oct 2009 16:56:38 -0000 1.3
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-office/dia2code/dia2code-0.8.3.ebuild,v 1.2 2009/09/23 16:09:58 patrick Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-office/dia2code/dia2code-0.8.3.ebuild,v 1.3 2009/10/07 16:56:38 eva Exp $
57
58 inherit flag-o-matic
59
60 @@ -18,7 +18,7 @@
61 >=app-office/dia-0.90.0"
62
63 src_install() {
64 - emake DESTDIR="${D}" install || die
65 - dodoc AUTHORS ChangeLog README TODO
66 - doman dia2code.1
67 + emake DESTDIR="${D}" install || die "emake install failed"
68 + dodoc AUTHORS ChangeLog README TODO || die "dodoc failed"
69 + doman dia2code.1 || die "doman failed"
70 }