summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2011-01-20 19:40:10 +0000
committerAlexis Ballier <aballier@gentoo.org>2011-01-20 19:40:10 +0000
commite2e4534c09870e0909e1d7b878d64c55d092c9d9 (patch)
tree89b6740db4da8f2f31ccfe2869f6af9bc1fcf64f /dev-ml/camlp5
parentImport a patch from upstream/debian to fix latest coq build failure, bug #352... (diff)
downloadgentoo-2-e2e4534c09870e0909e1d7b878d64c55d092c9d9.tar.gz
gentoo-2-e2e4534c09870e0909e1d7b878d64c55d092c9d9.tar.bz2
gentoo-2-e2e4534c09870e0909e1d7b878d64c55d092c9d9.zip
remove old
(Portage version: 2.2.0_alpha18/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml/camlp5')
-rw-r--r--dev-ml/camlp5/ChangeLog5
-rw-r--r--dev-ml/camlp5/camlp5-6.02.1.ebuild46
2 files changed, 4 insertions, 47 deletions
diff --git a/dev-ml/camlp5/ChangeLog b/dev-ml/camlp5/ChangeLog
index 253a741ae27b..7d2095d28bd3 100644
--- a/dev-ml/camlp5/ChangeLog
+++ b/dev-ml/camlp5/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/camlp5
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp5/ChangeLog,v 1.53 2011/01/20 19:39:06 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp5/ChangeLog,v 1.54 2011/01/20 19:40:10 aballier Exp $
+
+ 20 Jan 2011; Alexis Ballier <aballier@gentoo.org> -camlp5-6.02.1.ebuild:
+ remove old
*camlp5-6.02.1-r1 (20 Jan 2011)
diff --git a/dev-ml/camlp5/camlp5-6.02.1.ebuild b/dev-ml/camlp5/camlp5-6.02.1.ebuild
deleted file mode 100644
index b9ed5dfe9b62..000000000000
--- a/dev-ml/camlp5/camlp5-6.02.1.ebuild
+++ /dev/null
@@ -1,46 +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/camlp5/camlp5-6.02.1.ebuild,v 1.1 2010/12/07 15:12:12 aballier Exp $
-
-EAPI="2"
-
-inherit multilib findlib
-
-DESCRIPTION="A preprocessor-pretty-printer of ocaml"
-HOMEPAGE="http://pauillac.inria.fr/~ddr/camlp5/"
-SRC_URI="http://pauillac.inria.fr/~ddr/camlp5/distrib/src/${P}.tgz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
-IUSE="doc +ocamlopt"
-
-DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?]"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- ./configure \
- -prefix /usr \
- -bindir /usr/bin \
- -libdir /usr/$(get_libdir)/ocaml \
- -mandir /usr/share/man || die "configure failed"
-}
-
-src_compile(){
- emake || die "emake failed"
- if use ocamlopt; then
- emake opt || die "Compiling native code programs failed"
- emake opt.opt || die "Compiling native code programs failed"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- # findlib support
- insinto "$(ocamlfind printconf destdir)/${PN}"
- doins etc/META || die "failed to install META file for findlib support"
-
- use doc && dohtml -r doc/*
-
- dodoc CHANGES DEVEL ICHANGES README UPGRADING MODE
-}