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-devel/autoconf: ChangeLog autoconf-2.13.ebuild
Date: Mon, 28 Jan 2013 14:34:31
Message-Id: 20130128143428.6718A2171D@flycatcher.gentoo.org
1 aballier 13/01/28 14:34:28
2
3 Modified: ChangeLog autoconf-2.13.ebuild
4 Log:
5 Use GNU awk and GNU m4 on userland_BSD, bug #453798 by Yuta SATOH
6
7 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
8
9 Revision Changes Path
10 1.182 sys-devel/autoconf/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autoconf/ChangeLog?rev=1.182&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autoconf/ChangeLog?rev=1.182&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autoconf/ChangeLog?r1=1.181&r2=1.182
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v
19 retrieving revision 1.181
20 retrieving revision 1.182
21 diff -u -r1.181 -r1.182
22 --- ChangeLog 1 Jan 2013 19:14:07 -0000 1.181
23 +++ ChangeLog 28 Jan 2013 14:34:28 -0000 1.182
24 @@ -1,6 +1,9 @@
25 # ChangeLog for sys-devel/autoconf
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.181 2013/01/01 19:14:07 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.182 2013/01/28 14:34:28 aballier Exp $
29 +
30 + 28 Jan 2013; Alexis Ballier <aballier@g.o> autoconf-2.13.ebuild:
31 + Use GNU awk and GNU m4 on userland_BSD, bug #453798 by Yuta SATOH
32
33 01 Jan 2013; Raúl Porcel <armin76@g.o> autoconf-2.69.ebuild:
34 m68k/s390/sh stable wrt #447756
35
36
37
38 1.22 sys-devel/autoconf/autoconf-2.13.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild?rev=1.22&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild?rev=1.22&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild?r1=1.21&r2=1.22
43
44 Index: autoconf-2.13.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild,v
47 retrieving revision 1.21
48 retrieving revision 1.22
49 diff -u -r1.21 -r1.22
50 --- autoconf-2.13.ebuild 26 Sep 2012 05:06:03 -0000 1.21
51 +++ autoconf-2.13.ebuild 28 Jan 2013 14:34:28 -0000 1.22
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2012 Gentoo Foundation
54 +# Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild,v 1.21 2012/09/26 05:06:03 vapier Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/autoconf-2.13.ebuild,v 1.22 2013/01/28 14:34:28 aballier Exp $
58
59 inherit eutils
60
61 @@ -11,7 +11,7 @@
62 LICENSE="GPL-2"
63 SLOT="${PV:0:3}"
64 KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
65 -IUSE=""
66 +IUSE="userland_BSD"
67
68 DEPEND=">=sys-apps/texinfo-4.3
69 sys-devel/autoconf-wrapper
70 @@ -45,8 +45,10 @@
71 # force to `awk` so that we don't encode another awk that
72 # happens to currently be installed, but might later be
73 # uninstalled (like mawk). same for m4.
74 - ac_cv_path_M4=m4 \
75 - ac_cv_prog_AWK=awk \
76 + local prepend=""
77 + use userland_BSD && prepend="g"
78 + ac_cv_path_M4="${prepend}m4" \
79 + ac_cv_prog_AWK="${prepend}awk" \
80 LC_ALL=C \
81 econf \
82 --exec-prefix=/usr \