diff options
author | Matthieu Sozeau <mattam@gentoo.org> | 2004-08-18 12:17:33 +0000 |
---|---|---|
committer | Matthieu Sozeau <mattam@gentoo.org> | 2004-08-18 12:17:33 +0000 |
commit | 13c157bd150d7df288c4763055c13f25a817b218 (patch) | |
tree | c3fee689b75e1fb777762156f25c85cd79477242 /dev-ml | |
parent | Import of camlzip, bug #50621 (diff) | |
download | historical-13c157bd150d7df288c4763055c13f25a817b218.tar.gz historical-13c157bd150d7df288c4763055c13f25a817b218.tar.bz2 historical-13c157bd150d7df288c4763055c13f25a817b218.zip |
Initial import, see bug #51255.
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/ounit/ChangeLog | 11 | ||||
-rw-r--r-- | dev-ml/ounit/Manifest | 4 | ||||
-rw-r--r-- | dev-ml/ounit/files/digest-ounit-1.0.0 | 1 | ||||
-rw-r--r-- | dev-ml/ounit/metadata.xml | 5 | ||||
-rw-r--r-- | dev-ml/ounit/ounit-1.0.0.ebuild | 30 |
5 files changed, 51 insertions, 0 deletions
diff --git a/dev-ml/ounit/ChangeLog b/dev-ml/ounit/ChangeLog new file mode 100644 index 000000000000..4e6953f8e8db --- /dev/null +++ b/dev-ml/ounit/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-ml/ounit +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.1 2004/08/18 12:17:33 mattam Exp $ + +*ounit-1.0.0 (18 Aug 2004) + + 18 Aug 2004; Matthieu Sozeau <mattam@gentoo.org> metadata.xml, + ounit-1.0.0.ebuild: + OUnit is a unit test framework for ocaml, thanks to Bardur Arantsson + <gentoo@scientician.net> for the submission (bug #51255). + diff --git a/dev-ml/ounit/Manifest b/dev-ml/ounit/Manifest new file mode 100644 index 000000000000..f42241937a83 --- /dev/null +++ b/dev-ml/ounit/Manifest @@ -0,0 +1,4 @@ +MD5 8b350f19c06fcabf1053b0421b7c3f5a metadata.xml 155 +MD5 18ef5facbebb0c89af33db58e7242446 ounit-1.0.0.ebuild 825 +MD5 3ebb2bc6a46a0e663371e4ccec432d8b ChangeLog 444 +MD5 02270b9f85472c60819e083e602cb39a files/digest-ounit-1.0.0 61 diff --git a/dev-ml/ounit/files/digest-ounit-1.0.0 b/dev-ml/ounit/files/digest-ounit-1.0.0 new file mode 100644 index 000000000000..42b975541d57 --- /dev/null +++ b/dev-ml/ounit/files/digest-ounit-1.0.0 @@ -0,0 +1 @@ +MD5 392114f4648f9c5a300c763abef31647 ounit-1.0.0.tar.gz 9193 diff --git a/dev-ml/ounit/metadata.xml b/dev-ml/ounit/metadata.xml new file mode 100644 index 000000000000..2193d772e351 --- /dev/null +++ b/dev-ml/ounit/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>ml</herd> +</pkgmetadata> diff --git a/dev-ml/ounit/ounit-1.0.0.ebuild b/dev-ml/ounit/ounit-1.0.0.ebuild new file mode 100644 index 000000000000..d29a36ca5e12 --- /dev/null +++ b/dev-ml/ounit/ounit-1.0.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.0.ebuild,v 1.1 2004/08/18 12:17:33 mattam Exp $ + +DESCRIPTION="Unit testing framework for OCaml" +HOMEPAGE="http://home.wanadoo.nl/maas/ocaml/" +SRC_URI="http://home.wanadoo.nl/maas/ocaml/${P}.tar.gz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86 ~ppc" +DEPEND="dev-lang/ocaml + dev-ml/findlib" + +src_compile() { + emake all allopt || die "emake failed" +} + +src_install() { + # which directory does the lib go into? + destdir=`ocamlfind printconf destdir` + # install + mkdir -p ${D}${destdir} || die + make \ + OCAMLFIND_DESTDIR=${D}${destdir} \ + OCAMLFIND_LDCONF=dummy install || die + # typo + mv LICENCE LICENSE + # install documentation + dodoc README LICENSE changelog +} |