summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ml/extlib/extlib-1.4.ebuild')
-rw-r--r--dev-ml/extlib/extlib-1.4.ebuild34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-ml/extlib/extlib-1.4.ebuild b/dev-ml/extlib/extlib-1.4.ebuild
deleted file mode 100644
index 0c6cc039094c..000000000000
--- a/dev-ml/extlib/extlib-1.4.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.4.ebuild,v 1.2 2008/01/27 12:19:53 grobian Exp $
-
-inherit findlib
-
-DESCRIPTION="Standard library extensions for O'Caml"
-HOMEPAGE="http://ocaml-lib.sourceforge.net/"
-SRC_URI="mirror://sourceforge/ocaml-lib/${P}.tgz"
-LICENSE="LGPL-2.1"
-DEPEND=">=dev-lang/ocaml-3.07"
-SLOT="0"
-KEYWORDS="x86 ppc amd64"
-IUSE="doc"
-
-src_compile() {
- sed -i -e "s/IOO//" Makefile
- make all opt
-
- if use doc; then
- make doc
- fi
-}
-
-src_install () {
- findlib_src_install
-
- # install documentation
- dodoc README.txt
-
- if use doc; then
- dohtml doc/*
- fi
-}