| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/findlib.eclass,v 1.2 2004/08/24 14:32:56 mattam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/findlib.eclass,v 1.5 2005/07/11 15:08:06 swegener Exp $ |
| 4 | # |
4 | # |
| 5 | # Author : Matthieu Sozeau <mattam@gentoo.org> |
5 | # Author : Matthieu Sozeau <mattam@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # ocamlfind (a.k.a. findlib) eclass |
7 | # ocamlfind (a.k.a. findlib) eclass |
| 8 | # |
8 | # |
| 9 | |
9 | |
| 10 | ECLASS="findlib" |
|
|
| 11 | INHERITED="$INHERITED $ECLASS" |
|
|
| 12 | |
10 | |
| 13 | # From this findlib version there is proper stublibs support. |
11 | # From this findlib version there is proper stublibs support. |
| 14 | DEPEND=">=dev-ml/findlib-1.0.4-r1" |
12 | DEPEND=">=dev-ml/findlib-1.0.4-r1" |
| 15 | |
13 | |
| 16 | check_ocamlfind() { |
14 | check_ocamlfind() { |
| … | |
… | |
| 29 | check_ocamlfind |
27 | check_ocamlfind |
| 30 | |
28 | |
| 31 | # destdir is the ocaml sitelib |
29 | # destdir is the ocaml sitelib |
| 32 | local destdir=`ocamlfind printconf destdir` |
30 | local destdir=`ocamlfind printconf destdir` |
| 33 | |
31 | |
| 34 | dodir ${destdir} || die "dodir failed" |
32 | dodir ${destdir} || die "dodir failed" |
| 35 | export OCAMLFIND_DESTDIR=${D}${destdir} |
33 | export OCAMLFIND_DESTDIR=${D}${destdir} |
| 36 | |
34 | |
| 37 | # stublibs style |
35 | # stublibs style |
| 38 | dodir ${destdir}/stublibs || die "dodir failed" |
36 | dodir ${destdir}/stublibs || die "dodir failed" |
| 39 | export OCAMLFIND_LDCONF=ignore |
37 | export OCAMLFIND_LDCONF=ignore |