Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/flex: flex-2.5.39.ebuild ChangeLog
Date: Sat, 29 Mar 2014 02:44:24
Message-Id: 20140329024421.5CDBB20054@flycatcher.gentoo.org
1 radhermit 14/03/29 02:44:21
2
3 Modified: ChangeLog
4 Added: flex-2.5.39.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.116 sys-devel/flex/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.116&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.116&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.115&r2=1.116
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
20 retrieving revision 1.115
21 retrieving revision 1.116
22 diff -u -r1.115 -r1.116
23 --- ChangeLog 28 Mar 2014 15:37:24 -0000 1.115
24 +++ ChangeLog 29 Mar 2014 02:44:21 -0000 1.116
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-devel/flex
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.115 2014/03/28 15:37:24 ottxor Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.116 2014/03/29 02:44:21 radhermit Exp $
30 +
31 +*flex-2.5.39 (29 Mar 2014)
32 +
33 + 29 Mar 2014; Tim Harder <radhermit@g.o> +flex-2.5.39.ebuild:
34 + Version bump.
35
36 28 Mar 2014; Christoph Junghans <ottxor@g.o> flex-2.5.38-r1.ebuild:
37 added prefix keywords
38
39
40
41 1.1 sys-devel/flex/flex-2.5.39.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.39.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.39.ebuild?rev=1.1&content-type=text/plain
45
46 Index: flex-2.5.39.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.39.ebuild,v 1.1 2014/03/29 02:44:21 radhermit Exp $
51
52 EAPI="4"
53
54 inherit flag-o-matic
55
56 DESCRIPTION="The Fast Lexical Analyzer"
57 HOMEPAGE="http://flex.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/flex/${P}.tar.xz"
59
60 LICENSE="FLEX"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
63 IUSE="nls static test"
64
65 # We want bison explicitly and not yacc in general #381273
66 RDEPEND="sys-devel/m4"
67 DEPEND="${RDEPEND}
68 app-arch/xz-utils
69 nls? ( sys-devel/gettext )
70 test? ( sys-devel/bison )"
71
72 src_configure() {
73 use static && append-ldflags -static
74 # Do not install shared libs #503522
75 econf \
76 --disable-shared \
77 $(use_enable nls) \
78 --docdir='$(datarootdir)/doc/'${PF}
79 }
80
81 src_install() {
82 default
83 dodoc ONEWS
84 find "${ED}" -name '*.la' -delete
85 rm "${ED}"/usr/share/doc/${PF}/{COPYING,flex.pdf} || die
86 dosym flex /usr/bin/lex
87 }