Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/ledit: ChangeLog ledit-2.03.ebuild
Date: Sun, 19 Feb 2012 13:30:45
Message-Id: 20120219133035.4AADF2004B@flycatcher.gentoo.org
1 aballier 12/02/19 13:30:35
2
3 Modified: ChangeLog
4 Added: ledit-2.03.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.36 app-misc/ledit/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/ledit/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/ledit/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/ledit/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/ledit/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 21 Jan 2011 00:32:50 -0000 1.35
24 +++ ChangeLog 19 Feb 2012 13:30:35 -0000 1.36
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-misc/ledit
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ChangeLog,v 1.35 2011/01/21 00:32:50 aballier Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ChangeLog,v 1.36 2012/02/19 13:30:35 aballier Exp $
31 +
32 +*ledit-2.03 (19 Feb 2012)
33 +
34 + 19 Feb 2012; Alexis Ballier <aballier@g.o> +ledit-2.03.ebuild:
35 + version bump
36
37 21 Jan 2011; Alexis Ballier <aballier@g.o> -ledit-2.01.ebuild,
38 -ledit-2.02.ebuild:
39
40
41
42 1.1 app-misc/ledit/ledit-2.03.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/ledit/ledit-2.03.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/ledit/ledit-2.03.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ledit-2.03.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ledit-2.03.ebuild,v 1.1 2012/02/19 13:30:35 aballier Exp $
52
53 EAPI=2
54 inherit eutils
55
56 RESTRICT="installsources"
57 IUSE="+ocamlopt"
58
59 DESCRIPTION="A line editor to be used with interactive commands."
60 SRC_URI="http://pauillac.inria.fr/~ddr/ledit/distrib/src/${P}.tgz"
61 HOMEPAGE="http://pauillac.inria.fr/~ddr/ledit/"
62
63 DEPEND=">=dev-lang/ocaml-3.09[ocamlopt?]
64 dev-ml/camlp5"
65 RDEPEND="${DEPEND}"
66
67 SLOT="0"
68 LICENSE="BSD"
69 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
70
71 src_compile() {
72 emake -j1 all || die "make failed"
73 if use ocamlopt; then
74 emake -j1 ledit.opt || die "make failed"
75 else
76 # If using bytecode we dont want to strip the binary as it would remove the
77 # bytecode and only leave ocamlrun...
78 export STRIP_MASK="*/bin/*"
79 fi
80 }
81
82 src_install() {
83 if use ocamlopt; then
84 newbin ledit.opt ledit || die
85 else
86 newbin ledit.out ledit || die
87 fi
88 doman ledit.1
89 dodoc CHANGES README
90 }