Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/ragel: ChangeLog ragel-6.4.ebuild
Date: Sun, 22 Mar 2009 19:06:21
Message-Id: E1LlSzy-0000aR-LP@stork.gentoo.org
1 flameeyes 09/03/22 19:06:18
2
3 Modified: ChangeLog
4 Added: ragel-6.4.ebuild
5 Log:
6 Version bump; since the new version tremendously simplified the build system, don't sed it around and simply install the binary by hand. Also download the PDF guide with USE=doc instead of building it from the LaTeX sources.
7 (Portage version: 2.2_rc26/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.20 dev-util/ragel/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ragel/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ragel/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ragel/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/ragel/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 14 Dec 2008 16:02:25 -0000 1.19
23 +++ ChangeLog 22 Mar 2009 19:06:18 -0000 1.20
24 @@ -1,6 +1,14 @@
25 # ChangeLog for dev-util/ragel
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ragel/ChangeLog,v 1.19 2008/12/14 16:02:25 aballier Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/ragel/ChangeLog,v 1.20 2009/03/22 19:06:18 flameeyes Exp $
30 +
31 +*ragel-6.4 (22 Mar 2009)
32 +
33 + 22 Mar 2009; Diego E. Pettenò <flameeyes@g.o> +ragel-6.4.ebuild:
34 + Version bump; since the new version tremendously simplified the build
35 + system, don't sed it around and simply install the binary by hand. Also
36 + download the PDF guide with USE=doc instead of building it from the LaTeX
37 + sources.
38
39 14 Dec 2008; Alexis Ballier <aballier@g.o> ragel-6.3.ebuild:
40 typo: textex -> tetex
41
42
43
44 1.1 dev-util/ragel/ragel-6.4.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ragel/ragel-6.4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ragel/ragel-6.4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: ragel-6.4.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-util/ragel/ragel-6.4.ebuild,v 1.1 2009/03/22 19:06:18 flameeyes Exp $
54
55 inherit eutils
56
57 DESCRIPTION="Compiles finite state machines from regular languages into executable code."
58 HOMEPAGE="http://www.complang.org/ragel/"
59 SRC_URI="http://www.complang.org/ragel/${P}.tar.gz
60 doc? ( http://www.complang.org/ragel/ragel-guide-${PV}.pdf )"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
65 IUSE="doc vim-syntax"
66
67 DEPEND=""
68 RDEPEND=""
69
70 src_compile() {
71 emake || die "emake failed"
72 emake -C doc ragel.1 || die "emake manpage failed"
73 }
74
75 src_install() {
76 dobin ragel/ragel || die "dobin failed"
77 doman doc/ragel.1 || die "doman failed"
78 dodoc ChangeLog CREDITS README TODO || die "dodoc failed"
79
80 if use doc; then
81 insinto /usr/share/doc/"${PF}"
82 newins "${DISTDIR}"/ragel-guide-${PV}.pdf "ragel-guide.pdf" || die "newins ragel-guide failed"
83 fi
84
85 if use vim-syntax; then
86 insinto /usr/share/vim/vimfiles/syntax
87 doins ragel.vim || die "doins ragel.vim failed"
88 fi
89 }