summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2010-04-12 06:34:53 +0000
committerAlexis Ballier <aballier@gentoo.org>2010-04-12 06:34:53 +0000
commit1f6e38e4af4417e3a8f86b03a59e2fec9afeeb6e (patch)
treedf761c906a7e132b5df5eb05f523e4b782353e01
parentremove old (diff)
downloadgentoo-2-1f6e38e4af4417e3a8f86b03a59e2fec9afeeb6e.tar.gz
gentoo-2-1f6e38e4af4417e3a8f86b03a59e2fec9afeeb6e.tar.bz2
gentoo-2-1f6e38e4af4417e3a8f86b03a59e2fec9afeeb6e.zip
remove old
(Portage version: 2.2_rc67/cvs/Linux x86_64)
-rw-r--r--dev-ml/ocamlduce/ChangeLog6
-rw-r--r--dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild69
2 files changed, 5 insertions, 70 deletions
diff --git a/dev-ml/ocamlduce/ChangeLog b/dev-ml/ocamlduce/ChangeLog
index 5ef55b6d8a51..a1bec0fabbf9 100644
--- a/dev-ml/ocamlduce/ChangeLog
+++ b/dev-ml/ocamlduce/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-ml/ocamlduce
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.14 2010/04/09 14:26:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.15 2010/04/12 06:34:53 aballier Exp $
+
+ 12 Apr 2010; Alexis Ballier <aballier@gentoo.org>
+ -ocamlduce-3.11.1.0.ebuild:
+ remove old
*ocamlduce-3.11.2.0 (09 Apr 2010)
diff --git a/dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild b/dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild
deleted file mode 100644
index 5784a96e8219..000000000000
--- a/dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild
+++ /dev/null
@@ -1,69 +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/ocamlduce/ocamlduce-3.11.1.0.ebuild,v 1.2 2009/09/18 22:45:34 aballier Exp $
-
-EAPI="2"
-
-inherit versionator eutils toolchain-funcs flag-o-matic multilib
-
-OCAML_VERSION=3.11.1
-OCAML_TARBALL=ocaml-${OCAML_VERSION}.tar.bz2
-OCAML_PATCHLEVEL=1
-OCAML_GENTOO_PATCHES=ocaml-patches-${OCAML_PATCHLEVEL}.tar.bz2
-
-DESCRIPTION="OCamlDuce is a merger between OCaml and CDuce"
-HOMEPAGE="http://ocamlduce.forge.ocamlcore.org/"
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/225/${P}.tar.gz
- ftp://ftp.inria.fr/INRIA/cristal/ocaml/ocaml-$(get_version_component_range 1-2 ${OCAML_VERSION})/${OCAML_TARBALL}
- mirror://gentoo/${OCAML_GENTOO_PATCHES}"
-
-LICENSE="QPL-1.0 LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE="+ocamlopt"
-
-DEPEND="~dev-lang/ocaml-${OCAML_VERSION}[ocamlopt?]
- >=dev-ml/findlib-1.2.4-r1"
-
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${P}/ocaml-${OCAML_VERSION}
-
-src_unpack() {
- unpack ${P}.tar.gz ${OCAML_GENTOO_PATCHES}
-}
-
-src_prepare() {
- cd "${WORKDIR}/${P}"
- emake OCAML_SOURCE="${DISTDIR}/${OCAML_TARBALL}" prepare || die "failed to prepare"
- cd "${S}"
- EPATCH_SUFFIX="patch" epatch "${WORKDIR}/patches"
-}
-
-src_configure() {
- RAW_LDFLAGS="$(raw-ldflags)" ./configure -prefix /usr \
- --bindir /usr/bin \
- --libdir /usr/$(get_libdir)/ocaml \
- --mandir /usr/share/man \
- -host "${CHOST}" \
- -cc "$(tc-getCC)" \
- -as "$(tc-getAS)" \
- -aspp "$(tc-getCC) -c" \
- --with-pthread || die "configure failed!"
-}
-
-src_compile() {
- if use ocamlopt; then
- emake -f Makefile.ocamlduce -j1 world.opt || die
- else
- emake -f Makefile.ocamlduce -j1 world || die
- fi
-}
-
-src_install() {
- emake -f Makefile.ocamlduce BINDIR="${D}/usr/bin" LIBDIR="${D}/usr/$(get_libdir)/ocaml" installbyte || die
- if use ocamlopt; then
- emake -f Makefile.ocamlduce BINDIR="${D}/usr/bin" LIBDIR="${D}/usr/$(get_libdir)/ocaml" installopt || die
- fi
- dodoc Changes README
-}