blob: 27f0228721bae6cf8e6f201b828acd90029f0d5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/virtual/opencl/opencl-0.ebuild,v 1.3 2012/07/14 19:43:11 ulm Exp $
# Until ATI's SDK is in the tree, nvidia is the only
# viable provider #392179 #257626
EAPI="4"
DESCRIPTION="Virtual for OpenCL implementations"
HOMEPAGE=""
SRC_URI=""
LICENSE=""
SLOT="0"
KEYWORDS="amd64 x86"
#CARDS=( fglrx nvidia )
CARDS=( nvidia )
IUSE="${CARDS[@]/#/video_cards_}"
REQUIRED_USE="|| ( ${IUSE} )"
# video_cards_fglrx? ( x11-drivers/ati-drivers[opencl] )
RDEPEND="|| (
video_cards_nvidia? ( x11-drivers/nvidia-drivers >=dev-util/nvidia-cuda-toolkit-3.1 )
)"
|