# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit findlib DESCRIPTION="Modules for O'Caml application-level Internet protocols" HOMEPAGE="http://ocamlnet.sourceforge.net" SRC_URI="mirror://sourceforge/ocamlnet/${P}.tar.gz" LICENSE="as-is GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND=">=dev-ml/pcre-ocaml-4.31.0 >=dev-ml/equeue-2.1.3" S="${WORKDIR}/${P}/src" DATADIR=/usr/share/${PN} src_compile() { ./configure -enable-compatcgi -datadir ${DATADIR} || die "configure failed" make all opt || die "make failed" } src_install() { findlib_src_install NET_DB_DIR="${D}${DATADIR}" cd "${WORKDIR}/${P}" dodoc README dohtml doc/intro/html/* }