diff options
author | Bernd Waibel <waebbl@gmail.com> | 2018-11-11 21:55:57 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-05-08 18:59:31 +0200 |
commit | 4564c5566b6c2450c8b627c997422c0e5a490ec3 (patch) | |
tree | 1b3f1889cb183d94bc839a1fafa7ec13809d657f /media-gfx/alembic/alembic-1.7.9.ebuild | |
parent | kde-apps/akonadi-calendar: Drop 18.12.3-r1 (diff) | |
download | gentoo-4564c5566b6c2450c8b627c997422c0e5a490ec3.tar.gz gentoo-4564c5566b6c2450c8b627c997422c0e5a490ec3.tar.bz2 gentoo-4564c5566b6c2450c8b627c997422c0e5a490ec3.zip |
media-gfx/alembic: fix boost not found error
Fixes an error with >=cmake-3.11* where boost is not found due to
changes in cmake syntax.
See also: https://github.com/gentoo/gentoo/pull/10394
Closes: https://bugs.gentoo.org/667728
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Bernd Waibel <waebbl@gmail.com>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-gfx/alembic/alembic-1.7.9.ebuild')
-rw-r--r-- | media-gfx/alembic/alembic-1.7.9.ebuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/media-gfx/alembic/alembic-1.7.9.ebuild b/media-gfx/alembic/alembic-1.7.9.ebuild index 638b12a639b9..a6eebf37327a 100644 --- a/media-gfx/alembic/alembic-1.7.9.ebuild +++ b/media-gfx/alembic/alembic-1.7.9.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -14,10 +14,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" -# TODO: ~x86 currently depends on new =dev-python/pyilmbase-2.3.0 which has -# ~x86 keyword. As soon as it's updated in the tree, the keyword can be -# added here. -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~x86" IUSE="arnold +boost doc examples hdf5 maya prman python test zlib" # pyalembic python bindings need boost @@ -49,6 +46,8 @@ PATCHES=( "${FILESDIR}/${P}-prman.patch" "${FILESDIR}/${P}-fix-python-import.patch" "${FILESDIR}/${P}-find-pyilmbase-python-module.patch" + "${FILESDIR}/${P}-find-boost-python-for-cmake-ge-3.11.patch" + "${FILESDIR}/${P}-fix-boost-python-naming.patch" ) src_configure() { |