Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/openpam: ChangeLog openpam-20071221.ebuild
Date: Sun, 02 May 2010 11:21:03
Message-Id: 20100502112057.070702C203@corvid.gentoo.org
1 aballier 10/05/02 11:20:56
2
3 Modified: ChangeLog openpam-20071221.ebuild
4 Log:
5 Various improvements to the ebuild by Toffanin [Gentoo/FreeBSD AT] <toffanin.mauro@×××××.com> in bug #318121, esp. missing || die at make install
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.16 sys-auth/openpam/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/ChangeLog?rev=1.16&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/ChangeLog?rev=1.16&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/ChangeLog?r1=1.15&r2=1.16
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v
18 retrieving revision 1.15
19 retrieving revision 1.16
20 diff -u -r1.15 -r1.16
21 --- ChangeLog 8 Jul 2009 17:00:46 -0000 1.15
22 +++ ChangeLog 2 May 2010 11:20:56 -0000 1.16
23 @@ -1,6 +1,11 @@
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.15 2009/07/08 17:00:46 the_paya Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v 1.16 2010/05/02 11:20:56 aballier Exp $
29 +
30 + 02 May 2010; Alexis Ballier <aballier@g.o> openpam-20071221.ebuild:
31 + Various improvements to the ebuild by Toffanin [Gentoo/FreeBSD AT]
32 + <toffanin.mauro@×××××.com> in bug #318121, esp. missing || die at make
33 + install
34
35 08 Jul 2009; Javier Villavicencio <the_paya@g.o>
36 openpam-20071221.ebuild:
37
38
39
40 1.6 sys-auth/openpam/openpam-20071221.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild?rev=1.6&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild?rev=1.6&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild?r1=1.5&r2=1.6
45
46 Index: openpam-20071221.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild,v
49 retrieving revision 1.5
50 retrieving revision 1.6
51 diff -u -r1.5 -r1.6
52 --- openpam-20071221.ebuild 8 Jul 2009 17:00:46 -0000 1.5
53 +++ openpam-20071221.ebuild 2 May 2010 11:20:56 -0000 1.6
54 @@ -1,8 +1,9 @@
55 -# Copyright 1999-2009 Gentoo Foundation
56 +# Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild,v 1.5 2009/07/08 17:00:46 the_paya Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/openpam-20071221.ebuild,v 1.6 2010/05/02 11:20:56 aballier Exp $
60
61 -inherit multilib flag-o-matic autotools
62 +EAPI="2"
63 +inherit multilib autotools
64
65 DESCRIPTION="Open source PAM library."
66 HOMEPAGE="http://www.openpam.org/"
67 @@ -21,10 +22,7 @@
68
69 PROVIDE="virtual/pam"
70
71 -src_unpack() {
72 - unpack ${A}
73 - cd "${S}"
74 -
75 +src_prepare() {
76 epatch "${FILESDIR}/${P}-gentoo.patch"
77 epatch "${FILESDIR}/${PN}-20050201-nbsd.patch"
78 epatch "${FILESDIR}/${PN}-20050616-redef.patch"
79 @@ -36,18 +34,14 @@
80 elibtoolize
81 }
82
83 -src_compile() {
84 - econf \
85 +src_configure() {
86 + econf ${myconf} \
87 --disable-dependency-tracking \
88 - --with-modules-dir=/$(get_libdir)/security/ \
89 - ${myconf} || die "econf failed"
90 -
91 - emake || die "emake failed"
92 + --with-modules-dir=/$(get_libdir)/security/
93 }
94
95 src_install() {
96 - emake -j1 DESTDIR="${D}" install
97 -
98 + emake -j1 DESTDIR="${D}" install || die
99 dodoc CREDITS HISTORY RELNOTES README || die
100
101 find "${D}" -name '*.la' -delete || die