blob: af7a0993e4558a3e922cca367dccdc1865fad39c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/enblend/enblend-3.0.ebuild,v 1.1 2007/02/05 03:46:34 vanquirius Exp $
inherit eutils
DESCRIPTION="Image Blending with Multiresolution Splines"
HOMEPAGE="http://enblend.sf.net"
SRC_URI="mirror://sourceforge/enblend/${P}.tar.gz"
LICENSE="GPL-2 VIGRA"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="media-libs/tiff
media-libs/lcms
virtual/glut
media-libs/glew
media-libs/plotutils
>=dev-libs/boost-1.31.0"
src_unpack() {
unpack ${A}
cd "${S}"
# Both of the following patches can be found in the sf.net tracker
# Fixes endless loop with seam optimizer and 360 deg images
epatch "${FILESDIR}"/${P}-endless_loop_anneal.patch
# Fixes compilation on AMD64
epatch "${FILESDIR}"/${P}-amd64_compilation.patch
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO
}
|