diff options
author | 2002-12-15 23:56:41 +0000 | |
---|---|---|
committer | 2002-12-15 23:56:41 +0000 | |
commit | fd8342284fbe6169eb11ee58b7bd347e6784eed3 (patch) | |
tree | 04e806f1b3f9a347ea7a215f67dafc67b072d39b /dev-ml/findlib/findlib-0.8.ebuild | |
parent | adding xemacs-21.4.10-r1.ebuild (diff) | |
download | historical-fd8342284fbe6169eb11ee58b7bd347e6784eed3.tar.gz historical-fd8342284fbe6169eb11ee58b7bd347e6784eed3.tar.bz2 historical-fd8342284fbe6169eb11ee58b7bd347e6784eed3.zip |
new package - OCaml tool to find/use non-standard packages.
Diffstat (limited to 'dev-ml/findlib/findlib-0.8.ebuild')
-rw-r--r-- | dev-ml/findlib/findlib-0.8.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-ml/findlib/findlib-0.8.ebuild b/dev-ml/findlib/findlib-0.8.ebuild new file mode 100644 index 000000000000..ce0db39556d7 --- /dev/null +++ b/dev-ml/findlib/findlib-0.8.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/findlib/findlib-0.8.ebuild,v 1.1 2002/12/15 23:56:41 george Exp $ + +IUSE="" + +DESCRIPTION="OCaml tool to find/use non-standard packages." +HOMEPAGE="http://www.ocaml-programming.de/programming/download-caml.html" +SRC_URI="http://www.ocaml-programming.de/packages/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="dev-lang/ocaml" + +S="${WORKDIR}/${P}" + +src_compile() { + ./configure -bindir /usr/bin -mandir /usr/share/man \ + -sitelib /usr/lib/ocaml/site-packages/ \ + -config /usr/lib/ocaml/site-packages/findlib/findlib.conf || die "configure failed" + + make all || die + make opt || die # optimized code +} + +src_install() { + make PREFIX=${D} install || die + + cd ${S}/doc + dodoc QUICKSTART README + dohtml html/* +} |