diff options
Diffstat (limited to 'dev-ml/ounit/ounit-1.1.0.ebuild')
-rw-r--r-- | dev-ml/ounit/ounit-1.1.0.ebuild | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-ml/ounit/ounit-1.1.0.ebuild b/dev-ml/ounit/ounit-1.1.0.ebuild deleted file mode 100644 index 248be4ff1e29..000000000000 --- a/dev-ml/ounit/ounit-1.1.0.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.0.ebuild,v 1.4 2011/01/13 22:16:36 ranger Exp $ - -EAPI="2" - -inherit findlib multilib - -DESCRIPTION="Unit testing framework for OCaml" -HOMEPAGE="http://ounit.forge.ocamlcore.org/" -SRC_URI="https://forge.ocamlcore.org/frs/download.php/495/${P}.tar.gz" -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc x86" -DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]" -RDEPEND="${DEPEND}" -IUSE="debug doc +ocamlopt" - -oasis_use_enable() { - echo "--override $2 `use $1 && echo \"true\" || echo \"false\"`" -} - -src_configure() { - chmod +x configure - ./configure --prefix usr \ - --libdir /usr/$(get_libdir) \ - --docdir /usr/share/doc/${PF}/html \ - --destdir "${D}" \ - $(oasis_use_enable debug debug) \ - $(oasis_use_enable ocamlopt is_native) \ - || die -} - -src_compile() { - emake || die - if use doc ; then - emake doc || die - fi -} - -src_install() { - findlib_src_install - - # install documentation - dodoc README* AUTHORS* changelog || die -} |