| 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.36 2009/12/10 19:58:42 abcd Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.48 2010/03/24 21:09:28 robbat2 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@gmail.com> |
| 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: |
| … | |
… | |
| 27 | # Valid values are: always [default], optional (where the value is the useflag |
27 | # Valid values are: always [default], optional (where the value is the useflag |
| 28 | # used for optionality) |
28 | # used for optionality) |
| 29 | WANT_CMAKE="${WANT_CMAKE:-always}" |
29 | WANT_CMAKE="${WANT_CMAKE:-always}" |
| 30 | CMAKEDEPEND="" |
30 | CMAKEDEPEND="" |
| 31 | case ${WANT_CMAKE} in |
31 | case ${WANT_CMAKE} in |
| 32 | always) |
32 | always) |
| 33 | ;; |
33 | ;; |
| 34 | *) |
34 | *) |
| 35 | IUSE+=" ${WANT_CMAKE}" |
35 | IUSE+=" ${WANT_CMAKE}" |
| 36 | CMAKEDEPEND+="${WANT_CMAKE}? ( " |
36 | CMAKEDEPEND+="${WANT_CMAKE}? ( " |
| 37 | ;; |
37 | ;; |
| … | |
… | |
| 110 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
110 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
| 111 | |
111 | |
| 112 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
112 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
| 113 | # @DESCRIPTION: |
113 | # @DESCRIPTION: |
| 114 | # Set to enable in-source build. |
114 | # Set to enable in-source build. |
| 115 | |
|
|
| 116 | # @ECLASS-VARIABLE: CMAKE_NO_COLOR |
|
|
| 117 | # @DESCRIPTION: |
|
|
| 118 | # Set to disable cmake output coloring. |
|
|
| 119 | |
115 | |
| 120 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
116 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
| 121 | # @DESCRIPTION: |
117 | # @DESCRIPTION: |
| 122 | # Set to enable verbose messages during compilation. |
118 | # Set to enable verbose messages during compilation. |
| 123 | |
119 | |
| … | |
… | |
| 233 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
229 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
| 234 | # and -DFOO=OFF if it is disabled. |
230 | # and -DFOO=OFF if it is disabled. |
| 235 | cmake-utils_use() { _use_me_now "" "$@" ; } |
231 | cmake-utils_use() { _use_me_now "" "$@" ; } |
| 236 | |
232 | |
| 237 | # Internal function for modifying hardcoded definitions. |
233 | # Internal function for modifying hardcoded definitions. |
| 238 | # Removes dangerous definitionts that override Gentoo settings. |
234 | # Removes dangerous definitions that override Gentoo settings. |
| 239 | _modify-cmakelists() { |
235 | _modify-cmakelists() { |
| 240 | debug-print-function ${FUNCNAME} "$@" |
236 | debug-print-function ${FUNCNAME} "$@" |
| 241 | |
237 | |
| 242 | # Comment out all set (<some_should_be_user_defined_variable> value) |
238 | # Comment out all set (<some_should_be_user_defined_variable> value) |
| 243 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
239 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
| … | |
… | |
| 248 | |
244 | |
| 249 | # NOTE Append some useful summary here |
245 | # NOTE Append some useful summary here |
| 250 | cat >> CMakeLists.txt <<- _EOF_ |
246 | cat >> CMakeLists.txt <<- _EOF_ |
| 251 | |
247 | |
| 252 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
248 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
| 253 | Build type: ${CMAKE_BUILD_TYPE} |
249 | Build type: \${CMAKE_BUILD_TYPE} |
| 254 | Install path: ${CMAKE_INSTALL_PREFIX}\n") |
250 | Install path: \${CMAKE_INSTALL_PREFIX}\n") |
| 255 | _EOF_ |
251 | _EOF_ |
| 256 | } |
252 | } |
| 257 | |
253 | |
| 258 | # @FUNCTION: enable_cmake-utils_src_configure |
254 | # @FUNCTION: enable_cmake-utils_src_configure |
| 259 | # @DESCRIPTION: |
255 | # @DESCRIPTION: |
| … | |
… | |
| 310 | # Common configure parameters (invariants) |
306 | # Common configure parameters (invariants) |
| 311 | local common_config=${T}/gentoo_common_config.cmake |
307 | local common_config=${T}/gentoo_common_config.cmake |
| 312 | local libdir=$(get_libdir) |
308 | local libdir=$(get_libdir) |
| 313 | cat > "${common_config}" <<- _EOF_ |
309 | cat > "${common_config}" <<- _EOF_ |
| 314 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
310 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
|
|
311 | SET (CMAKE_INSTALL_LIBDIR ${libdir} CACHE PATH "Output directory for libraries") |
| 315 | _EOF_ |
312 | _EOF_ |
| 316 | [[ -n ${CMAKE_NO_COLOR} ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
313 | [[ -n ${NOCOLOR} ]] || echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
| 317 | |
314 | |
| 318 | # Convert mycmakeargs to an array, for backwards compatibility |
315 | # Convert mycmakeargs to an array, for backwards compatibility |
|
|
316 | # Make the array a local variable since <=portage-2.1.6.x does not |
|
|
317 | # support global arrays (see bug #297255). |
| 319 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
318 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
| 320 | mycmakeargs=(${mycmakeargs}) |
319 | local mycmakeargs_local=(${mycmakeargs}) |
|
|
320 | else |
|
|
321 | local mycmakeargs_local=("${mycmakeargs[@]}") |
| 321 | fi |
322 | fi |
| 322 | |
323 | |
| 323 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
324 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
| 324 | |
325 | |
| 325 | # Common configure parameters (overridable) |
326 | # Common configure parameters (overridable) |
| 326 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
327 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
| 327 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
328 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
| 328 | local cmakeargs=( |
329 | local cmakeargs=( |
| 329 | -C "${common_config}" |
330 | -C "${common_config}" |
| 330 | -DCMAKE_INSTALL_PREFIX="${PREFIX:-${EPREFIX}/usr}" |
331 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX:-/usr}" |
| 331 | "${mycmakeargs[@]}" |
332 | "${mycmakeargs_local[@]}" |
| 332 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
333 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
| 333 | -DCMAKE_INSTALL_DO_STRIP=OFF |
334 | -DCMAKE_INSTALL_DO_STRIP=OFF |
| 334 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
335 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
|
|
336 | "${MYCMAKEARGS}" |
| 335 | ) |
337 | ) |
| 336 | |
338 | |
| 337 | mkdir -p "${CMAKE_BUILD_DIR}" |
339 | mkdir -p "${CMAKE_BUILD_DIR}" |
| 338 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
340 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 339 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${cmakeargs[*]}" |
341 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
| 340 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
342 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
| 341 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
343 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
| 342 | |
344 | |
| 343 | popd > /dev/null |
345 | popd > /dev/null |
| 344 | } |
346 | } |
| … | |
… | |
| 418 | # @FUNCTION: cmake-utils_src_configure |
420 | # @FUNCTION: cmake-utils_src_configure |
| 419 | # @DESCRIPTION: |
421 | # @DESCRIPTION: |
| 420 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
422 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
| 421 | # unconditionaly or only when some useflag is enabled. |
423 | # unconditionaly or only when some useflag is enabled. |
| 422 | cmake-utils_src_configure() { |
424 | cmake-utils_src_configure() { |
| 423 | _execute_optionaly "src_configure" |
425 | _execute_optionaly "src_configure" "$@" |
| 424 | } |
426 | } |
| 425 | |
427 | |
| 426 | # @FUNCTION: cmake-utils_src_compile |
428 | # @FUNCTION: cmake-utils_src_compile |
| 427 | # @DESCRIPTION: |
429 | # @DESCRIPTION: |
| 428 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
430 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
| 429 | # unconditionaly or only when some useflag is enabled. |
431 | # unconditionaly or only when some useflag is enabled. |
| 430 | cmake-utils_src_compile() { |
432 | cmake-utils_src_compile() { |
| 431 | _execute_optionaly "src_compile" |
433 | _execute_optionaly "src_compile" "$@" |
| 432 | } |
434 | } |
| 433 | |
435 | |
| 434 | # @FUNCTION: cmake-utils_src_install |
436 | # @FUNCTION: cmake-utils_src_install |
| 435 | # @DESCRIPTION: |
437 | # @DESCRIPTION: |
| 436 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
438 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
| 437 | # unconditionaly or only when some useflag is enabled. |
439 | # unconditionaly or only when some useflag is enabled. |
| 438 | cmake-utils_src_install() { |
440 | cmake-utils_src_install() { |
| 439 | _execute_optionaly "src_install" |
441 | _execute_optionaly "src_install" "$@" |
| 440 | } |
442 | } |
| 441 | |
443 | |
| 442 | # @FUNCTION: cmake-utils_src_test |
444 | # @FUNCTION: cmake-utils_src_test |
| 443 | # @DESCRIPTION: |
445 | # @DESCRIPTION: |
| 444 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
446 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
| 445 | # unconditionaly or only when some useflag is enabled. |
447 | # unconditionaly or only when some useflag is enabled. |
| 446 | cmake-utils_src_test() { |
448 | cmake-utils_src_test() { |
| 447 | _execute_optionaly "src_test" |
449 | _execute_optionaly "src_test" "$@" |
| 448 | } |
450 | } |
| 449 | |
451 | |
| 450 | |
452 | |
| 451 | _execute_optionaly() { |
453 | _execute_optionaly() { |
| 452 | local phase="$1" |
454 | local phase="$1" ; shift |
| 453 | if [[ ${WANT_CMAKE} = always ]]; then |
455 | if [[ ${WANT_CMAKE} = always ]]; then |
| 454 | enable_cmake-utils_${phase} |
456 | enable_cmake-utils_${phase} "$@" |
| 455 | else |
457 | else |
| 456 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} |
458 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} "$@" |
| 457 | fi |
459 | fi |
| 458 | } |
460 | } |