# Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Sean Mitchell # /space/gentoo/cvsroot/gentoo-x86/skel.build,v 1.11 2001/12/06 22:12:34 drobbins Exp S=${WORKDIR}/${P} DESCRIPTION="Objective Caml is a fast modern type-inferring functional programming language descended from the ML (Meta Language) family." SRC_URI="ftp://ftp.inria.fr/lang/caml-light/${P}.tar.gz" HOMEPAGE="http://www.ocaml.org/" DEPEND="virtual/glibc >=dev-lang/tk-3.3.3" #RDEPEND="" src_compile() { ./configure -prefix /usr \ -bindir /usr/bin \ -libdir /usr/lib/ocaml \ -mandir /usr/man/man1 \ -with-pthread \ emake world || die emake opt || die emake opt.opt || die } src_install () { make BINDIR=${D}/usr/bin LIBDIR=${D}/usr/lib/ocaml MANDIR=${D}/usr/man/man1 install || die }