diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-05-26 18:42:28 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-05-26 18:42:28 +0000 |
commit | e52d1edc17594f5bbc32cdf0f29fbecb1acb7889 (patch) | |
tree | 6dbcd6cb9911835c66aa2cbba4e8961bccc8c395 /dev-ml/ocamlduce | |
parent | mask new version of ocamlduce, needs ocaml 3.10 (diff) | |
download | gentoo-2-e52d1edc17594f5bbc32cdf0f29fbecb1acb7889.tar.gz gentoo-2-e52d1edc17594f5bbc32cdf0f29fbecb1acb7889.tar.bz2 gentoo-2-e52d1edc17594f5bbc32cdf0f29fbecb1acb7889.zip |
Version bump, ocaml 3.10 ready
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-ml/ocamlduce')
-rw-r--r-- | dev-ml/ocamlduce/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ml/ocamlduce/files/digest-ocamlduce-3.10.0 | 3 | ||||
-rw-r--r-- | dev-ml/ocamlduce/ocamlduce-3.10.0.ebuild | 31 |
3 files changed, 41 insertions, 1 deletions
diff --git a/dev-ml/ocamlduce/ChangeLog b/dev-ml/ocamlduce/ChangeLog index 9eb598daec98..52f80a9fccdd 100644 --- a/dev-ml/ocamlduce/ChangeLog +++ b/dev-ml/ocamlduce/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-ml/ocamlduce # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.3 2007/04/24 05:52:35 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.4 2007/05/26 18:42:28 aballier Exp $ + +*ocamlduce-3.10.0 (26 May 2007) + + 26 May 2007; Alexis Ballier <aballier@gentoo.org> + +ocamlduce-3.10.0.ebuild: + Version bump, ocaml 3.10 ready 24 Apr 2007; Alexis Ballier <aballier@gentoo.org> ocamlduce-3.09.3_p1.ebuild: diff --git a/dev-ml/ocamlduce/files/digest-ocamlduce-3.10.0 b/dev-ml/ocamlduce/files/digest-ocamlduce-3.10.0 new file mode 100644 index 000000000000..25ea974355a9 --- /dev/null +++ b/dev-ml/ocamlduce/files/digest-ocamlduce-3.10.0 @@ -0,0 +1,3 @@ +MD5 4f766ff93dadab9a40cc1b203550b8ed ocamlduce-3.10.0.tar.gz 968584 +RMD160 ffa81116e499218aef7e2bb672953939b0746c9b ocamlduce-3.10.0.tar.gz 968584 +SHA256 b434acf6263a096276925a161630a8efc152a504d4a19582e920dd3de54113db ocamlduce-3.10.0.tar.gz 968584 diff --git a/dev-ml/ocamlduce/ocamlduce-3.10.0.ebuild b/dev-ml/ocamlduce/ocamlduce-3.10.0.ebuild new file mode 100644 index 000000000000..8f24a9ee96a2 --- /dev/null +++ b/dev-ml/ocamlduce/ocamlduce-3.10.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ocamlduce-3.10.0.ebuild,v 1.1 2007/05/26 18:42:28 aballier Exp $ + +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" +IUSE="" + +DEPEND=">=dev-lang/ocaml-3.10.0 + >=dev-ml/findlib-1.1.2" + +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + emake -j1 all opt || die "emake failed" +} + +src_install() { + mkdir -p "${D}/usr/bin" + findlib_src_install BINDIR="${D}/usr/bin" +} |