# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Implementation of tone mapping operators" HOMEPAGE="http://pfstools.sourceforge.net/pfstmo.html" SRC_URI="http://downloads.sourceforge.net/project/pfstools/pfstmo/${PV}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~x86" IUSE="fftw" DEPEND=">=media-gfx/pfstools-1.8.1 >=sci-libs/fftw-3.2.2" RDEPEND="${DEPEND}" src_compile() { econf $(use_enable fftw) || die "configure failed" emake -j1 } src_install() { emake DESTDIR="${D}" install dodoc AUTHORS README TODO }