You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-gfx/openexr_viewers/openexr_viewers-2.3.0.ebuild

69 lines
1.3 KiB

# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools flag-o-matic
DESCRIPTION="OpenEXR Viewers"
HOMEPAGE="http://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
}