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.
52 lines
1.1 KiB
52 lines
1.1 KiB
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="A set of cuda-enabled texture tools and compressors"
|
|
HOMEPAGE="https://github.com/castano/nvidia-texture-tools"
|
|
SRC_URI="https://github.com/castano/nvidia-texture-tools/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="cpu_flags_x86_sse2 openmp"
|
|
|
|
RDEPEND="
|
|
media-libs/ilmbase:=
|
|
media-libs/libpng:0=
|
|
media-libs/tiff:0
|
|
sys-libs/zlib
|
|
virtual/jpeg:0
|
|
x11-libs/libX11
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-cmake.patch
|
|
"${FILESDIR}"/${P}-test_path.patch
|
|
)
|
|
DOCS=( ChangeLog README.md )
|
|
|
|
pkg_pretend() {
|
|
if [[ ${MERGE_TYPE} != binary ]] && use openmp; then
|
|
tc-has-openmp || die "Please switch to an openmp compatible compiler"
|
|
fi
|
|
}
|
|
|
|
src_configure() {
|
|
# May be able to restore CUDA, but needs an old gcc
|
|
local mycmakeargs=(
|
|
-DCUDA_FOUND=OFF
|
|
-DGCONFTOOL2=OFF
|
|
-DNVTT_SHARED=0
|
|
-DBUILD_SQUISH_WITH_OPENMP=$(usex openmp)
|
|
-DBUILD_SQUISH_WITH_SSE2=$(usex cpu_flags_x86_sse2)
|
|
)
|
|
cmake_src_configure
|
|
}
|