# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgtksourceviewmm/libgtksourceviewmm-1.9.4.ebuild,v 1.1 2008/04/07 14:53:55 remi Exp $ inherit gnome2 eutils DESCRIPTION="C++ bindings for gtksourceview" HOMEPAGE="http://home.gna.org/gtksourceviewmm/" KEYWORDS="~amd64 ~hppa ~x86" IUSE="doc" SLOT="2.0" LICENSE="LGPL-2" RDEPEND=">=dev-cpp/gtkmm-2.4 >=x11-libs/gtksourceview-2.1.0" DEPEND="${RDEPEND} dev-util/pkgconfig doc? ( app-doc/doxygen )" DOCS="AUTHORS ChangeLog* NEWS README TODO" G2CONF="${G2CONF} $(use_enable doc docs)" src_unpack() { gnome2_src_unpack epatch "${FILESDIR}"/gcc-4.3.patch # Remove docs from SUBDIRS so that docs are not installed, as # we handle it in src_install. sed -i -e 's|^\(SUBDIRS =.*\)docs\(.*\)|\1\2|' Makefile.in || \ die "sed Makefile.in failed" } src_install() { gnome2_src_install use doc && dohtml -r docs/reference/html/* }