summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-05-05 14:20:12 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-05-05 14:20:12 +0000
commit780664bdcb438b1714edee6760cd74eb55390c4c (patch)
tree9eab1b65a8054ef824baca805e2056bb4ecd57e3 /dev-ml/extlib
parentremove old (diff)
downloadgentoo-2-780664bdcb438b1714edee6760cd74eb55390c4c.tar.gz
gentoo-2-780664bdcb438b1714edee6760cd74eb55390c4c.tar.bz2
gentoo-2-780664bdcb438b1714edee6760cd74eb55390c4c.zip
remove old
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml/extlib')
-rw-r--r--dev-ml/extlib/ChangeLog5
-rw-r--r--dev-ml/extlib/extlib-1.5.1.ebuild38
2 files changed, 4 insertions, 39 deletions
diff --git a/dev-ml/extlib/ChangeLog b/dev-ml/extlib/ChangeLog
index 3ad9c8ba6a3f..ad3d0cb9a109 100644
--- a/dev-ml/extlib/ChangeLog
+++ b/dev-ml/extlib/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/extlib
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.15 2012/03/08 11:46:09 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.16 2012/05/05 14:20:12 aballier Exp $
+
+ 05 May 2012; Alexis Ballier <aballier@gentoo.org> -extlib-1.5.1.ebuild:
+ remove old
08 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> extlib-1.5.2.ebuild:
x86 stable wrt bug #400023
diff --git a/dev-ml/extlib/extlib-1.5.1.ebuild b/dev-ml/extlib/extlib-1.5.1.ebuild
deleted file mode 100644
index 8ba29bbfa02c..000000000000
--- a/dev-ml/extlib/extlib-1.5.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.6 2010/01/02 18:34:53 fauli Exp $
-
-EAPI="2"
-
-inherit findlib eutils
-
-DESCRIPTION="Standard library extensions for O'Caml"
-HOMEPAGE="http://code.google.com/p/ocaml-extlib/"
-SRC_URI="http://ocaml-extlib.googlecode.com/files/${P}.tar.gz"
-LICENSE="LGPL-2.1"
-DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="doc +ocamlopt"
-
-src_compile() {
- emake all || die "failed to build"
- if use ocamlopt; then
- emake opt || die "failed to build"
- fi
-
- if use doc; then
- emake doc || die "failed to create documentation"
- fi
-}
-
-src_install () {
- findlib_src_install
-
- # install documentation
- dodoc README.txt || die
-
- if use doc; then
- dohtml doc/* || die
- fi
-}