diff options
Diffstat (limited to 'app-misc/ledit/ledit-1.11.ebuild')
-rw-r--r-- | app-misc/ledit/ledit-1.11.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-misc/ledit/ledit-1.11.ebuild b/app-misc/ledit/ledit-1.11.ebuild new file mode 100644 index 000000000000..5e94d08912a5 --- /dev/null +++ b/app-misc/ledit/ledit-1.11.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ledit-1.11.ebuild,v 1.1 2004/02/08 22:27:40 mattam Exp $ + +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://cristal.inria.fr/~ddr/" + +DEPEND=">=dev-lang/ocaml-3.06" +RDEPEND="${DEPEND}" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~x86 ~ppc" + +src_compile() +{ + 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 +} |