Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/btyacc: ChangeLog btyacc-3.0-r1.ebuild
Date: Fri, 04 Sep 2009 08:25:45
Message-Id: E1MjYve-0007OM-QW@stork.gentoo.org
1 jer 09/09/04 13:34:14
2
3 Modified: ChangeLog
4 Added: btyacc-3.0-r1.ebuild
5 Log:
6 Respect CC (bug #243974), append to CFLAGS (but not -g), append to LDFLAGS, use system LD.
7 (Portage version: 2.2_rc40/cvs/Linux i686)
8
9 Revision Changes Path
10 1.10 dev-util/btyacc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 31 Oct 2008 06:19:16 -0000 1.9
23 +++ ChangeLog 4 Sep 2009 13:34:14 -0000 1.10
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-util/btyacc
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v 1.9 2008/10/31 06:19:16 wormo Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v 1.10 2009/09/04 13:34:14 jer Exp $
30 +
31 +*btyacc-3.0-r1 (04 Sep 2009)
32 +
33 + 04 Sep 2009; Jeroen Roovers <jer@g.o> +btyacc-3.0-r1.ebuild,
34 + +files/btyacc-3.0-makefile.patch:
35 + Respect CC (bug #243974), append to CFLAGS (but not -g), append to
36 + LDFLAGS, use system LD.
37
38 31 Oct 2008; Stephanie Lockwood-Childs <wormo@g.o>
39 +files/btyacc-3.0-includes.patch, btyacc-3.0.ebuild:
40
41
42
43 1.1 dev-util/btyacc/btyacc-3.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: btyacc-3.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild,v 1.1 2009/09/04 13:34:14 jer Exp $
53
54 EAPI="2"
55
56 inherit eutils toolchain-funcs
57
58 MY_P=${P/./-}
59 IUSE=""
60 DESCRIPTION="Backtracking YACC - modified from Berkeley YACC"
61 HOMEPAGE="http://www.siber.com/btyacc"
62 SRC_URI="http://www.siber.com/btyacc/${MY_P}.tar.gz"
63
64 LICENSE="freedist"
65 SLOT="0"
66 KEYWORDS="~ppc ~x86"
67
68 S="${WORKDIR}"
69
70 src_prepare() {
71 cp -av Makefile{,.orig}
72 epatch "${FILESDIR}/${P}-includes.patch"
73 epatch "${FILESDIR}/${P}-makefile.patch"
74 }
75
76 src_compile() {
77 tc-export CC
78 emake || die
79 }
80
81 src_install() {
82 dobin btyacc
83 dodoc README README.BYACC
84 newman manpage btyacc.1
85 }