Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/byacc: byacc-1.9-r3.ebuild ChangeLog
Date: Mon, 06 Sep 2010 17:43:56
Message-Id: 20100906174350.5A92C20051@flycatcher.gentoo.org
1 xmw 10/09/06 17:43:50
2
3 Modified: ChangeLog
4 Added: byacc-1.9-r3.ebuild
5 Log:
6 Rev bump to fix LDFLAGS (bug #336197)
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.24 dev-util/byacc/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/byacc/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/byacc/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/byacc/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 15 Jan 2010 21:11:02 -0000 1.23
23 +++ ChangeLog 6 Sep 2010 17:43:50 -0000 1.24
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/byacc
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.23 2010/01/15 21:11:02 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.24 2010/09/06 17:43:50 xmw Exp $
29 +
30 +*byacc-1.9-r3 (06 Sep 2010)
31 +
32 + 06 Sep 2010; Michael Weber <xmw@g.o> +byacc-1.9-r3.ebuild:
33 + Rev bump to fix LDFLAGS (bug #336197).
34
35 15 Jan 2010; Christian Faulhammer <fauli@g.o> byacc-1.9-r2.ebuild:
36 Transfer Prefix keywords
37
38
39
40 1.1 dev-util/byacc/byacc-1.9-r3.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: byacc-1.9-r3.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.1 2010/09/06 17:43:50 xmw Exp $
50
51 EAPI=2
52
53 inherit eutils
54
55 DESCRIPTION="the best variant of the Yacc parser generator"
56 HOMEPAGE="http://dickey.his.com/byacc/byacc.html"
57 SRC_URI="http://sources.isc.org/devel/tools/${P}.tar.gz"
58
59 LICENSE="public-domain"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
62 IUSE=""
63
64 src_prepare() {
65 epatch "${FILESDIR}"/mkstemp.patch
66
67 # The following patch fixes yacc to run correctly on ia64 (and
68 # other 64-bit arches). See bug 46233
69 epatch "${FILESDIR}"/byacc-1.9-ia64.patch
70
71 # avoid stack access error, bug 232005
72 epatch "${FILESDIR}"/${P}-CVE-2008-3196.patch
73 }
74
75 src_compile() {
76 emake PROGRAM=byacc CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die
77 }
78
79 src_install() {
80 dobin byacc || die
81 mv yacc.1 byacc.1 || die
82 doman byacc.1 || die
83 dodoc ACKNOWLEDGEMENTS MANIFEST NEW_FEATURES NOTES README || die
84 }