summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2009-12-07 08:02:05 +0000
committerAlexis Ballier <aballier@gentoo.org>2009-12-07 08:02:05 +0000
commit7ba543b61f2268f26249107c78dafa45d9501be5 (patch)
treec9f7c3ba8bebdf45738fd9cc728cc877fadd469a /dev-ml/camlzip
parentremove old (diff)
downloadgentoo-2-7ba543b61f2268f26249107c78dafa45d9501be5.tar.gz
gentoo-2-7ba543b61f2268f26249107c78dafa45d9501be5.tar.bz2
gentoo-2-7ba543b61f2268f26249107c78dafa45d9501be5.zip
remove old
(Portage version: 2.2_rc56/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml/camlzip')
-rw-r--r--dev-ml/camlzip/ChangeLog5
-rw-r--r--dev-ml/camlzip/camlzip-1.03-r1.ebuild50
2 files changed, 4 insertions, 51 deletions
diff --git a/dev-ml/camlzip/ChangeLog b/dev-ml/camlzip/ChangeLog
index 8402ec80f3ea..a0385b407d9c 100644
--- a/dev-ml/camlzip/ChangeLog
+++ b/dev-ml/camlzip/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/camlzip
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/ChangeLog,v 1.18 2009/10/21 12:18:33 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/ChangeLog,v 1.19 2009/12/07 08:02:05 aballier Exp $
+
+ 07 Dec 2009; Alexis Ballier <aballier@gentoo.org> -camlzip-1.03-r1.ebuild:
+ remove old
21 Oct 2009; Markus Meier <maekke@gentoo.org> camlzip-1.04.ebuild:
x86 stable, bug #285691
diff --git a/dev-ml/camlzip/camlzip-1.03-r1.ebuild b/dev-ml/camlzip/camlzip-1.03-r1.ebuild
deleted file mode 100644
index 858d65a770fc..000000000000
--- a/dev-ml/camlzip/camlzip-1.03-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/camlzip-1.03-r1.ebuild,v 1.6 2009/06/21 12:35:21 aballier Exp $
-
-EAPI="1"
-
-inherit findlib eutils
-
-IUSE="+ocamlopt"
-
-DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
-HOMEPAGE="http://cristal.inria.fr/~xleroy/software.html#camlzip"
-SRC_URI="http://caml.inria.fr/distrib/bazar-ocaml/${P}.tar.gz"
-
-SLOT="1"
-LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ppc x86 ~x86-fbsd"
-
-RDEPEND=">=dev-lang/ocaml-3.04
- >=sys-libs/zlib-1.1.3"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
- eerror "In order to build ${PN} with native code support from ocaml"
- eerror "You first need to have a native code ocaml compiler."
- eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
- die "Please install ocaml with ocamlopt useflag"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${P}-Makefile-findlib.patch"
- sed -e "s/VERSION/${PV}/" "${FILESDIR}/META" >> META
-}
-
-src_compile() {
- emake all || die "Failed at compilation step !!!"
- if use ocamlopt; then
- emake allopt || die "Failed at ML compilation step !!!"
- fi
-}
-
-src_install() {
- findlib_src_install
-
- dodoc README
-}