diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-12-07 08:03:57 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-12-07 08:03:57 +0000 |
commit | 097f26e5948d791595790aeec13ea9cf73ad5cf4 (patch) | |
tree | 58bbb6192d8aacdc181d5521dbb149a053fb2002 /dev-ml | |
parent | remove old (diff) | |
download | gentoo-2-097f26e5948d791595790aeec13ea9cf73ad5cf4.tar.gz gentoo-2-097f26e5948d791595790aeec13ea9cf73ad5cf4.tar.bz2 gentoo-2-097f26e5948d791595790aeec13ea9cf73ad5cf4.zip |
remove old
(Portage version: 2.2_rc56/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/ocamlduce/ChangeLog | 6 | ||||
-rw-r--r-- | dev-ml/ocamlduce/ocamlduce-3.10.2.ebuild | 38 |
2 files changed, 5 insertions, 39 deletions
diff --git a/dev-ml/ocamlduce/ChangeLog b/dev-ml/ocamlduce/ChangeLog index a1fbae19c890..f188d5a63237 100644 --- a/dev-ml/ocamlduce/ChangeLog +++ b/dev-ml/ocamlduce/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ml/ocamlduce # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.12 2009/09/18 22:45:34 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.13 2009/12/07 08:03:57 aballier Exp $ + + 07 Dec 2009; Alexis Ballier <aballier@gentoo.org> + -ocamlduce-3.10.2.ebuild: + remove old 18 Sep 2009; Alexis Ballier <aballier@gentoo.org> ocamlduce-3.11.1.0.ebuild: diff --git a/dev-ml/ocamlduce/ocamlduce-3.10.2.ebuild b/dev-ml/ocamlduce/ocamlduce-3.10.2.ebuild deleted file mode 100644 index 3bc06fa6f0e9..000000000000 --- a/dev-ml/ocamlduce/ocamlduce-3.10.2.ebuild +++ /dev/null @@ -1,38 +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.10.2.ebuild,v 1.2 2009/06/20 15:17:50 aballier Exp $ - -EAPI="2" - -inherit eutils findlib - -MY_P="${P/_p/pl}" -DESCRIPTION="OCamlDuce is a merger between OCaml and CDuce" -HOMEPAGE="http://www.cduce.org/ocaml.html" -SRC_URI="http://gallium.inria.fr/~frisch/ocamlcduce/download/${MY_P}.tar.gz" - -LICENSE="QPL-1.0 LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~x86-fbsd" -IUSE="+ocamlopt" - -DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?] - >=dev-ml/findlib-1.1.2" - -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_compile() { - if use ocamlopt; then - emake -j1 all opt || die "emake failed" - else - emake CAMLC="ocamlc" CAMLDEP="ocamldep" -j1 all || die "emake failed" - fi -} - -src_install() { - dodir /usr/bin - use ocamlopt && findlib_src_install BINDIR="${D}/usr/bin" - use ocamlopt || findlib_src_install BINDIR="${D}/usr/bin" CAMLC="ocamlc" CAMLDEP="ocamldep" OPT_VARIANTS="" -} |