-
Notifications
You must be signed in to change notification settings - Fork 0
/
visualizationlibrary-2011.09.1160.ebuild
82 lines (69 loc) · 1.91 KB
/
visualizationlibrary-2011.09.1160.ebuild
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit cmake-utils eutils
DESCRIPTION="A lightweight C++ OpenGL middleware for 2D/3D graphics"
HOMEPAGE="http://www.visualizationlibrary.org/"
SRC_URI="http://www.visualizationlibrary.org/downloads/Visualization_Library_SDK-${PV}.tgz"
LICENSE="BSD-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="doc data debug examples glut sdl qt4 wxwidgets"
DEPEND="doc? ( app-doc/doxygen )
glut? ( media-libs/freeglut )
sdl? ( media-libs/libsdl[opengl] )
qt4? ( x11-libs/qt-opengl )
wxwidgets? ( x11-libs/wxGTK[opengl] )"
RDEPEND=""
src_unpack() {
unpack ${A}
mv Visualization_Library_SDK ${P}
}
src_configure() {
CMAKE_BUILD_TYPE="Release"
if use debug; then
CMAKE_BUILD_TYPE="Debug"
fi
mycmakeargs="-DVL_UNIX_INSTALL_MODE=ON -DVL_IO_2D_PNG=ON -DVL_IO_2D_TIFF=ON -DVL_IO_2D_JPEG=ON"
if use doc; then
mycmakeargs=" ${mycmakeargs} -DVL_INSTALL_DOCS=ON "
fi
if use data; then
mycmakeargs=" ${mycmakeargs} -DVL_INSTALL_DATA=ON"
fi
if use glut; then
mycmakeargs=" ${mycmakeargs} -DVL_GUI_GLUT_SUPPORT=ON"
if use examples; then
mycmakeargs=" ${mycmakeargs} -DVL_GUI_GLUT_EXAMPLES=ON"
fi
fi
if use sdl; then
mycmakeargs=" ${mycmakeargs} -DVL_GUI_SDL_SUPPORT=ON"
if use examples; then
mycmakeargs=" ${mycmakeargs} -DVL_GUI_SDL_EXAMPLES=ON"
fi
fi
if use qt4; then
mycmakeargs=" ${mycmakeargs} -DVL_GUI_QT4_SUPPORT=ON"
if use examples; then
mycmakeargs=" ${mycmakeargs} -DVL_GUI_QT4_EXAMPLES=ON"
fi
fi
if use wxwidgets; then
mycmakeargs=" ${mycmakeargs} -DVL_GUI_WXWIDGETS_SUPPORT=ON"
if use examples; then
mycmakeargs=" ${mycmakeargs} -DVL_GUI_WXWIDGETS_EXAMPLES=ON"
fi
fi
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
if use doc; then
cmake-utils_src_make doxygen
fi
}
src_install() {
cmake-utils_src_install
}