summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/ledit/ledit-2.03.ebuild')
-rw-r--r--app-misc/ledit/ledit-2.03.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/app-misc/ledit/ledit-2.03.ebuild b/app-misc/ledit/ledit-2.03.ebuild
deleted file mode 100644
index 4810b328c9a0..000000000000
--- a/app-misc/ledit/ledit-2.03.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils
-
-RESTRICT="installsources"
-IUSE="+ocamlopt"
-
-DESCRIPTION="A line editor to be used with interactive commands"
-SRC_URI="http://pauillac.inria.fr/~ddr/ledit/distrib/src/${P}.tgz"
-HOMEPAGE="http://pauillac.inria.fr/~ddr/ledit/"
-
-DEPEND=">=dev-lang/ocaml-3.09:=[ocamlopt?]
- dev-ml/camlp5:="
-RDEPEND="${DEPEND}"
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-RESTRICT="!ocamlopt? ( strip )"
-
-src_compile() {
- emake -j1 all
- if use ocamlopt; then
- emake -j1 ledit.opt
- fi
-}
-
-src_install() {
- if use ocamlopt; then
- newbin ledit.opt ledit
- else
- newbin ledit.out ledit
- fi
- doman ledit.1
- dodoc CHANGES README
-}