blob: bf77c879e00c2f07bb34d292000193aac8ef0bc0 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit eutils autotools python-single-r1 multilib-minimal
DESCRIPTION="ilmbase Python bindings"
HOMEPAGE="http://www.openexr.com"
SRC_URI="http://download.savannah.gnu.org/releases/openexr/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+numpy"
REQUIRED_USE="
${PYTHON_REQUIRED_USE}"
DEPEND="
${PYTHON_DEP}
>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]"
RDEPEND="
${PYTHON_DEP}
>=media-libs/ilmbase-${PV}:=[${MULTILIB_USEDEP}]
>=dev-libs/boost-1.62.0-r1[${MULTILIB_USEDEP},python(+),${PYTHON_USEDEP}]
numpy? ( >=dev-python/numpy-1.10.4 )"
AT_M4DIR=m4
PATCHES=(
"${FILESDIR}/${P}-configure-boost_python.patch"
)
pkg_setup() {
python-single-r1_pkg_setup
}
src_prepare() {
default
eautoreconf
multilib_copy_sources
}
multilib_src_configure() {
ECONF_SOURCE=${S} econf "$(use_with numpy numpy)"
}
# fails to install successfully if MAKEOPTS is set to use more than one core.
multilib_src_install() {
EMAKE_SOURCE=${S} emake DESTDIR="${D}" -j1 install
}
|