blob: 3c0b4ab63350b7dbafad8f2dde10e533a40da9df (
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
61
62
63
64
65
66
67
68
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools flag-o-matic
DESCRIPTION="OpenEXR Viewers"
HOMEPAGE="https://www.openexr.com/"
SRC_URI="https://github.com/openexr/openexr/releases/download/v${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="cg"
RDEPEND="
~media-libs/ilmbase-${PV}:=
~media-libs/openexr-${PV}:=
virtual/opengl
x11-libs/fltk:1[opengl]
cg? ( media-gfx/nvidia-cg-toolkit )
"
DEPEND="
${RDEPEND}
virtual/pkgconfig
"
DOCS=( ChangeLog README.md )
PATCHES=(
"${FILESDIR}/${P}-fix-configure.patch"
"${FILESDIR}/${P}--with-cg-libdir.patch"
)
src_prepare() {
default
sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die
eautoreconf
}
src_configure() {
local myeconfargs=(
--disable-openexrctltest
--with-fltk-config="/usr/bin/fltk-config"
)
if use cg; then
myeconfargs+=(
--enable-cg
--with-cg-prefix="/opt/nvidia-cg-toolkit"
--with-cg-libdir="/opt/nvidia-cg-toolkit/$(get_libdir)"
)
append-ldflags "$(no-as-needed)" # binary-only libCg is not properly linked
fi
econf "${myeconfargs[@]}"
}
src_install() {
emake \
DESTDIR="${D}" \
docdir=/usr/share/doc/${PF}/pdf \
install
einstalldocs
}
|