# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/dvenv/dvenv-0.2.2-r2.ebuild,v 1.3 2009/03/29 20:16:12 pvdabeel Exp $ inherit eutils DESCRIPTION="dvenv provides polymorphic tree-structured environments, generalizing the Dv::Util::Props class" HOMEPAGE="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvenv/html/" SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvenv/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~ppc ~x86" IUSE="doc" DEPEND="dev-libs/dvutil" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/${P}-virtual-dtors.diff epatch ${FILESDIR}/${P}-fix-underquoted-m4.diff sed -i 's/^\(SUBDIRS =.*\)doc\(.*\)$/\1\2/' Makefile.in || \ die "sed Makefile.in failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog README use doc && dohtml -r doc/html/* }