# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.8 2002/05/30 01:54:49 sandymac Exp DESCRIPTION="The DOM C library for the GNOME project" SRC_URI="http://phd.cs.unibo.it/gdome2/tarball/${P}.tar.gz" HOMEPAGE="http://phd.cs.unibo.it/gdome2/" LICENSE="LPGL-2.1" DEPEND="dev-libs/libxml2 >=dev-libs/glib-1.2.10" src_compile() { ./configure --host=${CHOST} \ --prefix=/usr \ --with-html-dir=${D}/usr/doc \ --disable-shared || die make check || die emake || die } src_install() { make DESTDIR=${D} install || die if [ -d ${D}/usr/doc/${P} ] then dohtml ${D}/usr/doc/${P}/* rm -rf ${D}/usr/doc fi dodoc AUTHORS ChangeLog COPYING* INSTALL MAINTAINERS README }