Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/courier-authlib: ChangeLog courier-authlib-0.60.2.ebuild
Date: Sun, 20 Apr 2008 12:09:04
Message-Id: E1JnYLu-0003JD-30@stork.gentoo.org
1 vapier 08/04/20 12:09:02
2
3 Modified: ChangeLog courier-authlib-0.60.2.ebuild
4 Log:
5 Run autotools in all directories, not just the toplevel #218295.
6 (Portage version: 2.2_pre5)
7
8 Revision Changes Path
9 1.71 net-libs/courier-authlib/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.71&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?rev=1.71&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/ChangeLog?r1=1.70&r2=1.71
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v
18 retrieving revision 1.70
19 retrieving revision 1.71
20 diff -u -r1.70 -r1.71
21 --- ChangeLog 16 Apr 2008 18:20:32 -0000 1.70
22 +++ ChangeLog 20 Apr 2008 12:09:01 -0000 1.71
23 @@ -1,6 +1,10 @@
24 # ChangeLog for net-libs/courier-authlib
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.70 2008/04/16 18:20:32 chtekk Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.71 2008/04/20 12:09:01 vapier Exp $
28 +
29 + 20 Apr 2008; Mike Frysinger <vapier@g.o>
30 + courier-authlib-0.60.2.ebuild:
31 + Run autotools in all directories, not just the toplevel #218295.
32
33 16 Apr 2008; Luca Longinotti <chtekk@g.o> metadata.xml:
34 Update metadata, assign this solely to the herd, I'm no longer interested
35
36
37
38 1.2 net-libs/courier-authlib/courier-authlib-0.60.2.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild?r1=1.1&r2=1.2
43
44 Index: courier-authlib-0.60.2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- courier-authlib-0.60.2.ebuild 15 Apr 2008 09:05:12 -0000 1.1
51 +++ courier-authlib-0.60.2.ebuild 20 Apr 2008 12:09:01 -0000 1.2
52 @@ -1,9 +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/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild,v 1.1 2008/04/15 09:05:12 hanno Exp $
56 -
57 -WANT_AUTOCONF="latest"
58 -WANT_AUTOMAKE="latest"
59 +# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.60.2.ebuild,v 1.2 2008/04/20 12:09:01 vapier Exp $
60
61 inherit eutils flag-o-matic autotools
62
63 @@ -43,10 +40,6 @@
64 unpack ${A}
65 cd "${S}"
66
67 - if use elibc_uclibc ; then
68 - sed -i -e 's:linux-gnu\*:linux-gnu\*\ \|\ linux-uclibc:' config.sub || die "sed failed"
69 - fi
70 -
71 if ! use gdbm ; then
72 epatch "${FILESDIR}/0.59.2-configure-db4.patch"
73 else
74 @@ -59,7 +52,12 @@
75 sed -i -e"s|@@INDENT@@| |g" authmigrate.in || die "sed failed"
76 sed -i -e"s|\$sbindir/makeuserdb||g" authmigrate.in || die "sed failed"
77
78 - eautoreconf || die "eautoreconf failed"
79 + local d
80 + for d in $(find -name configure.in) ; do
81 + [[ ${d} == */libltdl/* ]] && continue
82 + cd "${S}"/${d%configure.in}
83 + eautoreconf
84 + done
85 }
86
87 src_compile() {
88
89
90
91 --
92 gentoo-commits@l.g.o mailing list