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-libs/pam: ChangeLog pam-1.0.1.ebuild
Date: Thu, 31 Jul 2008 14:09:04
Message-Id: E1KOYpu-0007F0-Ns@stork.gentoo.org
1 flameeyes 08/07/31 14:08:58
2
3 Modified: ChangeLog pam-1.0.1.ebuild
4 Log:
5 Some very basic fixes to the econf call: set all the directories at the top, provide htmldir as well as docdir (bug #2333360)
6 (Portage version: 2.2_rc5/cvs/Linux 2.6.26-gentoo x86_64)
7
8 Revision Changes Path
9 1.222 sys-libs/pam/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.222&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.222&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.221&r2=1.222
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
18 retrieving revision 1.221
19 retrieving revision 1.222
20 diff -u -r1.221 -r1.222
21 --- ChangeLog 23 Jul 2008 15:26:28 -0000 1.221
22 +++ ChangeLog 31 Jul 2008 14:08:58 -0000 1.222
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sys-libs/pam
25 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.221 2008/07/23 15:26:28 flameeyes Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.222 2008/07/31 14:08:58 flameeyes Exp $
28 +
29 + 31 Jul 2008; Diego Pettenò <flameeyes@g.o> pam-1.0.1.ebuild:
30 + Some very basic fixes to the econf call: set all the directories at the
31 + top, provide htmldir as well as docdir (bug #2333360)
32
33 23 Jul 2008; Diego Pettenò <flameeyes@g.o> pam-1.0.1.ebuild:
34 Remove --enable-docdir option and use --docdir instead so that
35
36
37
38 1.12 sys-libs/pam/pam-1.0.1.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/pam-1.0.1.ebuild?rev=1.12&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/pam-1.0.1.ebuild?rev=1.12&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/pam/pam-1.0.1.ebuild?r1=1.11&r2=1.12
43
44 Index: pam-1.0.1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.0.1.ebuild,v
47 retrieving revision 1.11
48 retrieving revision 1.12
49 diff -u -r1.11 -r1.12
50 --- pam-1.0.1.ebuild 23 Jul 2008 15:26:28 -0000 1.11
51 +++ pam-1.0.1.ebuild 31 Jul 2008 14:08:58 -0000 1.12
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2008 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.0.1.ebuild,v 1.11 2008/07/23 15:26:28 flameeyes Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.0.1.ebuild,v 1.12 2008/07/31 14:08:58 flameeyes Exp $
57
58 WANT_AUTOCONF="latest"
59 WANT_AUTOMAKE="latest"
60 @@ -123,18 +123,27 @@
61 myconf="${myconf} --disable-pie"
62 fi
63
64 + # KEEP COMMENTED OUT! It seems like it fails to build with USE=debug!
65 + # Do _not_ move this to $(use_enable) without checking if the
66 + # configure.in has been fixed. As of 2008/07/31 it's still broken
67 + # on upstream's CVS, and --disable-debug means --enable-debug too.
68 + # if use debug; then
69 + # myconf="${myconf} --enable-debug"
70 + # fi
71 +
72 econf \
73 + --libdir=/usr/$(get_libdir) \
74 + --docdir=/usr/share/doc/${PF} \
75 + --htmldir=/usr/share/doc/${PF}/html \
76 + --enable-securedir=/$(get_libdir)/security \
77 + --enable-isadir=/$(get_libdir)/security \
78 $(use_enable nls) \
79 $(use_enable selinux) \
80 $(use_enable cracklib) \
81 $(use_enable audit) \
82 - --libdir=/usr/$(get_libdir) \
83 --disable-db \
84 - --enable-securedir=/$(get_libdir)/security \
85 - --enable-isadir=/$(get_libdir)/security \
86 --disable-dependency-tracking \
87 --disable-prelude \
88 - --docdir=/usr/share/doc/${PF} \
89 --disable-regenerate-man \
90 ${myconf} || die "econf failed"
91 emake sepermitlockdir="/var/run/sepermit" || die "emake failed"