summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-06-08 15:02:30 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-06-08 15:02:30 +0000
commitc0e3a4cd83a1205e9039a1bace19e07c310f44c0 (patch)
tree9850253dd839c0fb8639af818d18d2dc6bd2b760 /app-misc
parentDrop maintainer from metadata as talked with him. (diff)
downloadgentoo-2-c0e3a4cd83a1205e9039a1bace19e07c310f44c0.tar.gz
gentoo-2-c0e3a4cd83a1205e9039a1bace19e07c310f44c0.tar.bz2
gentoo-2-c0e3a4cd83a1205e9039a1bace19e07c310f44c0.zip
remove old
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/ledit/ChangeLog5
-rw-r--r--app-misc/ledit/ledit-2.02.1.ebuild42
2 files changed, 4 insertions, 43 deletions
diff --git a/app-misc/ledit/ChangeLog b/app-misc/ledit/ChangeLog
index 870256d07341..7e97b455c721 100644
--- a/app-misc/ledit/ChangeLog
+++ b/app-misc/ledit/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/ledit
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ChangeLog,v 1.39 2012/06/08 11:50:35 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ChangeLog,v 1.40 2012/06/08 15:02:30 aballier Exp $
+
+ 08 Jun 2012; Alexis Ballier <aballier@gentoo.org> -ledit-2.02.1.ebuild:
+ remove old
08 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> ledit-2.03.ebuild:
x86 stable wrt bug #416523
diff --git a/app-misc/ledit/ledit-2.02.1.ebuild b/app-misc/ledit/ledit-2.02.1.ebuild
deleted file mode 100644
index 5daaf38b89f4..000000000000
--- a/app-misc/ledit/ledit-2.02.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ledit-2.02.1.ebuild,v 1.4 2011/01/13 22:06:32 ranger Exp $
-
-EAPI=2
-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"
-
-src_compile() {
- emake -j1 all || die "make failed"
- if use ocamlopt; then
- emake -j1 ledit.opt || die "make failed"
- else
- # If using bytecode we dont want to strip the binary as it would remove the
- # bytecode and only leave ocamlrun...
- export STRIP_MASK="*/bin/*"
- fi
-}
-
-src_install() {
- if use ocamlopt; then
- newbin ledit.opt ledit || die
- else
- newbin ledit.out ledit || die
- fi
- doman ledit.1
- dodoc CHANGES README
-}