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