blob: 06bbcb5a0c67d0cde668a6d63b622f0558ab8a1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# 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.5 2004/09/30 18:28:50 mattam Exp $
inherit findlib
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 amd64"
DEPEND="dev-lang/ocaml"
IUSE=""
src_compile() {
emake all allopt || die "emake failed"
}
src_install() {
findlib_src_install
# typo
mv LICENCE LICENSE
# install documentation
dodoc README LICENSE changelog
}
|