blob: 0e5193d84695a7baf15e09b6a337c0b40e906a40 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr/openexr-1.6.1.ebuild,v 1.13 2009/09/30 09:39:29 ssuominen Exp $
inherit libtool eutils
DESCRIPTION="ILM's OpenEXR high dynamic-range image file format libraries"
HOMEPAGE="http://openexr.com/"
SRC_URI="http://download.savannah.nongnu.org/releases/openexr/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 -arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="doc examples"
RDEPEND="media-libs/ilmbase"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
# Replace the temporary directory used for tests.
sed -i -e 's:"/var/tmp/":"'${T}'":' "IlmImfTest/tmpDir.h"
epatch "${FILESDIR}/${P}-gcc-4.3.patch"
# Sane versioning on FreeBSD - please don't remove elibtoolize
elibtoolize
}
src_compile() {
econf $(use_enable examples imfexamples)
emake || die "emake failed"
}
src_install () {
emake DESTDIR="${D}" examplesdir="/usr/share/doc/${PF}/examples" install || \
die "install failed"
dodoc AUTHORS ChangeLog NEWS README
if use doc ; then
insinto "/usr/share/doc/${PF}"
doins doc/*.pdf
fi
rm -frv "${D}usr/share/doc/OpenEXR"*
if use examples ; then
dobin "IlmImfExamples/imfexamples"
else
rm -fr "${D}usr/share/doc/${PF}/examples"
fi
}
pkg_postinst() {
elog "OpenEXR was divided into IlmBase, OpenEXR, and OpenEXR_Viewers."
elog "Viewers are available in OpenEXR_Viewers package."
elog "If you want them, run: emerge media-gfx/openexr_viewers"
}
|