| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 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.40 2009/12/23 00:32:02 abcd 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 | # |
| … | |
… | |
| 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 | |
115 | |
| 116 | # @ECLASS-VARIABLE: CMAKE_NO_COLOR |
|
|
| 117 | # @DESCRIPTION: |
|
|
| 118 | # Set to disable cmake output coloring. |
|
|
| 119 | |
|
|
| 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 | |
| 124 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
120 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
| … | |
… | |
| 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: |
| … | |
… | |
| 301 | # right ... except for Darwin hosts |
297 | # right ... except for Darwin hosts |
| 302 | IF (NOT APPLE) |
298 | IF (NOT APPLE) |
| 303 | SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
299 | SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
| 304 | SET (CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH "${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" |
300 | SET (CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH "${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" |
| 305 | CACHE STRING "" FORCE) |
301 | CACHE STRING "" FORCE) |
|
|
302 | SET (CMAKE_BUILD_WITH_INSTALL_RPATH ON CACHE BOOL "" FORCE) |
| 306 | ENDIF (NOT APPLE) |
303 | ENDIF (NOT APPLE) |
| 307 | _EOF_ |
304 | _EOF_ |
| 308 | fi |
305 | fi |
| 309 | |
306 | |
| 310 | # Common configure parameters (invariants) |
307 | # Common configure parameters (invariants) |
| 311 | local common_config=${T}/gentoo_common_config.cmake |
308 | local common_config=${T}/gentoo_common_config.cmake |
| 312 | local libdir=$(get_libdir) |
309 | local libdir=$(get_libdir) |
| 313 | cat > "${common_config}" <<- _EOF_ |
310 | cat > "${common_config}" <<- _EOF_ |
| 314 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
311 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
| 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}" |
| 335 | ) |
336 | ) |
| 336 | |
337 | |
| 337 | mkdir -p "${CMAKE_BUILD_DIR}" |
338 | mkdir -p "${CMAKE_BUILD_DIR}" |
| 338 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
339 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 339 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${cmakeargs[*]}" |
340 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
| 340 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
341 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
| 341 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
342 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
| 342 | |
343 | |
| 343 | popd > /dev/null |
344 | popd > /dev/null |
| 344 | } |
345 | } |