Gentoo Archives: gentoo-commits

From: "Jonathan Callen (abcd)" <abcd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.1.ebuild
Date: Sun, 24 Jan 2010 21:25:07
Message-Id: E1NZ9x4-0002v3-0t@stork.gentoo.org
1 abcd 10/01/24 21:24:58
2
3 Modified: ChangeLog bison-2.4.1.ebuild
4 Log:
5 Remove old, unused build-dep on flex; cleanup (no patches => no need to clean up after them)
6 (Portage version: -svn/cvs/Linux i686)
7
8 Revision Changes Path
9 1.78 sys-devel/bison/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.78&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.78&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.77&r2=1.78
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
18 retrieving revision 1.77
19 retrieving revision 1.78
20 diff -u -r1.77 -r1.78
21 --- ChangeLog 22 Dec 2008 05:48:26 -0000 1.77
22 +++ ChangeLog 24 Jan 2010 21:24:57 -0000 1.78
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sys-devel/bison
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.77 2008/12/22 05:48:26 vapier Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.78 2010/01/24 21:24:57 abcd Exp $
29 +
30 + 24 Jan 2010; Jonathan Callen <abcd@g.o> bison-2.4.1.ebuild:
31 + Remove old, unused build-dep on flex; cleanup (no patches => no need to
32 + clean up after them)
33
34 *bison-2.4.1 (22 Dec 2008)
35
36
37
38
39 1.2 sys-devel/bison/bison-2.4.1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?r1=1.1&r2=1.2
44
45 Index: bison-2.4.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- bison-2.4.1.ebuild 22 Dec 2008 05:48:26 -0000 1.1
52 +++ bison-2.4.1.ebuild 24 Jan 2010 21:24:57 -0000 1.2
53 @@ -1,6 +1,6 @@
54 -# Copyright 1999-2008 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.1 2008/12/22 05:48:26 vapier Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.2 2010/01/24 21:24:57 abcd Exp $
59
60 inherit toolchain-funcs flag-o-matic
61
62 @@ -13,21 +13,12 @@
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
64 IUSE="nls static"
65
66 -# need flex since we patch scan-code.l in ${P}-compat.patch
67 -DEPEND="nls? ( sys-devel/gettext )
68 - sys-devel/flex"
69 +DEPEND="nls? ( sys-devel/gettext )"
70 RDEPEND="sys-devel/m4"
71
72 -src_unpack() {
73 - unpack ${A}
74 - cd "${S}"
75 - # since we patch sources, update mtimes on docs so we dont regen
76 - touch doc/bison.1 doc/bison.info doc/cross-options.texi
77 -}
78 -
79 src_compile() {
80 use static && append-ldflags -static
81 - econf $(use_enable nls) || die
82 + econf $(use_enable nls)
83 emake || die
84 }