| 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.47 2010/02/11 18:00:05 ssuominen 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: |
| … | |
… | |
| 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 | # Its main features are support of out-of-source builds as well as in-source |
| 20 | # builds and an implementation of the well-known use_enable and use_with |
20 | # builds and an implementation of the well-known use_enable and use_with |
| 21 | # functions for CMake. |
21 | # 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 | CMAKEDEPEND="" |
|
|
31 | case ${WANT_CMAKE} in |
|
|
32 | always) |
|
|
33 | ;; |
|
|
34 | *) |
|
|
35 | IUSE+=" ${WANT_CMAKE}" |
|
|
36 | CMAKEDEPEND+="${WANT_CMAKE}? ( " |
|
|
37 | ;; |
|
|
38 | esac |
| 23 | inherit toolchain-funcs multilib flag-o-matic base |
39 | inherit toolchain-funcs multilib flag-o-matic base |
| 24 | |
40 | |
| 25 | EXPF="src_compile src_test src_install" |
41 | CMAKE_EXPF="src_compile src_test src_install" |
| 26 | case ${EAPI:-0} in |
42 | case ${EAPI:-0} in |
| 27 | 2) EXPF="${EXPF} src_configure" ;; |
43 | 3|2) CMAKE_EXPF+=" src_configure" ;; |
| 28 | 1|0) ;; |
44 | 1|0) ;; |
| 29 | *) die "Unknown EAPI, Bug eclass maintainers." ;; |
45 | *) die "Unknown EAPI, Bug eclass maintainers." ;; |
| 30 | esac |
46 | esac |
| 31 | EXPORT_FUNCTIONS ${EXPF} |
47 | EXPORT_FUNCTIONS ${CMAKE_EXPF} |
| 32 | |
48 | |
| 33 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
49 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
| 34 | |
50 | |
| 35 | if [[ ${PN} != cmake ]]; then |
51 | if [[ ${PN} != cmake ]]; then |
| 36 | CMAKEDEPEND=">=dev-util/cmake-2.6.2-r1" |
52 | CMAKEDEPEND+=">=dev-util/cmake-2.6.2-r1" |
| 37 | fi |
53 | fi |
| 38 | |
54 | |
|
|
55 | CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
|
|
56 | |
|
|
57 | [[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
|
|
58 | |
| 39 | DEPEND="${CMAKEDEPEND} |
59 | DEPEND="${CMAKEDEPEND}" |
| 40 | userland_GNU? ( >=sys-apps/findutils-4.4.0 ) |
60 | unset CMAKEDEPEND |
| 41 | " |
|
|
| 42 | |
61 | |
| 43 | # Internal functions used by cmake-utils_use_* |
62 | # Internal functions used by cmake-utils_use_* |
| 44 | _use_me_now() { |
63 | _use_me_now() { |
| 45 | debug-print-function ${FUNCNAME} "$@" |
64 | debug-print-function ${FUNCNAME} "$@" |
| 46 | |
65 | |
| … | |
… | |
| 91 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
110 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
| 92 | |
111 | |
| 93 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
112 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
| 94 | # @DESCRIPTION: |
113 | # @DESCRIPTION: |
| 95 | # Set to enable in-source build. |
114 | # Set to enable in-source build. |
| 96 | |
|
|
| 97 | # @ECLASS-VARIABLE: CMAKE_NO_COLOR |
|
|
| 98 | # @DESCRIPTION: |
|
|
| 99 | # Set to disable cmake output coloring. |
|
|
| 100 | |
115 | |
| 101 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
116 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
| 102 | # @DESCRIPTION: |
117 | # @DESCRIPTION: |
| 103 | # Set to enable verbose messages during compilation. |
118 | # Set to enable verbose messages during compilation. |
| 104 | |
119 | |
| … | |
… | |
| 127 | # @DESCRIPTION: |
142 | # @DESCRIPTION: |
| 128 | # Specify the build directory where all cmake processed |
143 | # Specify the build directory where all cmake processed |
| 129 | # files should be located. |
144 | # files should be located. |
| 130 | # |
145 | # |
| 131 | # For installing binary doins "${CMAKE_BUILD_DIR}/${PN}" |
146 | # For installing binary doins "${CMAKE_BUILD_DIR}/${PN}" |
| 132 | if [[ -n "${CMAKE_IN_SOURCE_BUILD}" ]]; then |
147 | if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
|
|
148 | # we build in source dir |
| 133 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
149 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
| 134 | else |
150 | elif [[ ${CMAKE_USE_DIR} = ${WORKDIR} ]]; then |
|
|
151 | # out of tree build, but with $S=$WORKDIR, see bug #273949 for reason. |
| 135 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}_build" |
152 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}/build" |
|
|
153 | else |
|
|
154 | # regular out of tree build |
|
|
155 | [[ ${1} = init || -d ${CMAKE_USE_DIR}_build ]] && SUF="_build" || SUF="" |
|
|
156 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}${SUF}" |
|
|
157 | |
| 136 | fi |
158 | fi |
| 137 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
159 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
| 138 | } |
160 | } |
| 139 | # @FUNCTION: cmake-utils_use_with |
161 | # @FUNCTION: cmake-utils_use_with |
| 140 | # @USAGE: <USE flag> [flag name] |
162 | # @USAGE: <USE flag> [flag name] |
| … | |
… | |
| 197 | # |
219 | # |
| 198 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
220 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
| 199 | # and -DHAVE_FOO=OFF if it is disabled. |
221 | # and -DHAVE_FOO=OFF if it is disabled. |
| 200 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
222 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
| 201 | |
223 | |
| 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 |
224 | # @FUNCTION: cmake-utils_use |
| 208 | # @USAGE: <USE flag> [flag name] |
225 | # @USAGE: <USE flag> [flag name] |
| 209 | # @DESCRIPTION: |
226 | # @DESCRIPTION: |
| 210 | # Based on use_enable. See ebuild(5). |
227 | # Based on use_enable. See ebuild(5). |
| 211 | # |
228 | # |
| 212 | # `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 |
| 213 | # and -DFOO=OFF if it is disabled. |
230 | # and -DFOO=OFF if it is disabled. |
| 214 | cmake-utils_use() { _use_me_now "" "$@" ; } |
231 | cmake-utils_use() { _use_me_now "" "$@" ; } |
| 215 | |
232 | |
| 216 | # Internal function for modifying hardcoded definitions. |
233 | # Internal function for modifying hardcoded definitions. |
| 217 | # Removes dangerous definitionts that override Gentoo settings. |
234 | # Removes dangerous definitions that override Gentoo settings. |
| 218 | _modify-cmakelists() { |
235 | _modify-cmakelists() { |
| 219 | debug-print-function ${FUNCNAME} "$@" |
236 | debug-print-function ${FUNCNAME} "$@" |
| 220 | |
237 | |
| 221 | # Comment out all set (<some_should_be_user_defined_variable> value) |
238 | # 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 |
239 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
| … | |
… | |
| 224 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
241 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
| 225 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
242 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
| 226 | || die "${LINENO}: failed to disable hardcoded settings" |
243 | || die "${LINENO}: failed to disable hardcoded settings" |
| 227 | |
244 | |
| 228 | # NOTE Append some useful summary here |
245 | # NOTE Append some useful summary here |
| 229 | echo ' |
246 | cat >> CMakeLists.txt <<- _EOF_ |
|
|
247 | |
| 230 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
248 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
| 231 | Build type: ${CMAKE_BUILD_TYPE} |
249 | Build type: \${CMAKE_BUILD_TYPE} |
| 232 | Install path: ${CMAKE_INSTALL_PREFIX}\n")' >> CMakeLists.txt |
250 | Install path: \${CMAKE_INSTALL_PREFIX}\n") |
|
|
251 | _EOF_ |
| 233 | } |
252 | } |
| 234 | |
253 | |
| 235 | # @FUNCTION: cmake-utils_src_configure |
254 | # @FUNCTION: enable_cmake-utils_src_configure |
| 236 | # @DESCRIPTION: |
255 | # @DESCRIPTION: |
| 237 | # General function for configuring with cmake. Default behaviour is to start an |
256 | # General function for configuring with cmake. Default behaviour is to start an |
| 238 | # out-of-source build. |
257 | # out-of-source build. |
| 239 | cmake-utils_src_configure() { |
258 | enable_cmake-utils_src_configure() { |
| 240 | debug-print-function ${FUNCNAME} "$@" |
259 | debug-print-function ${FUNCNAME} "$@" |
| 241 | |
260 | |
| 242 | _check_build_dir |
261 | _check_build_dir init |
| 243 | |
262 | |
| 244 | # check if CMakeLists.txt exist and if no then die |
263 | # check if CMakeLists.txt exist and if no then die |
| 245 | if [[ ! -e "${CMAKE_USE_DIR}"/CMakeLists.txt ]] ; then |
264 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
| 246 | eerror "I was unable to locate CMakeLists.txt under:" |
265 | eerror "I was unable to locate CMakeLists.txt under:" |
| 247 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
266 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
| 248 | eerror "You should consider not inheriting the cmake eclass." |
267 | eerror "You should consider not inheriting the cmake eclass." |
| 249 | die "FATAL: Unable to find CMakeLists.txt" |
268 | die "FATAL: Unable to find CMakeLists.txt" |
| 250 | fi |
269 | fi |
| 251 | |
270 | |
| 252 | # Remove dangerous things. |
271 | # Remove dangerous things. |
| 253 | _modify-cmakelists |
272 | _modify-cmakelists |
|
|
273 | |
|
|
274 | # Fix xdg collision with sandbox |
|
|
275 | export XDG_CONFIG_HOME="${T}" |
| 254 | |
276 | |
| 255 | # @SEE CMAKE_BUILD_TYPE |
277 | # @SEE CMAKE_BUILD_TYPE |
| 256 | if [[ ${CMAKE_BUILD_TYPE} = Gentoo ]]; then |
278 | if [[ ${CMAKE_BUILD_TYPE} = Gentoo ]]; then |
| 257 | # Handle release builds |
279 | # Handle release builds |
| 258 | if ! has debug ${IUSE//+} || ! use debug; then |
280 | if ! has debug ${IUSE//+} || ! use debug; then |
| 259 | append-cppflags -DNDEBUG |
281 | append-cppflags -DNDEBUG |
| 260 | fi |
282 | fi |
| 261 | fi |
283 | fi |
| 262 | |
284 | |
| 263 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
285 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
| 264 | local build_rules="${TMPDIR}"/gentoo_rules.cmake |
286 | local build_rules=${T}/gentoo_rules.cmake |
| 265 | cat > ${build_rules} << _EOF_ |
287 | cat > "${build_rules}" <<- _EOF_ |
| 266 | SET (CMAKE_C_COMPILER $(type -P $(tc-getCC)) CACHE FILEPATH "C compiler" FORCE) |
288 | 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) |
289 | 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) |
290 | 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) |
291 | SET (CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C++ compile command" FORCE) |
| 270 | _EOF_ |
292 | _EOF_ |
|
|
293 | |
|
|
294 | if use prefix; then |
|
|
295 | cat >> "${build_rules}" <<- _EOF_ |
|
|
296 | # in Prefix we need rpath and must ensure cmake gets our default linker path |
|
|
297 | # right ... except for Darwin hosts |
|
|
298 | IF (NOT APPLE) |
|
|
299 | SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
|
|
300 | SET (CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH "${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" |
|
|
301 | CACHE STRING "" FORCE) |
|
|
302 | ENDIF (NOT APPLE) |
|
|
303 | _EOF_ |
|
|
304 | fi |
|
|
305 | |
|
|
306 | # Common configure parameters (invariants) |
|
|
307 | local common_config=${T}/gentoo_common_config.cmake |
|
|
308 | local libdir=$(get_libdir) |
|
|
309 | cat > "${common_config}" <<- _EOF_ |
|
|
310 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
|
|
311 | _EOF_ |
|
|
312 | [[ -n ${NOCOLOR} ]] || echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
|
|
313 | |
|
|
314 | # Convert mycmakeargs to an array, for backwards compatibility |
|
|
315 | # Make the array a local variable since <=portage-2.1.6.x does not |
|
|
316 | # support global arrays (see bug #297255). |
|
|
317 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
318 | local mycmakeargs_local=(${mycmakeargs}) |
|
|
319 | else |
|
|
320 | local mycmakeargs_local=("${mycmakeargs[@]}") |
|
|
321 | fi |
|
|
322 | |
|
|
323 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
| 271 | |
324 | |
| 272 | # Common configure parameters (overridable) |
325 | # Common configure parameters (overridable) |
| 273 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
326 | # 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. |
327 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
| 275 | local cmakeargs=" |
328 | local cmakeargs=( |
|
|
329 | -C "${common_config}" |
| 276 | -DCMAKE_INSTALL_PREFIX=${PREFIX:-/usr} |
330 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX:-/usr}" |
| 277 | ${mycmakeargs} |
331 | "${mycmakeargs_local[@]}" |
| 278 | -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} |
332 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
| 279 | -DCMAKE_INSTALL_DO_STRIP=OFF |
333 | -DCMAKE_INSTALL_DO_STRIP=OFF |
| 280 | -DCMAKE_USER_MAKE_RULES_OVERRIDE=${build_rules}" |
334 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
| 281 | |
335 | "${MYCMAKEARGS}" |
| 282 | # Common configure parameters (invariants) |
336 | ) |
| 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 | |
337 | |
| 291 | mkdir -p "${CMAKE_BUILD_DIR}" |
338 | mkdir -p "${CMAKE_BUILD_DIR}" |
| 292 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
339 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 293 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is $cmakeargs" |
340 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
|
|
341 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
| 294 | cmake ${cmakeargs} "${CMAKE_USE_DIR}" || die "cmake failed" |
342 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
| 295 | |
343 | |
| 296 | popd > /dev/null |
344 | popd > /dev/null |
| 297 | } |
345 | } |
| 298 | |
346 | |
| 299 | # @FUNCTION: cmake-utils_src_compile |
347 | # @FUNCTION: enable_cmake-utils_src_compile |
| 300 | # @DESCRIPTION: |
348 | # @DESCRIPTION: |
| 301 | # General function for compiling with cmake. Default behaviour is to check for |
349 | # General function for compiling with cmake. Default behaviour is to check for |
| 302 | # EAPI and respectively to configure as well or just compile. |
350 | # EAPI and respectively to configure as well or just compile. |
| 303 | cmake-utils_src_compile() { |
351 | enable_cmake-utils_src_compile() { |
| 304 | debug-print-function ${FUNCNAME} "$@" |
352 | debug-print-function ${FUNCNAME} "$@" |
| 305 | |
353 | |
| 306 | has src_configure ${EXPF} || cmake-utils_src_configure |
354 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
| 307 | cmake-utils_src_make "$@" |
355 | cmake-utils_src_make "$@" |
| 308 | } |
356 | } |
| 309 | |
357 | |
| 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 |
358 | # @FUNCTION: cmake-utils_src_make |
| 327 | # @DESCRIPTION: |
359 | # @DESCRIPTION: |
| 328 | # Function for building the package. Automatically detects the build type. |
360 | # Function for building the package. Automatically detects the build type. |
| 329 | # All arguments are passed to emake: |
361 | # All arguments are passed to emake |
| 330 | cmake-utils_src_make() { |
362 | cmake-utils_src_make() { |
| 331 | debug-print-function ${FUNCNAME} "$@" |
363 | debug-print-function ${FUNCNAME} "$@" |
| 332 | |
364 | |
| 333 | _check_build_dir |
365 | _check_build_dir |
| 334 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
366 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
| 335 | # first check if Makefile exist otherwise die |
367 | # first check if Makefile exist otherwise die |
| 336 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
368 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
| 337 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
369 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
| 338 | emake VERBOSE=1 "$@" || die "Make failed!" |
370 | emake VERBOSE=1 "$@" || die "Make failed!" |
| 339 | else |
371 | else |
| 340 | emake "$@" || die "Make failed!" |
372 | emake "$@" || die "Make failed!" |
| 341 | fi |
373 | fi |
| 342 | popd > /dev/null |
374 | popd &> /dev/null |
| 343 | } |
375 | } |
| 344 | |
376 | |
| 345 | # @FUNCTION: cmake-utils_src_install |
377 | # @FUNCTION: enable_cmake-utils_src_install |
| 346 | # @DESCRIPTION: |
378 | # @DESCRIPTION: |
| 347 | # Function for installing the package. Automatically detects the build type. |
379 | # Function for installing the package. Automatically detects the build type. |
| 348 | cmake-utils_src_install() { |
380 | enable_cmake-utils_src_install() { |
| 349 | debug-print-function ${FUNCNAME} "$@" |
381 | debug-print-function ${FUNCNAME} "$@" |
| 350 | |
382 | |
| 351 | _check_build_dir |
383 | _check_build_dir |
| 352 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
384 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
| 353 | emake install DESTDIR="${D}" || die "Make install failed" |
385 | emake install DESTDIR="${D}" || die "Make install failed" |
| 354 | popd > /dev/null |
386 | popd &> /dev/null |
| 355 | |
387 | |
| 356 | # Manual document installation |
388 | # Manual document installation |
| 357 | [[ -n "${DOCS}" ]] && { dodoc ${DOCS} || die "dodoc failed" ; } |
389 | [[ -n "${DOCS}" ]] && { dodoc ${DOCS} || die "dodoc failed" ; } |
| 358 | [[ -n "${HTML_DOCS}" ]] && { dohtml -r ${HTML_DOCS} || die "dohtml failed" ; } |
390 | [[ -n "${HTML_DOCS}" ]] && { dohtml -r ${HTML_DOCS} || die "dohtml failed" ; } |
| 359 | } |
391 | } |
| 360 | |
392 | |
| 361 | # @FUNCTION: cmake-utils_src_test |
393 | # @FUNCTION: enable_cmake-utils_src_test |
| 362 | # @DESCRIPTION: |
394 | # @DESCRIPTION: |
| 363 | # Function for testing the package. Automatically detects the build type. |
395 | # Function for testing the package. Automatically detects the build type. |
| 364 | cmake-utils_src_test() { |
396 | enable_cmake-utils_src_test() { |
| 365 | debug-print-function ${FUNCNAME} "$@" |
397 | debug-print-function ${FUNCNAME} "$@" |
| 366 | |
398 | |
| 367 | _check_build_dir |
399 | _check_build_dir |
| 368 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
400 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
| 369 | # Standard implementation of src_test |
401 | # Standard implementation of src_test |
| 370 | if emake -j1 check -n &> /dev/null; then |
402 | if emake -j1 check -n &> /dev/null; then |
| 371 | einfo ">>> Test phase [check]: ${CATEGORY}/${PF}" |
403 | einfo ">>> Test phase [check]: ${CATEGORY}/${PF}" |
| 372 | if ! emake -j1 check; then |
404 | if ! emake -j1 check; then |
| 373 | die "Make check failed. See above for details." |
405 | die "Make check failed. See above for details." |
| … | |
… | |
| 378 | die "Make test failed. See above for details." |
410 | die "Make test failed. See above for details." |
| 379 | fi |
411 | fi |
| 380 | else |
412 | else |
| 381 | einfo ">>> Test phase [none]: ${CATEGORY}/${PF}" |
413 | einfo ">>> Test phase [none]: ${CATEGORY}/${PF}" |
| 382 | fi |
414 | fi |
| 383 | popd > /dev/null |
415 | popd &> /dev/null |
| 384 | } |
416 | } |
|
|
417 | |
|
|
418 | ## Wrappers for calls bellow this line |
|
|
419 | # @FUNCTION: cmake-utils_src_configure |
|
|
420 | # @DESCRIPTION: |
|
|
421 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
|
|
422 | # unconditionaly or only when some useflag is enabled. |
|
|
423 | cmake-utils_src_configure() { |
|
|
424 | _execute_optionaly "src_configure" "$@" |
|
|
425 | } |
|
|
426 | |
|
|
427 | # @FUNCTION: cmake-utils_src_compile |
|
|
428 | # @DESCRIPTION: |
|
|
429 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
|
|
430 | # unconditionaly or only when some useflag is enabled. |
|
|
431 | cmake-utils_src_compile() { |
|
|
432 | _execute_optionaly "src_compile" "$@" |
|
|
433 | } |
|
|
434 | |
|
|
435 | # @FUNCTION: cmake-utils_src_install |
|
|
436 | # @DESCRIPTION: |
|
|
437 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
|
|
438 | # unconditionaly or only when some useflag is enabled. |
|
|
439 | cmake-utils_src_install() { |
|
|
440 | _execute_optionaly "src_install" "$@" |
|
|
441 | } |
|
|
442 | |
|
|
443 | # @FUNCTION: cmake-utils_src_test |
|
|
444 | # @DESCRIPTION: |
|
|
445 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
|
|
446 | # unconditionaly or only when some useflag is enabled. |
|
|
447 | cmake-utils_src_test() { |
|
|
448 | _execute_optionaly "src_test" "$@" |
|
|
449 | } |
|
|
450 | |
|
|
451 | |
|
|
452 | _execute_optionaly() { |
|
|
453 | local phase="$1" ; shift |
|
|
454 | if [[ ${WANT_CMAKE} = always ]]; then |
|
|
455 | enable_cmake-utils_${phase} "$@" |
|
|
456 | else |
|
|
457 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} "$@" |
|
|
458 | fi |
|
|
459 | } |