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/m4: ChangeLog m4-1.4.10-r2.ebuild
Date: Sat, 29 Mar 2008 17:44:28
Message-Id: E1Jff6Q-0005uv-5v@stork.gentoo.org
1 vapier 08/03/29 17:44:26
2
3 Modified: ChangeLog
4 Added: m4-1.4.10-r2.ebuild
5 Log:
6 Grab fix from upstream gnulib for %n crash #213833 by Sergey Dryabzhinsky.
7 (Portage version: 2.2_pre5)
8
9 Revision Changes Path
10 1.102 sys-devel/m4/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/m4/ChangeLog?rev=1.102&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/m4/ChangeLog?rev=1.102&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/m4/ChangeLog?r1=1.101&r2=1.102
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/m4/ChangeLog,v
19 retrieving revision 1.101
20 retrieving revision 1.102
21 diff -u -r1.101 -r1.102
22 --- ChangeLog 16 Oct 2007 14:12:04 -0000 1.101
23 +++ ChangeLog 29 Mar 2008 17:44:25 -0000 1.102
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sys-devel/m4
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/ChangeLog,v 1.101 2007/10/16 14:12:04 angelos Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/ChangeLog,v 1.102 2008/03/29 17:44:25 vapier Exp $
30 +
31 +*m4-1.4.10-r2 (29 Mar 2008)
32 +
33 + 29 Mar 2008; Mike Frysinger <vapier@g.o>
34 + +files/m4-1.4.10-gnulib-vasnprintf.patch, files/m4-1.4.10-seek.patch,
35 + +m4-1.4.10-r2.ebuild:
36 + Grab fix from upstream gnulib for %n crash #213833 by Sergey Dryabzhinsky.
37
38 16 Oct 2007; Christoph Mende <angelos@g.o> m4-1.4.10.ebuild:
39 Stable on amd64 wrt bug #195257
40
41
42
43 1.1 sys-devel/m4/m4-1.4.10-r2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/m4/m4-1.4.10-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/m4/m4-1.4.10-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: m4-1.4.10-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/m4-1.4.10-r2.ebuild,v 1.1 2008/03/29 17:44:25 vapier Exp $
53
54 inherit eutils
55
56 DESCRIPTION="GNU macro processor"
57 HOMEPAGE="http://www.gnu.org/software/m4/m4.html"
58 SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2
59 ftp://ftp.seindal.dk/gnu/${P}.tar.bz2"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
64 IUSE="examples nls"
65
66 # remember: cannot dep on autoconf since it needs us
67 DEPEND="nls? ( sys-devel/gettext )"
68 RDEPEND=""
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 epatch "${FILESDIR}"/${P}-seek.patch
74 epatch "${FILESDIR}"/${P}-gnulib-vasnprintf.patch #213833
75 }
76
77 src_compile() {
78 local myconf=""
79 [[ ${USERLAND} != "GNU" ]] && myconf="--program-prefix=g"
80 econf \
81 $(use_enable nls) \
82 --enable-changeword \
83 ${myconf} \
84 || die
85 emake || die
86 }
87
88 src_install() {
89 emake install DESTDIR="${D}" || die
90 dodoc BACKLOG ChangeLog NEWS README* THANKS TODO
91 if use examples ; then
92 docinto examples
93 dodoc examples/*
94 rm -f "${D}"/usr/share/doc/${PF}/examples/Makefile*
95 fi
96 rm -f "${D}"/usr/lib/charset.alias #172864
97 }
98
99
100
101 --
102 gentoo-commits@l.g.o mailing list