# Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Jonas Berlin S=${WORKDIR}/${P} DESCRIPTION="Berkeley DB" SRC_URI="http://www.sleepycat.com/update/4.0.14/db-4.0.14.tar.gz" HOMEPAGE="http://www.sleepycat.com" DEPEND="virtual/glibc java? ( >=dev-lang/jdk-1.3 )" src_compile() { local myconf if use java; then : # myconf="$myconf --enable-java" else myconf="$myconf --disable-java" fi myconf="$myconf --enable-rpc --enable-tcl --with-tcl=/usr/lib" cd build_unix ../dist/configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ $myconf || die emake || die } src_install () { cd build_unix make prefix=${D}/usr install || die dodir /usr/share/doc/${PF}/html mv ${D}/usr/docs/* ${D}/usr/share/doc/${PF}/html/ rmdir ${D}/usr/docs }