summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2011-01-21 00:32:51 +0000
committerAlexis Ballier <aballier@gentoo.org>2011-01-21 00:32:51 +0000
commit184dd267298a7a1879aea81d87159a9a7d261f80 (patch)
tree8feddd8f8482bb8e3e02413ebbf8257fc0231394 /app-misc/ledit
parentVersion bump, including security fix for CVE-2010-4351: IcedTea JNLP Security... (diff)
downloadgentoo-2-184dd267298a7a1879aea81d87159a9a7d261f80.tar.gz
gentoo-2-184dd267298a7a1879aea81d87159a9a7d261f80.tar.bz2
gentoo-2-184dd267298a7a1879aea81d87159a9a7d261f80.zip
remove old
(Portage version: 2.2.0_alpha18/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/ledit')
-rw-r--r--app-misc/ledit/ChangeLog6
-rw-r--r--app-misc/ledit/ledit-2.01.ebuild42
-rw-r--r--app-misc/ledit/ledit-2.02.ebuild42
3 files changed, 5 insertions, 85 deletions
diff --git a/app-misc/ledit/ChangeLog b/app-misc/ledit/ChangeLog
index 9d1a53bcf35b..537d1faa8e8e 100644
--- a/app-misc/ledit/ChangeLog
+++ b/app-misc/ledit/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-misc/ledit
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ChangeLog,v 1.34 2011/01/13 22:06:32 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ChangeLog,v 1.35 2011/01/21 00:32:50 aballier Exp $
+
+ 21 Jan 2011; Alexis Ballier <aballier@gentoo.org> -ledit-2.01.ebuild,
+ -ledit-2.02.ebuild:
+ remove old
13 Jan 2011; Brent Baude <ranger@gentoo.org> ledit-2.02.1.ebuild:
stable ppc, bug 349625
diff --git a/app-misc/ledit/ledit-2.01.ebuild b/app-misc/ledit/ledit-2.01.ebuild
deleted file mode 100644
index d45ca8115036..000000000000
--- a/app-misc/ledit/ledit-2.01.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ledit-2.01.ebuild,v 1.5 2009/08/15 13:02:14 ssuominen 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
-}
diff --git a/app-misc/ledit/ledit-2.02.ebuild b/app-misc/ledit/ledit-2.02.ebuild
deleted file mode 100644
index 1c2d21db37fa..000000000000
--- a/app-misc/ledit/ledit-2.02.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ledit-2.02.ebuild,v 1.1 2010/11/17 23:06:32 aballier 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
-}