# Copyright 2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Tool for removing seams on stitched panoramic images" HOMEPAGE="http://enblend.sf.net" MY_P="${PN}-${PV/_/-}" SRC_URI="mirror://sourceforge/enblend/${MY_P}.tar.gz" LICENSE="GPL-2 VIGRA" KEYWORDS="~x86" IUSE="debug" DEPEND=">=dev-libs/boost-1.30.0 media-libs/tiff" S=${WORKDIR}/${MY_P} src_unpack() { unpack ${A} } src_compile() { myconf="`use_enable debug`" econf ${myconf} || die "configure failed" emake || die "compiling failed" } src_install() { emake install DESTDIR=${D} || die dodoc AUTHORS COPYING BUGS INSTALL NEWS README TODO VIGRA_LICENCE } pkg_postinst() { einfo "You may want to install hugin or PanoTools to compliment this program." }