summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-01-07 11:17:13 +0000
committerSam James <sam@gentoo.org>2021-01-07 11:33:12 +0000
commit176195451873110aea2013db7bda0f2ecafea697 (patch)
tree00bb6bfe59ccb420b5988860ba895797d4d2cc08 /app-misc/ledit/ledit-2.03.ebuild
parentsys-libs/glibc: Patchlevel bump (diff)
downloadgentoo-176195451873110aea2013db7bda0f2ecafea697.tar.gz
gentoo-176195451873110aea2013db7bda0f2ecafea697.tar.bz2
gentoo-176195451873110aea2013db7bda0f2ecafea697.zip
app-misc/ledit: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-misc/ledit/ledit-2.03.ebuild')
-rw-r--r--app-misc/ledit/ledit-2.03.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/app-misc/ledit/ledit-2.03.ebuild b/app-misc/ledit/ledit-2.03.ebuild
deleted file mode 100644
index 0cc52ce565ac..000000000000
--- a/app-misc/ledit/ledit-2.03.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils
-
-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/"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="+ocamlopt"
-RESTRICT="installsources !ocamlopt? ( strip )"
-
-DEPEND=">=dev-lang/ocaml-3.09:=[ocamlopt?]
- dev-ml/camlp5:="
-RDEPEND="${DEPEND}"
-
-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
-}