blob: f5a389cc2deadd98fc4250631b60570605ec877b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ledit-1.11-r1.ebuild,v 1.5 2007/02/04 23:24:47 beandog Exp $
inherit eutils
IUSE=""
DESCRIPTION="A line editor to be used with interactive commands."
SRC_URI="ftp://ftp.inria.fr/INRIA/Projects/cristal/Daniel.de_Rauglaudre/Tools/${P}.tar.gz"
HOMEPAGE="http://caml.inria.fr/cgi-bin/hump.en.cgi?contrib=301"
DEPEND=">=dev-lang/ocaml-3.09"
RDEPEND=""
SLOT="0"
LICENSE="BSD"
KEYWORDS="amd64 ppc x86"
src_compile()
{
epatch "${FILESDIR}/${P}-loc.patch" || die "patch failed"
make || die "make failed"
make ledit.opt || die "make failed"
}
src_install()
{
newbin ledit.opt ledit
newman ledit.l ledit.1
dodoc Changes LICENSE README
}
|