blob: 8a7e2c38df9db4494879dba4a7e986ca3e4ecad9 (
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
38
39
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr/openexr-1.0.7.ebuild,v 1.2 2004/03/02 22:07:18 dholm Exp $
MY_P=OpenEXR-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="ILM's HDR image file format libraries"
SRC_URI="http://www.openexr.org/downloads/${MY_P}.tar.gz"
HOMEPAGE="http://www.openexr.com"
SLOT="0"
LICENSE="as-is"
KEYWORDS="~x86 ~ppc"
DEPEND="x11-libs/fltk"
src_unpack() {
unpack ${A}
#Lets NVSDK test work correctly & html docs install to the correct directory
epatch ${FILESDIR}/${P}-gentoo.patch
}
src_compile() {
./configure --disable-fltktest \
--enable-imfexamples \
--prefix=/usr \
--sysconfdir=/etc || die "configure failed"
emake || die "make failed"
}
src_install () {
einstall || die "install failed"
dodoc AUTHORS README INSTALL ChangeLog LICENSE NEWS
dohtml -r ${S}/doc/*
}
|