mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 00:16:22 +01:00
26 lines
733 B
Bash
26 lines
733 B
Bash
# Copyright 2020-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Virtual for pulling in appropriate opencl stuffs"
|
|
HOMEPAGE="https://pentoo.org"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="opencl-cpu video_cards_amdgpu video_cards_nvidia"
|
|
REQUIRED_USE="|| ( opencl-cpu video_cards_amdgpu video_cards_nvidia )"
|
|
|
|
RDEPEND="virtual/opencl
|
|
dev-util/opencl-headers
|
|
opencl-cpu? ( amd64? ( || ( dev-libs/pocl dev-util/intel-ocl-sdk ) ) )
|
|
video_cards_amdgpu? ( dev-libs/rocm-opencl-runtime )
|
|
video_cards_nvidia? ( x11-drivers/nvidia-drivers )
|
|
"
|
|
|
|
pkg_setup() {
|
|
if use opencl-cpu && ! use amd64; then
|
|
die "opencl-cpu is only available for 64 bit systems"
|
|
fi
|
|
}
|