Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ml/menhir: menhir-20140422.ebuild ChangeLog
Date: Mon, 01 Dec 2014 14:17:42
Message-Id: 20141201141738.38BDFB4A8@oystercatcher.gentoo.org
1 aballier 14/12/01 14:17:38
2
3 Modified: ChangeLog
4 Added: menhir-20140422.ebuild
5 Log:
6 version bump
7
8 Signed-off-by: aballier@g.o
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.2 dev-ml/menhir/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/menhir/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/menhir/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/menhir/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-ml/menhir/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 7 Feb 2013 20:36:44 -0000 1.1
25 +++ ChangeLog 1 Dec 2014 14:17:38 -0000 1.2
26 @@ -1,6 +1,11 @@
27 # ChangeLog for dev-ml/menhir
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/menhir/ChangeLog,v 1.1 2013/02/07 20:36:44 aballier Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/menhir/ChangeLog,v 1.2 2014/12/01 14:17:38 aballier Exp $
32 +
33 +*menhir-20140422 (01 Dec 2014)
34 +
35 + 01 Dec 2014; Alexis Ballier <aballier@g.o> +menhir-20140422.ebuild:
36 + version bump
37
38 *menhir-20130116 (07 Feb 2013)
39
40
41
42
43 1.1 dev-ml/menhir/menhir-20140422.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/menhir/menhir-20140422.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/menhir/menhir-20140422.ebuild?rev=1.1&content-type=text/plain
47
48 Index: menhir-20140422.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ml/menhir/menhir-20140422.ebuild,v 1.1 2014/12/01 14:17:38 aballier Exp $
53
54 EAPI=5
55
56 inherit findlib
57
58 DESCRIPTION="LR(1) parser generator for the OCaml language"
59 HOMEPAGE="http://gallium.inria.fr/~fpottier/menhir/"
60 SRC_URI="http://gallium.inria.fr/~fpottier/menhir/${P}.tar.gz"
61
62 LICENSE="QPL-1.0 LGPL-2-with-linking-exception"
63 SLOT="0/${PV}"
64 KEYWORDS="~amd64"
65 IUSE="examples +ocamlopt"
66
67 DEPEND=">=dev-lang/ocaml-3.09:=[ocamlopt?]"
68 RDEPEND="${DEPEND}"
69
70 src_configure() {
71 if ! use ocamlopt ; then
72 export TARGET=byte
73 fi
74 }
75
76 src_compile() {
77 emake PREFIX="${EPREFIX}"/usr -j1
78 }
79
80 src_install() {
81 findlib_src_preinst
82 emake PREFIX="${ED}"/usr docdir="${ED}"/usr/share/doc/"${PF}" $(use examples || echo "DOCS=manual.pdf") install
83 use examples && docompress -x /usr/share/doc/${PF}/demos
84 dodoc AUTHORS CHANGES
85 }