blob: a76b5fea8dea54d0fa67822797bc39a9d6e0f2e5 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/nvidia-texture-tools/nvidia-texture-tools-2.0.8.ebuild,v 1.3 2012/05/03 20:18:47 hasufell Exp $
EAPI=4
inherit cmake-utils eutils multilib toolchain-funcs
DESCRIPTION="A set of cuda-enabled texture tools and compressors"
HOMEPAGE="http://developer.nvidia.com/object/texture_tools.html"
SRC_URI="http://${PN}.googlecode.com/files/${P}-1.tar.gz
http://dev.gentoo.org/~ssuominen/${P}-patchset-1.tar.xz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cg cuda glew glut openexr"
DEPEND="media-libs/libpng:0
media-libs/ilmbase
media-libs/tiff:0
sys-libs/zlib
virtual/jpeg
virtual/opengl
x11-libs/libX11
cg? ( media-gfx/nvidia-cg-toolkit )
cuda? ( dev-util/nvidia-cuda-toolkit )
glew? ( media-libs/glew )
glut? ( media-libs/freeglut )
openexr? ( media-libs/openexr )
"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}
pkg_setup() {
if use cuda; then
if [[ $(( $(gcc-major-version) * 10 + $(gcc-minor-version) )) -gt 44 ]] ; then
eerror "gcc 4.5 and up are not supported for useflag cuda!"
die "gcc 4.5 and up are not supported for useflag cuda!"
fi
fi
}
src_prepare() {
edos2unix cmake/*
EPATCH_SUFFIX=patch epatch "${WORKDIR}"/patches
# fix bug #414509
epatch "${FILESDIR}"/${P}-cg.patch
}
src_configure() {
local mycmakeargs=(
-DLIBDIR=$(get_libdir)
$(cmake-utils_use cg CG)
$(cmake-utils_use cuda CUDA)
$(cmake-utils_use glew GLEW)
$(cmake-utils_use glut GLUT)
$(cmake-utils_use openexr OPENEXR)
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
dodoc ChangeLog
}
|