diff options
author | Bernd Waibel <waebbl@gmail.com> | 2020-11-24 18:56:38 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-11-25 09:50:19 +0200 |
commit | 2062cce1af1666298546b8c6b8cc39817095bef1 (patch) | |
tree | 0e6238c9f3d4a27416dd59fb31a1dba2fca181e1 /media-gfx/alembic | |
parent | net-im/signal-desktop-bin: remove old version (diff) | |
download | gentoo-2062cce1af1666298546b8c6b8cc39817095bef1.tar.gz gentoo-2062cce1af1666298546b8c6b8cc39817095bef1.tar.bz2 gentoo-2062cce1af1666298546b8c6b8cc39817095bef1.zip |
media-gfx/alembic: cleanup
Remove unnecessary doc and prman USE flags.
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Bernd Waibel <waebbl@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18390
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'media-gfx/alembic')
-rw-r--r-- | media-gfx/alembic/alembic-1.7.16.ebuild | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/media-gfx/alembic/alembic-1.7.16.ebuild b/media-gfx/alembic/alembic-1.7.16.ebuild index 4167640a9e52..e7b7b255e52c 100644 --- a/media-gfx/alembic/alembic-1.7.16.ebuild +++ b/media-gfx/alembic/alembic-1.7.16.ebuild @@ -12,7 +12,7 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="examples hdf5 prman test zlib" +IUSE="hdf5 test zlib" RESTRICT="!test? ( test )" REQUIRED_USE="hdf5? ( zlib )" @@ -39,21 +39,13 @@ src_configure() { -DALEMBIC_LIB_USES_TR1=OFF -DUSE_ARNOLD=OFF -DUSE_BINARIES=ON - -DUSE_EXAMPLES=$(usex examples) + -DUSE_EXAMPLES=OFF -DUSE_HDF5=$(usex hdf5) -DUSE_MAYA=OFF - -DUSE_PRMAN=$(usex prman) + -DUSE_PRMAN=OFF -DUSE_PYALEMBIC=OFF -DUSE_TESTS=$(usex test) ) cmake_src_configure } - -pkg_postinst() { - if use prman; then - einfo "If you're looking for an ebuild for renderman, you may want to" - einfo "try the waebbl overlay: 'eselect repository enable waebbl'" - einfo "followed by 'emerge renderman'" - fi -} |