| 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.54 2010/06/26 17:55:59 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 |
104 | # @ECLASS-VARIABLE: PREFIX |
| 88 | # @DESCRIPTION: |
105 | # @DESCRIPTION: |
| 89 | # Eclass respects PREFIX variable, though it's not recommended way to set |
106 | # Eclass respects PREFIX variable, though it's not recommended way to set |
| 90 | # install/lib/bin prefixes. |
107 | # install/lib/bin prefixes. |
| 91 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
108 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
| 92 | |
109 | |
| 93 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
110 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
| 94 | # @DESCRIPTION: |
111 | # @DESCRIPTION: |
| 95 | # Set to enable in-source build. |
112 | # Set to enable in-source build. |
| 96 | |
|
|
| 97 | # @ECLASS-VARIABLE: CMAKE_NO_COLOR |
|
|
| 98 | # @DESCRIPTION: |
|
|
| 99 | # Set to disable cmake output coloring. |
|
|
| 100 | |
113 | |
| 101 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
114 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
| 102 | # @DESCRIPTION: |
115 | # @DESCRIPTION: |
| 103 | # Set to enable verbose messages during compilation. |
116 | # Set to enable verbose messages during compilation. |
| 104 | |
117 | |
| … | |
… | |
| 109 | # If about to be set - needs to be set before invoking cmake-utils_src_configure. |
122 | # 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 |
123 | # You usualy do *NOT* want nor need to set it as it pulls CMake default build-type |
| 111 | # specific compiler flags overriding make.conf. |
124 | # specific compiler flags overriding make.conf. |
| 112 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
125 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
| 113 | |
126 | |
| 114 | # @FUNCTION: _check_build_dir |
|
|
| 115 | # @DESCRIPTION: |
|
|
| 116 | # Determine using IN or OUT source build |
127 | # Determine using IN or OUT source build |
| 117 | _check_build_dir() { |
128 | _check_build_dir() { |
| 118 | # @ECLASS-VARIABLE: CMAKE_USE_DIR |
129 | # @ECLASS-VARIABLE: CMAKE_USE_DIR |
| 119 | # @DESCRIPTION: |
130 | # @DESCRIPTION: |
| 120 | # Sets the directory where we are working with cmake. |
131 | # Sets the directory where we are working with cmake. |
| … | |
… | |
| 127 | # @DESCRIPTION: |
138 | # @DESCRIPTION: |
| 128 | # Specify the build directory where all cmake processed |
139 | # Specify the build directory where all cmake processed |
| 129 | # files should be located. |
140 | # files should be located. |
| 130 | # |
141 | # |
| 131 | # For installing binary doins "${CMAKE_BUILD_DIR}/${PN}" |
142 | # For installing binary doins "${CMAKE_BUILD_DIR}/${PN}" |
| 132 | if [[ -n "${CMAKE_IN_SOURCE_BUILD}" ]]; then |
143 | if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
|
|
144 | # we build in source dir |
| 133 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
145 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
| 134 | else |
146 | elif [[ ${CMAKE_USE_DIR} = ${WORKDIR} ]]; then |
|
|
147 | # out of tree build, but with $S=$WORKDIR, see bug #273949 for reason. |
| 135 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}_build" |
148 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}/build" |
|
|
149 | else |
|
|
150 | # regular out of tree build |
|
|
151 | [[ ${1} = init || -d ${CMAKE_USE_DIR}_build ]] && SUF="_build" || SUF="" |
|
|
152 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}${SUF}" |
| 136 | fi |
153 | fi |
| 137 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
154 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
| 138 | } |
155 | } |
| 139 | # @FUNCTION: cmake-utils_use_with |
156 | # @FUNCTION: cmake-utils_use_with |
| 140 | # @USAGE: <USE flag> [flag name] |
157 | # @USAGE: <USE flag> [flag name] |
| … | |
… | |
| 197 | # |
214 | # |
| 198 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
215 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
| 199 | # and -DHAVE_FOO=OFF if it is disabled. |
216 | # and -DHAVE_FOO=OFF if it is disabled. |
| 200 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
217 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
| 201 | |
218 | |
| 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 |
219 | # @FUNCTION: cmake-utils_use |
| 208 | # @USAGE: <USE flag> [flag name] |
220 | # @USAGE: <USE flag> [flag name] |
| 209 | # @DESCRIPTION: |
221 | # @DESCRIPTION: |
| 210 | # Based on use_enable. See ebuild(5). |
222 | # Based on use_enable. See ebuild(5). |
| 211 | # |
223 | # |
| 212 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
224 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
| 213 | # and -DFOO=OFF if it is disabled. |
225 | # and -DFOO=OFF if it is disabled. |
| 214 | cmake-utils_use() { _use_me_now "" "$@" ; } |
226 | cmake-utils_use() { _use_me_now "" "$@" ; } |
| 215 | |
227 | |
| 216 | # Internal function for modifying hardcoded definitions. |
228 | # Internal function for modifying hardcoded definitions. |
| 217 | # Removes dangerous definitionts that override Gentoo settings. |
229 | # Removes dangerous definitions that override Gentoo settings. |
| 218 | _modify-cmakelists() { |
230 | _modify-cmakelists() { |
| 219 | debug-print-function ${FUNCNAME} "$@" |
231 | debug-print-function ${FUNCNAME} "$@" |
| 220 | |
232 | |
| 221 | # Comment out all set (<some_should_be_user_defined_variable> value) |
233 | # 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 |
234 | # 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}' {} + \ |
236 | -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}' {} + \ |
237 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
| 226 | || die "${LINENO}: failed to disable hardcoded settings" |
238 | || die "${LINENO}: failed to disable hardcoded settings" |
| 227 | |
239 | |
| 228 | # NOTE Append some useful summary here |
240 | # NOTE Append some useful summary here |
| 229 | echo ' |
241 | cat >> CMakeLists.txt <<- _EOF_ |
|
|
242 | |
| 230 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
243 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
| 231 | Build type: ${CMAKE_BUILD_TYPE} |
244 | Build type \${CMAKE_BUILD_TYPE} |
| 232 | Install path: ${CMAKE_INSTALL_PREFIX}\n")' >> CMakeLists.txt |
245 | Install path \${CMAKE_INSTALL_PREFIX} |
|
|
246 | Compiler flags: |
|
|
247 | C \${CMAKE_C_FLAGS} |
|
|
248 | C++ \${CMAKE_CXX_FLAGS} |
|
|
249 | Linker flags: |
|
|
250 | Executable \${CMAKE_EXE_LINKER_FLAGS} |
|
|
251 | Module \${CMAKE_MODULE_LINKER_FLAGS} |
|
|
252 | Shared \${CMAKE_SHARED_LINKER_FLAGS}\n") |
|
|
253 | _EOF_ |
| 233 | } |
254 | } |
| 234 | |
255 | |
| 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() { |
256 | enable_cmake-utils_src_configure() { |
| 240 | debug-print-function ${FUNCNAME} "$@" |
257 | debug-print-function ${FUNCNAME} "$@" |
| 241 | |
258 | |
| 242 | _check_build_dir |
259 | _check_build_dir init |
| 243 | |
260 | |
| 244 | # check if CMakeLists.txt exist and if no then die |
261 | # check if CMakeLists.txt exist and if no then die |
| 245 | if [[ ! -e "${CMAKE_USE_DIR}"/CMakeLists.txt ]] ; then |
262 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
| 246 | eerror "I was unable to locate CMakeLists.txt under:" |
263 | eerror "Unable to locate CMakeLists.txt under:" |
| 247 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
264 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
| 248 | eerror "You should consider not inheriting the cmake eclass." |
265 | eerror "Consider not inheriting the cmake eclass." |
| 249 | die "FATAL: Unable to find CMakeLists.txt" |
266 | die "FATAL: Unable to find CMakeLists.txt" |
| 250 | fi |
267 | fi |
| 251 | |
268 | |
| 252 | # Remove dangerous things. |
269 | # Remove dangerous things. |
| 253 | _modify-cmakelists |
270 | _modify-cmakelists |
|
|
271 | |
|
|
272 | # Fix xdg collision with sandbox |
|
|
273 | export XDG_CONFIG_HOME="${T}" |
| 254 | |
274 | |
| 255 | # @SEE CMAKE_BUILD_TYPE |
275 | # @SEE CMAKE_BUILD_TYPE |
| 256 | if [[ ${CMAKE_BUILD_TYPE} = Gentoo ]]; then |
276 | if [[ ${CMAKE_BUILD_TYPE} = Gentoo ]]; then |
| 257 | # Handle release builds |
277 | # Handle release builds |
| 258 | if ! has debug ${IUSE//+} || ! use debug; then |
278 | if ! has debug ${IUSE//+} || ! use debug; then |
| 259 | append-cppflags -DNDEBUG |
279 | append-cppflags -DNDEBUG |
| 260 | fi |
280 | fi |
| 261 | fi |
281 | fi |
| 262 | |
282 | |
| 263 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
283 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
| 264 | local build_rules="${TMPDIR}"/gentoo_rules.cmake |
284 | local build_rules=${T}/gentoo_rules.cmake |
| 265 | cat > ${build_rules} << _EOF_ |
285 | cat > "${build_rules}" <<- _EOF_ |
| 266 | SET (CMAKE_C_COMPILER $(type -P $(tc-getCC)) CACHE FILEPATH "C compiler" FORCE) |
286 | 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) |
287 | 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) |
288 | 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) |
289 | SET (CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C++ compile command" FORCE) |
| 270 | _EOF_ |
290 | _EOF_ |
|
|
291 | |
|
|
292 | if use prefix; then |
|
|
293 | cat >> "${build_rules}" <<- _EOF_ |
|
|
294 | # in Prefix we need rpath and must ensure cmake gets our default linker path |
|
|
295 | # right ... except for Darwin hosts |
|
|
296 | IF (NOT APPLE) |
|
|
297 | SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
|
|
298 | SET (CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH "${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" |
|
|
299 | CACHE STRING "" FORCE) |
|
|
300 | ENDIF (NOT APPLE) |
|
|
301 | _EOF_ |
|
|
302 | fi |
|
|
303 | |
|
|
304 | # Common configure parameters (invariants) |
|
|
305 | local common_config=${T}/gentoo_common_config.cmake |
|
|
306 | local libdir=$(get_libdir) |
|
|
307 | cat > "${common_config}" <<- _EOF_ |
|
|
308 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
|
|
309 | SET (CMAKE_INSTALL_LIBDIR ${libdir} CACHE PATH "Output directory for libraries") |
|
|
310 | _EOF_ |
|
|
311 | [[ "${NOCOLOR}" = true || "${NOCOLOR}" = yes ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
|
|
312 | |
|
|
313 | # Convert mycmakeargs to an array, for backwards compatibility |
|
|
314 | # Make the array a local variable since <=portage-2.1.6.x does not |
|
|
315 | # support global arrays (see bug #297255). |
|
|
316 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
317 | local mycmakeargs_local=(${mycmakeargs}) |
|
|
318 | else |
|
|
319 | local mycmakeargs_local=("${mycmakeargs[@]}") |
|
|
320 | fi |
|
|
321 | |
|
|
322 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
| 271 | |
323 | |
| 272 | # Common configure parameters (overridable) |
324 | # Common configure parameters (overridable) |
| 273 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
325 | # 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. |
326 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
| 275 | local cmakeargs=" |
327 | local cmakeargs=( |
|
|
328 | -C "${common_config}" |
| 276 | -DCMAKE_INSTALL_PREFIX=${PREFIX:-/usr} |
329 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX:-/usr}" |
| 277 | ${mycmakeargs} |
330 | "${mycmakeargs_local[@]}" |
| 278 | -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} |
331 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
| 279 | -DCMAKE_INSTALL_DO_STRIP=OFF |
332 | -DCMAKE_INSTALL_DO_STRIP=OFF |
| 280 | -DCMAKE_USER_MAKE_RULES_OVERRIDE=${build_rules}" |
333 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
| 281 | |
334 | "${MYCMAKEARGS}" |
| 282 | # Common configure parameters (invariants) |
335 | ) |
| 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 | |
336 | |
| 291 | mkdir -p "${CMAKE_BUILD_DIR}" |
337 | mkdir -p "${CMAKE_BUILD_DIR}" |
| 292 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
338 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 293 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is $cmakeargs" |
339 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
|
|
340 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
| 294 | cmake ${cmakeargs} "${CMAKE_USE_DIR}" || die "cmake failed" |
341 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
| 295 | |
342 | |
| 296 | popd > /dev/null |
343 | popd > /dev/null |
| 297 | } |
344 | } |
| 298 | |
345 | |
| 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() { |
346 | enable_cmake-utils_src_compile() { |
| 304 | debug-print-function ${FUNCNAME} "$@" |
347 | debug-print-function ${FUNCNAME} "$@" |
| 305 | |
348 | |
| 306 | has src_configure ${EXPF} || cmake-utils_src_configure |
349 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
| 307 | cmake-utils_src_make "$@" |
350 | cmake-utils_src_make "$@" |
| 308 | } |
351 | } |
| 309 | |
352 | |
| 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 |
353 | # @FUNCTION: cmake-utils_src_make |
| 327 | # @DESCRIPTION: |
354 | # @DESCRIPTION: |
| 328 | # Function for building the package. Automatically detects the build type. |
355 | # Function for building the package. Automatically detects the build type. |
| 329 | # All arguments are passed to emake: |
356 | # All arguments are passed to emake |
| 330 | cmake-utils_src_make() { |
357 | cmake-utils_src_make() { |
| 331 | debug-print-function ${FUNCNAME} "$@" |
358 | debug-print-function ${FUNCNAME} "$@" |
| 332 | |
359 | |
| 333 | _check_build_dir |
360 | _check_build_dir |
| 334 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
361 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
| 335 | # first check if Makefile exist otherwise die |
362 | # first check if Makefile exist otherwise die |
| 336 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
363 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
| 337 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
364 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
| 338 | emake VERBOSE=1 "$@" || die "Make failed!" |
365 | emake VERBOSE=1 "$@" || die "Make failed!" |
| 339 | else |
366 | else |
| 340 | emake "$@" || die "Make failed!" |
367 | emake "$@" || die "Make failed!" |
| 341 | fi |
368 | fi |
| 342 | popd > /dev/null |
369 | popd &> /dev/null |
| 343 | } |
370 | } |
| 344 | |
371 | |
| 345 | # @FUNCTION: cmake-utils_src_install |
|
|
| 346 | # @DESCRIPTION: |
|
|
| 347 | # Function for installing the package. Automatically detects the build type. |
|
|
| 348 | cmake-utils_src_install() { |
372 | enable_cmake-utils_src_install() { |
| 349 | debug-print-function ${FUNCNAME} "$@" |
373 | debug-print-function ${FUNCNAME} "$@" |
| 350 | |
374 | |
| 351 | _check_build_dir |
375 | _check_build_dir |
| 352 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
376 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
| 353 | emake install DESTDIR="${D}" || die "Make install failed" |
377 | base_src_install |
| 354 | popd > /dev/null |
378 | popd &> /dev/null |
| 355 | |
379 | |
| 356 | # Manual document installation |
380 | # Backward compatibility, for non-array variables |
| 357 | [[ -n "${DOCS}" ]] && { dodoc ${DOCS} || die "dodoc failed" ; } |
381 | if [[ -n "${DOCS}" ]] && [[ "$(declare -p DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
| 358 | [[ -n "${HTML_DOCS}" ]] && { dohtml -r ${HTML_DOCS} || die "dohtml failed" ; } |
382 | dodoc ${DOCS} || die "dodoc failed" |
|
|
383 | fi |
|
|
384 | if [[ -n "${HTML_DOCS}" ]] && [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
385 | dohtml -r ${HTML_DOCS} || die "dohtml failed" |
|
|
386 | fi |
| 359 | } |
387 | } |
| 360 | |
388 | |
| 361 | # @FUNCTION: cmake-utils_src_test |
|
|
| 362 | # @DESCRIPTION: |
|
|
| 363 | # Function for testing the package. Automatically detects the build type. |
|
|
| 364 | cmake-utils_src_test() { |
389 | enable_cmake-utils_src_test() { |
| 365 | debug-print-function ${FUNCNAME} "$@" |
390 | debug-print-function ${FUNCNAME} "$@" |
| 366 | |
391 | |
| 367 | _check_build_dir |
392 | _check_build_dir |
| 368 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
393 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
| 369 | # Standard implementation of src_test |
394 | # Standard implementation of src_test |
| 370 | if emake -j1 check -n &> /dev/null; then |
395 | if emake -j1 check -n &> /dev/null; then |
| 371 | einfo ">>> Test phase [check]: ${CATEGORY}/${PF}" |
396 | einfo ">>> Test phase [check]: ${CATEGORY}/${PF}" |
| 372 | if ! emake -j1 check; then |
397 | if ! emake -j1 check; then |
| 373 | die "Make check failed. See above for details." |
398 | die "Make check failed. See above for details." |
| … | |
… | |
| 378 | die "Make test failed. See above for details." |
403 | die "Make test failed. See above for details." |
| 379 | fi |
404 | fi |
| 380 | else |
405 | else |
| 381 | einfo ">>> Test phase [none]: ${CATEGORY}/${PF}" |
406 | einfo ">>> Test phase [none]: ${CATEGORY}/${PF}" |
| 382 | fi |
407 | fi |
| 383 | popd > /dev/null |
408 | popd &> /dev/null |
| 384 | } |
409 | } |
|
|
410 | |
|
|
411 | # @FUNCTION: cmake-utils_src_configure |
|
|
412 | # @DESCRIPTION: |
|
|
413 | # General function for configuring with cmake. Default behaviour is to start an |
|
|
414 | # out-of-source build. |
|
|
415 | cmake-utils_src_configure() { |
|
|
416 | _execute_optionaly "src_configure" "$@" |
|
|
417 | } |
|
|
418 | |
|
|
419 | # @FUNCTION: cmake-utils_src_compile |
|
|
420 | # @DESCRIPTION: |
|
|
421 | # General function for compiling with cmake. Default behaviour is to check for |
|
|
422 | # EAPI and respectively to configure as well or just compile. |
|
|
423 | # Automatically detects the build type. All arguments are passed to emake. |
|
|
424 | cmake-utils_src_compile() { |
|
|
425 | _execute_optionaly "src_compile" "$@" |
|
|
426 | } |
|
|
427 | |
|
|
428 | # @FUNCTION: cmake-utils_src_install |
|
|
429 | # @DESCRIPTION: |
|
|
430 | # Function for installing the package. Automatically detects the build type. |
|
|
431 | cmake-utils_src_install() { |
|
|
432 | _execute_optionaly "src_install" "$@" |
|
|
433 | } |
|
|
434 | |
|
|
435 | # @FUNCTION: cmake-utils_src_test |
|
|
436 | # @DESCRIPTION: |
|
|
437 | # Function for testing the package. Automatically detects the build type. |
|
|
438 | cmake-utils_src_test() { |
|
|
439 | _execute_optionaly "src_test" "$@" |
|
|
440 | } |
|
|
441 | |
|
|
442 | # Optionally executes phases based on WANT_CMAKE variable/USE flag. |
|
|
443 | _execute_optionaly() { |
|
|
444 | local phase="$1" ; shift |
|
|
445 | if [[ ${WANT_CMAKE} = always ]]; then |
|
|
446 | enable_cmake-utils_${phase} "$@" |
|
|
447 | else |
|
|
448 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} "$@" |
|
|
449 | fi |
|
|
450 | } |