Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/autoconf: ChangeLog autoconf-2.62-r1.ebuild
Date: Sun, 29 Jun 2008 23:12:12
Message-Id: E1KD63y-0007BO-C2@stork.gentoo.org
1 vapier 08/06/29 23:12:06
2
3 Modified: ChangeLog
4 Added: autoconf-2.62-r1.ebuild
5 Log:
6 Add workarounds for nasty bugs #217976 (multiline problems) and #228825 (big endian misdetection on ppc).
7 (Portage version: 2.2_rc1/cvs/Linux 2.6.25 x86_64)
8
9 Revision Changes Path
10 1.120 sys-devel/autoconf/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/ChangeLog?rev=1.120&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/ChangeLog?rev=1.120&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/ChangeLog?r1=1.119&r2=1.120
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v
19 retrieving revision 1.119
20 retrieving revision 1.120
21 diff -u -r1.119 -r1.120
22 --- ChangeLog 23 Jun 2008 16:04:19 -0000 1.119
23 +++ ChangeLog 29 Jun 2008 23:12:05 -0000 1.120
24 @@ -1,6 +1,16 @@
25 # ChangeLog for sys-devel/autoconf
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.119 2008/06/23 16:04:19 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.120 2008/06/29 23:12:05 vapier Exp $
29 +
30 +*autoconf-2.62-r1 (29 Jun 2008)
31 +
32 + 29 Jun 2008; Mike Frysinger <vapier@g.o>
33 + +files/autoconf-2.62-at-keywords.patch,
34 + +files/autoconf-2.62-fix-multiline-string.patch,
35 + +files/autoconf-2.62-revert-AC_C_BIGENDIAN.patch,
36 + +autoconf-2.62-r1.ebuild:
37 + Add workarounds for nasty bugs #217976 (multiline problems) and #228825
38 + (big endian misdetection on ppc).
39
40 23 Jun 2008; Jeroen Roovers <jer@g.o> autoconf-2.61-r2.ebuild:
41 Stable for HPPA (bug #227603).
42
43
44
45 1.1 sys-devel/autoconf/autoconf-2.62-r1.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/autoconf-2.62-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/autoconf-2.62-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: autoconf-2.62-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/autoconf-2.62-r1.ebuild,v 1.1 2008/06/29 23:12:05 vapier Exp $
55
56 inherit eutils
57
58 DESCRIPTION="Used to create autoconfiguration files"
59 HOMEPAGE="http://www.gnu.org/software/autoconf/autoconf.html"
60 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="2.5"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
65 IUSE="emacs"
66
67 DEPEND=">=sys-apps/texinfo-4.3
68 >=sys-devel/m4-1.4.6
69 dev-lang/perl"
70 RDEPEND="${DEPEND}
71 >=sys-devel/autoconf-wrapper-5"
72 PDEPEND="emacs? ( app-emacs/autoconf-mode )"
73
74 src_unpack() {
75 unpack ${A}
76 cd "${S}"
77 epatch "${FILESDIR}"/${P}-revert-AC_C_BIGENDIAN.patch #228825
78 epatch "${FILESDIR}"/${P}-at-keywords.patch
79 epatch "${FILESDIR}"/${P}-fix-multiline-string.patch #217976
80 }
81
82 src_compile() {
83 # Disable Emacs in the build system since it is in a separate package.
84 export EMACS=no
85 econf --program-suffix="-${PV}" || die
86 # econf updates config.{sub,guess} which forces the manpages
87 # to be regenerated which we dont want to do #146621
88 touch man/*.1
89 # From configure output:
90 # Parallel builds via `make -jN' do not work.
91 emake -j1 || die
92 }
93
94 src_install() {
95 emake DESTDIR="${D}" install || die
96 dodoc AUTHORS BUGS NEWS README TODO THANKS \
97 ChangeLog ChangeLog.0 ChangeLog.1 ChangeLog.2
98 }
99
100
101
102 --
103 gentoo-commits@l.g.o mailing list