| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2010 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.27 2009/05/27 14:34:33 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.55 2010/07/09 16:31:27 reavertm Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: cmake-utils.eclass |
5 | # @ECLASS: cmake-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # |
8 | # |
| 9 | # @CODE |
9 | # @CODE |
| 10 | # Tomáš Chvátal <scarabeus@gentoo.org> |
10 | # Tomáš Chvátal <scarabeus@gentoo.org> |
| 11 | # Maciej Mrozowski <reavertm@poczta.fm> |
11 | # Maciej Mrozowski <reavertm@gentoo.org> |
| 12 | # (undisclosed contributors) |
12 | # (undisclosed contributors) |
| 13 | # Original author: Zephyrus (zephyrus@mirach.it) |
13 | # Original author: Zephyrus (zephyrus@mirach.it) |
| 14 | # @CODE |
14 | # @CODE |
| 15 | # @BLURB: common ebuild functions for cmake-based packages |
15 | # @BLURB: common ebuild functions for cmake-based packages |
| 16 | # @DESCRIPTION: |
16 | # @DESCRIPTION: |
| 17 | # The cmake-utils eclass contains functions that make creating ebuilds for |
17 | # The cmake-utils eclass is base.eclass(5) wrapper that makes creating ebuilds for |
| 18 | # cmake-based packages much easier. |
18 | # cmake-based packages much easier. |
| 19 | # Its main features are support of out-of-source builds as well as in-source |
19 | # It provides all inherited features (DOCS, HTML_DOCS, PATCHES) along with out-of-source |
| 20 | # builds and an implementation of the well-known use_enable and use_with |
20 | # builds (default), in-source builds and an implementation of the well-known use_enable |
| 21 | # functions for CMake. |
21 | # and use_with functions for CMake. |
| 22 | |
22 | |
|
|
23 | # @ECLASS-VARIABLE: WANT_CMAKE |
|
|
24 | # @DESCRIPTION: |
|
|
25 | # Specify if cmake-utils eclass should depend on cmake optionaly or not. |
|
|
26 | # This is usefull when only part of aplication is using cmake build system. |
|
|
27 | # Valid values are: always [default], optional (where the value is the useflag |
|
|
28 | # used for optionality) |
|
|
29 | WANT_CMAKE="${WANT_CMAKE:-always}" |
|
|
30 | |
|
|
31 | # @ECLASS-VARIABLE: CMAKE_MIN_VERSION |
|
|
32 | # @DESCRIPTION: |
|
|
33 | # Specify the minimum allowable version of cmake. Defaults to 2.6.2-r1 |
|
|
34 | CMAKE_MIN_VERSION="${CMAKE_MIN_VERSION:-2.6.2-r1}" |
|
|
35 | |
|
|
36 | CMAKEDEPEND="" |
|
|
37 | case ${WANT_CMAKE} in |
|
|
38 | always) |
|
|
39 | ;; |
|
|
40 | *) |
|
|
41 | IUSE+=" ${WANT_CMAKE}" |
|
|
42 | CMAKEDEPEND+="${WANT_CMAKE}? ( " |
|
|
43 | ;; |
|
|
44 | esac |
| 23 | inherit toolchain-funcs multilib flag-o-matic base |
45 | inherit toolchain-funcs multilib flag-o-matic base |
| 24 | |
46 | |
| 25 | EXPF="src_compile src_test src_install" |
47 | CMAKE_EXPF="src_compile src_test src_install" |
| 26 | case ${EAPI:-0} in |
48 | case ${EAPI:-0} in |
| 27 | 2) EXPF="${EXPF} src_configure" ;; |
49 | 3|2) CMAKE_EXPF+=" src_configure" ;; |
| 28 | 1|0) ;; |
50 | 1|0) ;; |
| 29 | *) die "Unknown EAPI, Bug eclass maintainers." ;; |
51 | *) die "Unknown EAPI, Bug eclass maintainers." ;; |
| 30 | esac |
52 | esac |
| 31 | EXPORT_FUNCTIONS ${EXPF} |
53 | EXPORT_FUNCTIONS ${CMAKE_EXPF} |
| 32 | |
54 | |
| 33 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
55 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
| 34 | |
56 | |
| 35 | if [[ ${PN} != cmake ]]; then |
57 | if [[ ${PN} != cmake ]]; then |
| 36 | CMAKEDEPEND=">=dev-util/cmake-2.6.2-r1" |
58 | CMAKEDEPEND+=">=dev-util/cmake-${CMAKE_MIN_VERSION}" |
| 37 | fi |
59 | fi |
| 38 | |
60 | |
|
|
61 | CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
|
|
62 | |
|
|
63 | [[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
|
|
64 | |
| 39 | DEPEND="${CMAKEDEPEND} |
65 | DEPEND="${CMAKEDEPEND}" |
| 40 | userland_GNU? ( >=sys-apps/findutils-4.4.0 ) |
66 | unset CMAKEDEPEND |
| 41 | " |
|
|
| 42 | |
67 | |
| 43 | # Internal functions used by cmake-utils_use_* |
68 | # Internal functions used by cmake-utils_use_* |
| 44 | _use_me_now() { |
69 | _use_me_now() { |
| 45 | debug-print-function ${FUNCNAME} "$@" |
70 | debug-print-function ${FUNCNAME} "$@" |
| 46 | |
71 | |
| … | |
… | |
| 74 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
99 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
| 75 | done |
100 | done |
| 76 | fi |
101 | fi |
| 77 | } |
102 | } |
| 78 | |
103 | |
| 79 | # @ECLASS-VARIABLE: DOCS |
|
|
| 80 | # @DESCRIPTION: |
|
|
| 81 | # Documents passed to dodoc command. |
|
|
| 82 | |
|
|
| 83 | # @ECLASS-VARIABLE: HTML_DOCS |
|
|
| 84 | # @DESCRIPTION: |
|
|
| 85 | # Documents passed to dohtml command. |
|
|
| 86 | |
|
|
| 87 | # @ECLASS-VARIABLE: PREFIX |
|
|
| 88 | # @DESCRIPTION: |
|
|
| 89 | # Eclass respects PREFIX variable, though it's not recommended way to set |
|
|
| 90 | # install/lib/bin prefixes. |
|
|
| 91 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
|
|
| 92 | |
|
|
| 93 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
104 | # @ECLASS-VARIABLE: CMAKE_BUILD_DIR |
| 94 | # @DESCRIPTION: |
105 | # @DESCRIPTION: |
| 95 | # Set to enable in-source build. |
106 | # Build directory where all cmake processed files should be generated. |
| 96 | |
107 | # For in-source build it's fixed to ${CMAKE_USE_DIR}. |
| 97 | # @ECLASS-VARIABLE: CMAKE_NO_COLOR |
108 | # For out-of-source build it can be overriden, by default it uses |
| 98 | # @DESCRIPTION: |
109 | # ${WORKDIR}/${P}_build. |
| 99 | # Set to disable cmake output coloring. |
|
|
| 100 | |
|
|
| 101 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
|
|
| 102 | # @DESCRIPTION: |
|
|
| 103 | # Set to enable verbose messages during compilation. |
|
|
| 104 | |
110 | |
| 105 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
111 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
| 106 | # @DESCRIPTION: |
112 | # @DESCRIPTION: |
| 107 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
113 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
| 108 | # known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
114 | # known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
| 109 | # If about to be set - needs to be set before invoking cmake-utils_src_configure. |
115 | # If about to be set - needs to be set before invoking cmake-utils_src_configure. |
| 110 | # You usualy do *NOT* want nor need to set it as it pulls CMake default build-type |
116 | # You usualy do *NOT* want nor need to set it as it pulls CMake default build-type |
| 111 | # specific compiler flags overriding make.conf. |
117 | # specific compiler flags overriding make.conf. |
| 112 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
118 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
| 113 | |
119 | |
| 114 | # @FUNCTION: _check_build_dir |
120 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
| 115 | # @DESCRIPTION: |
121 | # @DESCRIPTION: |
|
|
122 | # Set to enable in-source build. |
|
|
123 | |
|
|
124 | # @ECLASS-VARIABLE: CMAKE_USE_DIR |
|
|
125 | # @DESCRIPTION: |
|
|
126 | # Sets the directory where we are working with cmake. |
|
|
127 | # For example when application uses autotools and only one |
|
|
128 | # plugin needs to be done by cmake. |
|
|
129 | # By default it uses ${S}. |
|
|
130 | |
|
|
131 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
|
|
132 | # @DESCRIPTION: |
|
|
133 | # Set to enable verbose messages during compilation. |
|
|
134 | |
|
|
135 | # @ECLASS-VARIABLE: PREFIX |
|
|
136 | # @DESCRIPTION: |
|
|
137 | # Eclass respects PREFIX variable, though it's not recommended way to set |
|
|
138 | # install/lib/bin prefixes. |
|
|
139 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
|
|
140 | |
| 116 | # Determine using IN or OUT source build |
141 | # Determine using IN or OUT source build |
| 117 | _check_build_dir() { |
142 | _check_build_dir() { |
| 118 | # @ECLASS-VARIABLE: CMAKE_USE_DIR |
|
|
| 119 | # @DESCRIPTION: |
|
|
| 120 | # Sets the directory where we are working with cmake. |
|
|
| 121 | # For example when application uses autotools and only one |
|
|
| 122 | # plugin needs to be done by cmake. |
|
|
| 123 | # By default it uses ${S}. |
|
|
| 124 | : ${CMAKE_USE_DIR:=${S}} |
143 | : ${CMAKE_USE_DIR:=${S}} |
| 125 | |
|
|
| 126 | # @ECLASS-VARIABLE: CMAKE_BUILD_DIR |
|
|
| 127 | # @DESCRIPTION: |
|
|
| 128 | # Specify the build directory where all cmake processed |
|
|
| 129 | # files should be located. |
|
|
| 130 | # |
|
|
| 131 | # For installing binary doins "${CMAKE_BUILD_DIR}/${PN}" |
|
|
| 132 | if [[ -n "${CMAKE_IN_SOURCE_BUILD}" ]]; then |
144 | if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
|
|
145 | # we build in source dir |
| 133 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
146 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
| 134 | else |
147 | elif [[ ${CMAKE_USE_DIR} = ${WORKDIR} ]]; then |
|
|
148 | # out of tree build, but with $S=$WORKDIR, see bug #273949 for reason. |
| 135 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}_build" |
149 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}/build" |
|
|
150 | else |
|
|
151 | # regular out of tree build |
|
|
152 | [[ ${1} = init || -d ${CMAKE_USE_DIR}_build ]] && SUF="_build" || SUF="" |
|
|
153 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}${SUF}" |
| 136 | fi |
154 | fi |
| 137 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
155 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
| 138 | } |
156 | } |
| 139 | # @FUNCTION: cmake-utils_use_with |
157 | # @FUNCTION: cmake-utils_use_with |
| 140 | # @USAGE: <USE flag> [flag name] |
158 | # @USAGE: <USE flag> [flag name] |
| … | |
… | |
| 197 | # |
215 | # |
| 198 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
216 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
| 199 | # and -DHAVE_FOO=OFF if it is disabled. |
217 | # and -DHAVE_FOO=OFF if it is disabled. |
| 200 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
218 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
| 201 | |
219 | |
| 202 | # @FUNCTION: cmake-utils_has |
|
|
| 203 | # @DESCRIPTION: |
|
|
| 204 | # Deprecated, use cmake-utils_use_has, kept now for backcompat. |
|
|
| 205 | cmake-utils_has() { ewarn "QA notice: using deprecated ${FUNCNAME} call, use cmake-utils_use_has instead." ; _use_me_now HAVE_ "$@" ; } |
|
|
| 206 | |
|
|
| 207 | # @FUNCTION: cmake-utils_use |
220 | # @FUNCTION: cmake-utils_use |
| 208 | # @USAGE: <USE flag> [flag name] |
221 | # @USAGE: <USE flag> [flag name] |
| 209 | # @DESCRIPTION: |
222 | # @DESCRIPTION: |
| 210 | # Based on use_enable. See ebuild(5). |
223 | # Based on use_enable. See ebuild(5). |
| 211 | # |
224 | # |
| 212 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
225 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
| 213 | # and -DFOO=OFF if it is disabled. |
226 | # and -DFOO=OFF if it is disabled. |
| 214 | cmake-utils_use() { _use_me_now "" "$@" ; } |
227 | cmake-utils_use() { _use_me_now "" "$@" ; } |
| 215 | |
228 | |
| 216 | # Internal function for modifying hardcoded definitions. |
229 | # Internal function for modifying hardcoded definitions. |
| 217 | # Removes dangerous definitionts that override Gentoo settings. |
230 | # Removes dangerous definitions that override Gentoo settings. |
| 218 | _modify-cmakelists() { |
231 | _modify-cmakelists() { |
| 219 | debug-print-function ${FUNCNAME} "$@" |
232 | debug-print-function ${FUNCNAME} "$@" |
| 220 | |
233 | |
| 221 | # Comment out all set (<some_should_be_user_defined_variable> value) |
234 | # Comment out all set (<some_should_be_user_defined_variable> value) |
| 222 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
235 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
| 223 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
236 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
| 224 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
237 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
238 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_COLOR_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \ |
| 225 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
239 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
240 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_VERBOSE_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \ |
| 226 | || die "${LINENO}: failed to disable hardcoded settings" |
241 | || die "${LINENO}: failed to disable hardcoded settings" |
| 227 | |
242 | |
| 228 | # NOTE Append some useful summary here |
243 | # NOTE Append some useful summary here |
| 229 | echo ' |
244 | cat >> CMakeLists.txt <<- _EOF_ |
|
|
245 | |
| 230 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
246 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
| 231 | Build type: ${CMAKE_BUILD_TYPE} |
247 | Build type \${CMAKE_BUILD_TYPE} |
| 232 | Install path: ${CMAKE_INSTALL_PREFIX}\n")' >> CMakeLists.txt |
248 | Install path \${CMAKE_INSTALL_PREFIX} |
|
|
249 | Compiler flags: |
|
|
250 | C \${CMAKE_C_FLAGS} |
|
|
251 | C++ \${CMAKE_CXX_FLAGS} |
|
|
252 | Linker flags: |
|
|
253 | Executable \${CMAKE_EXE_LINKER_FLAGS} |
|
|
254 | Module \${CMAKE_MODULE_LINKER_FLAGS} |
|
|
255 | Shared \${CMAKE_SHARED_LINKER_FLAGS}\n") |
|
|
256 | _EOF_ |
| 233 | } |
257 | } |
| 234 | |
258 | |
| 235 | # @FUNCTION: cmake-utils_src_configure |
|
|
| 236 | # @DESCRIPTION: |
|
|
| 237 | # General function for configuring with cmake. Default behaviour is to start an |
|
|
| 238 | # out-of-source build. |
|
|
| 239 | cmake-utils_src_configure() { |
259 | enable_cmake-utils_src_configure() { |
| 240 | debug-print-function ${FUNCNAME} "$@" |
260 | debug-print-function ${FUNCNAME} "$@" |
| 241 | |
261 | |
| 242 | _check_build_dir |
262 | _check_build_dir init |
| 243 | |
263 | |
| 244 | # check if CMakeLists.txt exist and if no then die |
264 | # check if CMakeLists.txt exist and if no then die |
| 245 | if [[ ! -e "${CMAKE_USE_DIR}"/CMakeLists.txt ]] ; then |
265 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
| 246 | eerror "I was unable to locate CMakeLists.txt under:" |
266 | eerror "Unable to locate CMakeLists.txt under:" |
| 247 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
267 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
| 248 | eerror "You should consider not inheriting the cmake eclass." |
268 | eerror "Consider not inheriting the cmake eclass." |
| 249 | die "FATAL: Unable to find CMakeLists.txt" |
269 | die "FATAL: Unable to find CMakeLists.txt" |
| 250 | fi |
270 | fi |
| 251 | |
271 | |
| 252 | # Remove dangerous things. |
272 | # Remove dangerous things. |
| 253 | _modify-cmakelists |
273 | _modify-cmakelists |
|
|
274 | |
|
|
275 | # Fix xdg collision with sandbox |
|
|
276 | export XDG_CONFIG_HOME="${T}" |
| 254 | |
277 | |
| 255 | # @SEE CMAKE_BUILD_TYPE |
278 | # @SEE CMAKE_BUILD_TYPE |
| 256 | if [[ ${CMAKE_BUILD_TYPE} = Gentoo ]]; then |
279 | if [[ ${CMAKE_BUILD_TYPE} = Gentoo ]]; then |
| 257 | # Handle release builds |
280 | # Handle release builds |
| 258 | if ! has debug ${IUSE//+} || ! use debug; then |
281 | if ! has debug ${IUSE//+} || ! use debug; then |
| 259 | append-cppflags -DNDEBUG |
282 | append-cppflags -DNDEBUG |
| 260 | fi |
283 | fi |
| 261 | fi |
284 | fi |
| 262 | |
285 | |
| 263 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
286 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
| 264 | local build_rules="${TMPDIR}"/gentoo_rules.cmake |
287 | local build_rules=${T}/gentoo_rules.cmake |
| 265 | cat > ${build_rules} << _EOF_ |
288 | cat > "${build_rules}" <<- _EOF_ |
| 266 | SET (CMAKE_C_COMPILER $(type -P $(tc-getCC)) CACHE FILEPATH "C compiler" FORCE) |
289 | SET (CMAKE_C_COMPILER $(type -P $(tc-getCC)) CACHE FILEPATH "C compiler" FORCE) |
| 267 | SET (CMAKE_C_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C compile command" FORCE) |
290 | SET (CMAKE_C_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C compile command" FORCE) |
| 268 | SET (CMAKE_CXX_COMPILER $(type -P $(tc-getCXX)) CACHE FILEPATH "C++ compiler" FORCE) |
291 | SET (CMAKE_CXX_COMPILER $(type -P $(tc-getCXX)) CACHE FILEPATH "C++ compiler" FORCE) |
| 269 | SET (CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C++ compile command" FORCE) |
292 | SET (CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C++ compile command" FORCE) |
| 270 | _EOF_ |
293 | _EOF_ |
|
|
294 | |
|
|
295 | if use prefix; then |
|
|
296 | cat >> "${build_rules}" <<- _EOF_ |
|
|
297 | # in Prefix we need rpath and must ensure cmake gets our default linker path |
|
|
298 | # right ... except for Darwin hosts |
|
|
299 | IF (NOT APPLE) |
|
|
300 | SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
|
|
301 | SET (CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH "${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" |
|
|
302 | CACHE STRING "" FORCE) |
|
|
303 | ENDIF (NOT APPLE) |
|
|
304 | _EOF_ |
|
|
305 | fi |
|
|
306 | |
|
|
307 | # Common configure parameters (invariants) |
|
|
308 | local common_config=${T}/gentoo_common_config.cmake |
|
|
309 | local libdir=$(get_libdir) |
|
|
310 | cat > "${common_config}" <<- _EOF_ |
|
|
311 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
|
|
312 | SET (CMAKE_INSTALL_LIBDIR ${libdir} CACHE PATH "Output directory for libraries") |
|
|
313 | _EOF_ |
|
|
314 | [[ "${NOCOLOR}" = true || "${NOCOLOR}" = yes ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
|
|
315 | |
|
|
316 | # Convert mycmakeargs to an array, for backwards compatibility |
|
|
317 | # Make the array a local variable since <=portage-2.1.6.x does not |
|
|
318 | # support global arrays (see bug #297255). |
|
|
319 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
320 | local mycmakeargs_local=(${mycmakeargs}) |
|
|
321 | else |
|
|
322 | local mycmakeargs_local=("${mycmakeargs[@]}") |
|
|
323 | fi |
|
|
324 | |
|
|
325 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
| 271 | |
326 | |
| 272 | # Common configure parameters (overridable) |
327 | # Common configure parameters (overridable) |
| 273 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
328 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
| 274 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
329 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
| 275 | local cmakeargs=" |
330 | local cmakeargs=( |
|
|
331 | -C "${common_config}" |
| 276 | -DCMAKE_INSTALL_PREFIX=${PREFIX:-/usr} |
332 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX:-/usr}" |
| 277 | ${mycmakeargs} |
333 | "${mycmakeargs_local[@]}" |
| 278 | -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} |
334 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
| 279 | -DCMAKE_INSTALL_DO_STRIP=OFF |
335 | -DCMAKE_INSTALL_DO_STRIP=OFF |
| 280 | -DCMAKE_USER_MAKE_RULES_OVERRIDE=${build_rules}" |
336 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
| 281 | |
337 | "${MYCMAKEARGS}" |
| 282 | # Common configure parameters (invariants) |
338 | ) |
| 283 | local common_config="${TMPDIR}"/gentoo_common_config.cmake |
|
|
| 284 | local libdir=$(get_libdir) |
|
|
| 285 | cat > ${common_config} << _EOF_ |
|
|
| 286 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
|
|
| 287 | _EOF_ |
|
|
| 288 | [[ -n ${CMAKE_NO_COLOR} ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> ${common_config} |
|
|
| 289 | cmakeargs="-C ${common_config} ${cmakeargs}" |
|
|
| 290 | |
339 | |
| 291 | mkdir -p "${CMAKE_BUILD_DIR}" |
340 | mkdir -p "${CMAKE_BUILD_DIR}" |
| 292 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
341 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 293 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is $cmakeargs" |
342 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
|
|
343 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
| 294 | cmake ${cmakeargs} "${CMAKE_USE_DIR}" || die "cmake failed" |
344 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
| 295 | |
|
|
| 296 | popd > /dev/null |
345 | popd > /dev/null |
| 297 | } |
346 | } |
| 298 | |
347 | |
| 299 | # @FUNCTION: cmake-utils_src_compile |
|
|
| 300 | # @DESCRIPTION: |
|
|
| 301 | # General function for compiling with cmake. Default behaviour is to check for |
|
|
| 302 | # EAPI and respectively to configure as well or just compile. |
|
|
| 303 | cmake-utils_src_compile() { |
348 | enable_cmake-utils_src_compile() { |
| 304 | debug-print-function ${FUNCNAME} "$@" |
349 | debug-print-function ${FUNCNAME} "$@" |
| 305 | |
350 | |
| 306 | has src_configure ${EXPF} || cmake-utils_src_configure |
351 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
| 307 | cmake-utils_src_make "$@" |
352 | cmake-utils_src_make "$@" |
| 308 | } |
353 | } |
| 309 | |
354 | |
| 310 | # @FUNCTION: cmake-utils_src_configurein |
|
|
| 311 | # @DESCRIPTION: |
|
|
| 312 | # Deprecated |
|
|
| 313 | cmake-utils_src_configurein() { |
|
|
| 314 | ewarn "QA notice: using deprecated ${FUNCNAME} call, set CMAKE_IN_SOURCE_BUILD=1 instead." |
|
|
| 315 | cmake-utils_src_configure |
|
|
| 316 | } |
|
|
| 317 | |
|
|
| 318 | # @FUNCTION: cmake-utils_src_configureout |
|
|
| 319 | # @DESCRIPTION: |
|
|
| 320 | # Deprecated |
|
|
| 321 | cmake-utils_src_configureout() { |
|
|
| 322 | ewarn "QA notice: using deprecated ${FUNCNAME} call, out of source build is enabled by default." |
|
|
| 323 | cmake-utils_src_configure |
|
|
| 324 | } |
|
|
| 325 | |
|
|
| 326 | # @FUNCTION: cmake-utils_src_make |
355 | # @FUNCTION: cmake-utils_src_make |
| 327 | # @DESCRIPTION: |
356 | # @DESCRIPTION: |
| 328 | # Function for building the package. Automatically detects the build type. |
357 | # Function for building the package. Automatically detects the build type. |
| 329 | # All arguments are passed to emake: |
358 | # All arguments are passed to emake. |
| 330 | cmake-utils_src_make() { |
359 | cmake-utils_src_make() { |
| 331 | debug-print-function ${FUNCNAME} "$@" |
360 | debug-print-function ${FUNCNAME} "$@" |
| 332 | |
361 | |
| 333 | _check_build_dir |
362 | _check_build_dir |
| 334 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
363 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| … | |
… | |
| 340 | emake "$@" || die "Make failed!" |
369 | emake "$@" || die "Make failed!" |
| 341 | fi |
370 | fi |
| 342 | popd > /dev/null |
371 | popd > /dev/null |
| 343 | } |
372 | } |
| 344 | |
373 | |
|
|
374 | enable_cmake-utils_src_install() { |
|
|
375 | debug-print-function ${FUNCNAME} "$@" |
|
|
376 | |
|
|
377 | _check_build_dir |
|
|
378 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
|
|
379 | base_src_install |
|
|
380 | popd > /dev/null |
|
|
381 | |
|
|
382 | # Backward compatibility, for non-array variables |
|
|
383 | if [[ -n "${DOCS}" ]] && [[ "$(declare -p DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
384 | dodoc ${DOCS} || die "dodoc failed" |
|
|
385 | fi |
|
|
386 | if [[ -n "${HTML_DOCS}" ]] && [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
387 | dohtml -r ${HTML_DOCS} || die "dohtml failed" |
|
|
388 | fi |
|
|
389 | } |
|
|
390 | |
|
|
391 | enable_cmake-utils_src_test() { |
|
|
392 | debug-print-function ${FUNCNAME} "$@" |
|
|
393 | |
|
|
394 | _check_build_dir |
|
|
395 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
|
|
396 | local ctestargs |
|
|
397 | [[ -n ${TEST_VERBOSE} ]] && ctestargs="--extra-verbose --output-on-failure" |
|
|
398 | ctest ${ctestargs} || die "Tests failed." |
|
|
399 | popd > /dev/null |
|
|
400 | } |
|
|
401 | |
|
|
402 | # @FUNCTION: cmake-utils_src_configure |
|
|
403 | # @DESCRIPTION: |
|
|
404 | # General function for configuring with cmake. Default behaviour is to start an |
|
|
405 | # out-of-source build. |
|
|
406 | cmake-utils_src_configure() { |
|
|
407 | _execute_optionaly "src_configure" "$@" |
|
|
408 | } |
|
|
409 | |
|
|
410 | # @FUNCTION: cmake-utils_src_compile |
|
|
411 | # @DESCRIPTION: |
|
|
412 | # General function for compiling with cmake. Default behaviour is to check for |
|
|
413 | # EAPI and respectively to configure as well or just compile. |
|
|
414 | # Automatically detects the build type. All arguments are passed to emake. |
|
|
415 | cmake-utils_src_compile() { |
|
|
416 | _execute_optionaly "src_compile" "$@" |
|
|
417 | } |
|
|
418 | |
| 345 | # @FUNCTION: cmake-utils_src_install |
419 | # @FUNCTION: cmake-utils_src_install |
| 346 | # @DESCRIPTION: |
420 | # @DESCRIPTION: |
| 347 | # Function for installing the package. Automatically detects the build type. |
421 | # Function for installing the package. Automatically detects the build type. |
| 348 | cmake-utils_src_install() { |
422 | cmake-utils_src_install() { |
| 349 | debug-print-function ${FUNCNAME} "$@" |
423 | _execute_optionaly "src_install" "$@" |
| 350 | |
|
|
| 351 | _check_build_dir |
|
|
| 352 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
|
|
| 353 | emake install DESTDIR="${D}" || die "Make install failed" |
|
|
| 354 | popd > /dev/null |
|
|
| 355 | |
|
|
| 356 | # Manual document installation |
|
|
| 357 | [[ -n "${DOCS}" ]] && { dodoc ${DOCS} || die "dodoc failed" ; } |
|
|
| 358 | [[ -n "${HTML_DOCS}" ]] && { dohtml -r ${HTML_DOCS} || die "dohtml failed" ; } |
|
|
| 359 | } |
424 | } |
| 360 | |
425 | |
| 361 | # @FUNCTION: cmake-utils_src_test |
426 | # @FUNCTION: cmake-utils_src_test |
| 362 | # @DESCRIPTION: |
427 | # @DESCRIPTION: |
| 363 | # Function for testing the package. Automatically detects the build type. |
428 | # Function for testing the package. Automatically detects the build type. |
| 364 | cmake-utils_src_test() { |
429 | cmake-utils_src_test() { |
| 365 | debug-print-function ${FUNCNAME} "$@" |
430 | _execute_optionaly "src_test" "$@" |
|
|
431 | } |
| 366 | |
432 | |
| 367 | _check_build_dir |
433 | # Optionally executes phases based on WANT_CMAKE variable/USE flag. |
| 368 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
434 | _execute_optionaly() { |
| 369 | # Standard implementation of src_test |
435 | local phase="$1" ; shift |
| 370 | if emake -j1 check -n &> /dev/null; then |
436 | if [[ ${WANT_CMAKE} = always ]]; then |
| 371 | einfo ">>> Test phase [check]: ${CATEGORY}/${PF}" |
437 | enable_cmake-utils_${phase} "$@" |
| 372 | if ! emake -j1 check; then |
438 | else |
| 373 | die "Make check failed. See above for details." |
439 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} "$@" |
| 374 | fi |
440 | fi |
| 375 | elif emake -j1 test -n &> /dev/null; then |
|
|
| 376 | einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" |
|
|
| 377 | if ! emake -j1 test; then |
|
|
| 378 | die "Make test failed. See above for details." |
|
|
| 379 | fi |
|
|
| 380 | else |
|
|
| 381 | einfo ">>> Test phase [none]: ${CATEGORY}/${PF}" |
|
|
| 382 | fi |
|
|
| 383 | popd > /dev/null |
|
|
| 384 | } |
441 | } |