Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/openpam: ChangeLog openpam-20071221.ebuild
Date: Sat, 04 Jul 2009 12:30:00
Message-Id: E1MN4NS-0006kd-GB@stork.gentoo.org
1 flameeyes 09/07/04 12:29:58
2
3 Modified: ChangeLog openpam-20071221.ebuild
4 Log:
5 Die when dodoc couldn't be completed; remove useless .la files.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.14 sys-auth/openpam/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/ChangeLog?rev=1.14&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/ChangeLog?rev=1.14&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/ChangeLog?r1=1.13&r2=1.14
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v
18 retrieving revision 1.13
19 retrieving revision 1.14
20 diff -u -r1.13 -r1.14
21 --- ChangeLog 21 Jan 2009 22:30:26 -0000 1.13
22 +++ ChangeLog 4 Jul 2009 12:29:58 -0000 1.14
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sys-auth/openpam
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v 1.13 2009/01/21 22:30:26 aballier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v 1.14 2009/07/04 12:29:58 flameeyes Exp $
28 +
29 + 04 Jul 2009; Diego E. Pettenò <flameeyes@g.o>
30 + openpam-20071221.ebuild:
31 + Die when dodoc couldn't be completed; remove useless .la files.
32
33 21 Jan 2009; Alexis Ballier <aballier@g.o>
34 -files/openpam-20050201-gentoo.patch, -openpam-20050616.ebuild,
35
36
37
38 1.4 sys-auth/openpam/openpam-20071221.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild?r1=1.3&r2=1.4
43
44 Index: openpam-20071221.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- openpam-20071221.ebuild 10 Jun 2008 19:04:34 -0000 1.3
51 +++ openpam-20071221.ebuild 4 Jul 2009 12:29:58 -0000 1.4
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2008 Gentoo Foundation
54 +# Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild,v 1.3 2008/06/10 19:04:34 aballier Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild,v 1.4 2009/07/04 12:29:58 flameeyes Exp $
58
59 inherit multilib flag-o-matic autotools
60
61 @@ -48,5 +48,7 @@
62 src_install() {
63 emake -j1 DESTDIR="${D}" install
64
65 - dodoc CREDITS HISTORY MANIFEST RELNOTES README
66 + dodoc CREDITS HISTORY MANIFEST RELNOTES README || die
67 +
68 + find "${D}" -name '*.la' -delete || die
69 }