# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="C function call hierarchy analyzer" HOMEPAGE="http://www.gnu.org/software/cflow/" SRC_URI="ftp://download.gnu.org.ua/pub/release/cflow/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="nls" DEPEND=" nls? ( sys-devel/gettext ) " RDEPEND="" src_compile() { econf \ $(use_enable nls) \ || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR="${D}" install }