summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2009-05-14 20:02:16 +0000
committerAlexis Ballier <aballier@gentoo.org>2009-05-14 20:02:16 +0000
commit8cd9d9aebd73bf3d5c24c2ce09dc001be49fe029 (patch)
tree6e7111ca31eae922feccb5d307b789f493380dac /dev-ml/camlp5
parentamd64 stable, bug #266986 (diff)
downloadgentoo-2-8cd9d9aebd73bf3d5c24c2ce09dc001be49fe029.tar.gz
gentoo-2-8cd9d9aebd73bf3d5c24c2ce09dc001be49fe029.tar.bz2
gentoo-2-8cd9d9aebd73bf3d5c24c2ce09dc001be49fe029.zip
punt old
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml/camlp5')
-rw-r--r--dev-ml/camlp5/ChangeLog6
-rw-r--r--dev-ml/camlp5/camlp5-5.09.ebuild54
-rw-r--r--dev-ml/camlp5/camlp5-5.10.ebuild46
3 files changed, 5 insertions, 101 deletions
diff --git a/dev-ml/camlp5/ChangeLog b/dev-ml/camlp5/ChangeLog
index 7b088bd7a19d..8691ade96ef4 100644
--- a/dev-ml/camlp5/ChangeLog
+++ b/dev-ml/camlp5/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-ml/camlp5
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp5/ChangeLog,v 1.33 2009/05/14 19:06:32 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp5/ChangeLog,v 1.34 2009/05/14 20:02:16 aballier Exp $
+
+ 14 May 2009; Alexis Ballier <aballier@gentoo.org> -camlp5-5.09.ebuild,
+ -camlp5-5.10.ebuild:
+ punt old
14 May 2009; Ferris McCormick <fmccor@gentoo.org> camlp5-5.11.ebuild:
Sparc stable, Bug #260604.
diff --git a/dev-ml/camlp5/camlp5-5.09.ebuild b/dev-ml/camlp5/camlp5-5.09.ebuild
deleted file mode 100644
index 0f064507f4ab..000000000000
--- a/dev-ml/camlp5/camlp5-5.09.ebuild
+++ /dev/null
@@ -1,54 +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/camlp5/camlp5-5.09.ebuild,v 1.6 2008/09/25 12:09:13 aballier Exp $
-
-EAPI="1"
-
-inherit multilib findlib eutils
-
-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.09"
-RDEPEND="${DEPEND}"
-
-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_compile() {
- ./configure \
- -prefix /usr \
- -bindir /usr/bin \
- -libdir /usr/$(get_libdir)/ocaml \
- -mandir /usr/share/man || die "configure failed"
-
- emake -j1 || die "emake failed"
- if use ocamlopt; then
- emake -j1 opt || die "Compiling native code programs failed"
- emake -j1 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
-}
diff --git a/dev-ml/camlp5/camlp5-5.10.ebuild b/dev-ml/camlp5/camlp5-5.10.ebuild
deleted file mode 100644
index dd1fba878abb..000000000000
--- a/dev-ml/camlp5/camlp5-5.10.ebuild
+++ /dev/null
@@ -1,46 +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/camlp5/camlp5-5.10.ebuild,v 1.1 2008/10/16 14:35:08 aballier Exp $
-
-EAPI="2"
-
-inherit multilib findlib eutils
-
-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 -j1 || die "emake failed"
- if use ocamlopt; then
- emake -j1 opt || die "Compiling native code programs failed"
- emake -j1 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
-}