| 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.57 2010/08/12 19:27:42 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 |
23 | # @ECLASS-VARIABLE: WANT_CMAKE |
| 24 | # @DESCRIPTION: |
24 | # @DESCRIPTION: |
| 25 | # Specify if cmake-utils eclass should depend on cmake optionaly or not. |
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. |
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 |
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 | |
|
|
31 | # @ECLASS-VARIABLE: CMAKE_MIN_VERSION |
|
|
32 | # @DESCRIPTION: |
|
|
33 | # Specify the minimum required CMake version. Default is 2.6.2-r1 |
|
|
34 | CMAKE_MIN_VERSION="${CMAKE_MIN_VERSION:-2.6.2-r1}" |
|
|
35 | |
| 30 | CMAKEDEPEND="" |
36 | CMAKEDEPEND="" |
| 31 | case ${WANT_CMAKE} in |
37 | case ${WANT_CMAKE} in |
| 32 | always) |
38 | always) |
| 33 | ;; |
39 | ;; |
| 34 | *) |
40 | *) |
| 35 | IUSE+=" ${WANT_CMAKE}" |
41 | IUSE+=" ${WANT_CMAKE}" |
| 36 | CMAKEDEPEND+="${WANT_CMAKE}? ( " |
42 | CMAKEDEPEND+="${WANT_CMAKE}? ( " |
| 37 | ;; |
43 | ;; |
| 38 | esac |
44 | esac |
| 39 | inherit toolchain-funcs multilib flag-o-matic base |
45 | inherit toolchain-funcs multilib flag-o-matic base |
| 40 | |
46 | |
| 41 | CMAKE_EXPF="src_compile src_test src_install" |
47 | CMAKE_EXPF="src_compile src_test src_install" |
| 42 | case ${EAPI:-0} in |
48 | case ${EAPI:-0} in |
| … | |
… | |
| 47 | EXPORT_FUNCTIONS ${CMAKE_EXPF} |
53 | EXPORT_FUNCTIONS ${CMAKE_EXPF} |
| 48 | |
54 | |
| 49 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
55 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
| 50 | |
56 | |
| 51 | if [[ ${PN} != cmake ]]; then |
57 | if [[ ${PN} != cmake ]]; then |
| 52 | CMAKEDEPEND+=">=dev-util/cmake-2.6.2-r1" |
58 | CMAKEDEPEND+=">=dev-util/cmake-${CMAKE_MIN_VERSION}" |
| 53 | fi |
59 | fi |
| 54 | |
60 | |
| 55 | CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
61 | CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
| 56 | |
62 | |
| 57 | [[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
63 | [[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
| … | |
… | |
| 93 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
99 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
| 94 | done |
100 | done |
| 95 | fi |
101 | fi |
| 96 | } |
102 | } |
| 97 | |
103 | |
| 98 | # @ECLASS-VARIABLE: DOCS |
|
|
| 99 | # @DESCRIPTION: |
|
|
| 100 | # Documents passed to dodoc command. |
|
|
| 101 | |
|
|
| 102 | # @ECLASS-VARIABLE: HTML_DOCS |
|
|
| 103 | # @DESCRIPTION: |
|
|
| 104 | # Documents passed to dohtml command. |
|
|
| 105 | |
|
|
| 106 | # @ECLASS-VARIABLE: PREFIX |
|
|
| 107 | # @DESCRIPTION: |
|
|
| 108 | # Eclass respects PREFIX variable, though it's not recommended way to set |
|
|
| 109 | # install/lib/bin prefixes. |
|
|
| 110 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
|
|
| 111 | |
|
|
| 112 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
104 | # @ECLASS-VARIABLE: CMAKE_BUILD_DIR |
| 113 | # @DESCRIPTION: |
105 | # @DESCRIPTION: |
| 114 | # Set to enable in-source build. |
106 | # Build directory where all cmake processed files should be generated. |
| 115 | |
107 | # For in-source build it's fixed to ${CMAKE_USE_DIR}. |
| 116 | # @ECLASS-VARIABLE: CMAKE_NO_COLOR |
108 | # For out-of-source build it can be overriden, by default it uses |
| 117 | # @DESCRIPTION: |
109 | # ${WORKDIR}/${P}_build. |
| 118 | # Set to disable cmake output coloring. |
|
|
| 119 | |
|
|
| 120 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
|
|
| 121 | # @DESCRIPTION: |
|
|
| 122 | # Set to enable verbose messages during compilation. |
|
|
| 123 | |
110 | |
| 124 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
111 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
| 125 | # @DESCRIPTION: |
112 | # @DESCRIPTION: |
| 126 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
113 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
| 127 | # known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
114 | # known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
| 128 | # 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. |
| 129 | # 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 |
| 130 | # specific compiler flags overriding make.conf. |
117 | # specific compiler flags overriding make.conf. |
| 131 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
118 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
| 132 | |
119 | |
| 133 | # @FUNCTION: _check_build_dir |
120 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
| 134 | # @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 | |
| 135 | # Determine using IN or OUT source build |
141 | # Determine using IN or OUT source build |
| 136 | _check_build_dir() { |
142 | _check_build_dir() { |
| 137 | # @ECLASS-VARIABLE: CMAKE_USE_DIR |
|
|
| 138 | # @DESCRIPTION: |
|
|
| 139 | # Sets the directory where we are working with cmake. |
|
|
| 140 | # For example when application uses autotools and only one |
|
|
| 141 | # plugin needs to be done by cmake. |
|
|
| 142 | # By default it uses ${S}. |
|
|
| 143 | : ${CMAKE_USE_DIR:=${S}} |
143 | : ${CMAKE_USE_DIR:=${S}} |
| 144 | |
|
|
| 145 | # @ECLASS-VARIABLE: CMAKE_BUILD_DIR |
|
|
| 146 | # @DESCRIPTION: |
|
|
| 147 | # Specify the build directory where all cmake processed |
|
|
| 148 | # files should be located. |
|
|
| 149 | # |
|
|
| 150 | # For installing binary doins "${CMAKE_BUILD_DIR}/${PN}" |
|
|
| 151 | if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
144 | if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
| 152 | # we build in source dir |
145 | # we build in source dir |
| 153 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
146 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
| 154 | elif [[ ${CMAKE_USE_DIR} = ${WORKDIR} ]]; then |
147 | elif [[ ${CMAKE_USE_DIR} = ${WORKDIR} ]]; then |
| 155 | # out of tree build, but with $S=$WORKDIR, see bug #273949 for reason. |
148 | # out of tree build, but with $S=$WORKDIR, see bug #273949 for reason. |
| 156 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}/build" |
149 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}/build" |
| 157 | else |
150 | else |
| 158 | # regular out of tree build |
151 | # regular out of tree build |
| 159 | [[ ${1} = init || -d ${CMAKE_USE_DIR}_build ]] && SUF="_build" || SUF="" |
152 | [[ ${1} = init || -d ${CMAKE_USE_DIR}_build ]] && SUF="_build" || SUF="" |
| 160 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}${SUF}" |
153 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}${SUF}" |
| 161 | |
|
|
| 162 | fi |
154 | fi |
| 163 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
155 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
| 164 | } |
156 | } |
| 165 | # @FUNCTION: cmake-utils_use_with |
157 | # @FUNCTION: cmake-utils_use_with |
| 166 | # @USAGE: <USE flag> [flag name] |
158 | # @USAGE: <USE flag> [flag name] |
| … | |
… | |
| 223 | # |
215 | # |
| 224 | # `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 |
| 225 | # and -DHAVE_FOO=OFF if it is disabled. |
217 | # and -DHAVE_FOO=OFF if it is disabled. |
| 226 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
218 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
| 227 | |
219 | |
|
|
220 | # @FUNCTION: cmake-utils_use_use |
|
|
221 | # @USAGE: <USE flag> [flag name] |
|
|
222 | # @DESCRIPTION: |
|
|
223 | # Based on use_enable. See ebuild(5). |
|
|
224 | # |
|
|
225 | # `cmake-utils_use_use foo FOO` echoes -DUSE_FOO=ON if foo is enabled |
|
|
226 | # and -DUSE_FOO=OFF if it is disabled. |
|
|
227 | cmake-utils_use_use() { _use_me_now USE_ "$@" ; } |
|
|
228 | |
| 228 | # @FUNCTION: cmake-utils_use |
229 | # @FUNCTION: cmake-utils_use |
| 229 | # @USAGE: <USE flag> [flag name] |
230 | # @USAGE: <USE flag> [flag name] |
| 230 | # @DESCRIPTION: |
231 | # @DESCRIPTION: |
| 231 | # Based on use_enable. See ebuild(5). |
232 | # Based on use_enable. See ebuild(5). |
| 232 | # |
233 | # |
| 233 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
234 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
| 234 | # and -DFOO=OFF if it is disabled. |
235 | # and -DFOO=OFF if it is disabled. |
| 235 | cmake-utils_use() { _use_me_now "" "$@" ; } |
236 | cmake-utils_use() { _use_me_now "" "$@" ; } |
| 236 | |
237 | |
| 237 | # Internal function for modifying hardcoded definitions. |
238 | # Internal function for modifying hardcoded definitions. |
| 238 | # Removes dangerous definitionts that override Gentoo settings. |
239 | # Removes dangerous definitions that override Gentoo settings. |
| 239 | _modify-cmakelists() { |
240 | _modify-cmakelists() { |
| 240 | debug-print-function ${FUNCNAME} "$@" |
241 | debug-print-function ${FUNCNAME} "$@" |
| 241 | |
242 | |
| 242 | # Comment out all set (<some_should_be_user_defined_variable> value) |
243 | # 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 |
244 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
| 244 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
245 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
| 245 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
246 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
247 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_COLOR_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \ |
| 246 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
248 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
249 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_VERBOSE_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \ |
| 247 | || die "${LINENO}: failed to disable hardcoded settings" |
250 | || die "${LINENO}: failed to disable hardcoded settings" |
| 248 | |
251 | |
| 249 | # NOTE Append some useful summary here |
252 | # NOTE Append some useful summary here |
| 250 | cat >> CMakeLists.txt <<- _EOF_ |
253 | cat >> CMakeLists.txt <<- _EOF_ |
| 251 | |
254 | |
| 252 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
255 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
| 253 | Build type: ${CMAKE_BUILD_TYPE} |
256 | Build type \${CMAKE_BUILD_TYPE} |
| 254 | Install path: ${CMAKE_INSTALL_PREFIX}\n") |
257 | Install path \${CMAKE_INSTALL_PREFIX} |
|
|
258 | Compiler flags: |
|
|
259 | C \${CMAKE_C_FLAGS} |
|
|
260 | C++ \${CMAKE_CXX_FLAGS} |
|
|
261 | Linker flags: |
|
|
262 | Executable \${CMAKE_EXE_LINKER_FLAGS} |
|
|
263 | Module \${CMAKE_MODULE_LINKER_FLAGS} |
|
|
264 | Shared \${CMAKE_SHARED_LINKER_FLAGS}\n") |
| 255 | _EOF_ |
265 | _EOF_ |
| 256 | } |
266 | } |
| 257 | |
267 | |
| 258 | # @FUNCTION: enable_cmake-utils_src_configure |
|
|
| 259 | # @DESCRIPTION: |
|
|
| 260 | # General function for configuring with cmake. Default behaviour is to start an |
|
|
| 261 | # out-of-source build. |
|
|
| 262 | enable_cmake-utils_src_configure() { |
268 | enable_cmake-utils_src_configure() { |
| 263 | debug-print-function ${FUNCNAME} "$@" |
269 | debug-print-function ${FUNCNAME} "$@" |
| 264 | |
270 | |
| 265 | _check_build_dir init |
271 | _check_build_dir init |
| 266 | |
272 | |
| 267 | # check if CMakeLists.txt exist and if no then die |
273 | # check if CMakeLists.txt exist and if no then die |
| 268 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
274 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
| 269 | eerror "I was unable to locate CMakeLists.txt under:" |
275 | eerror "Unable to locate CMakeLists.txt under:" |
| 270 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
276 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
| 271 | eerror "You should consider not inheriting the cmake eclass." |
277 | eerror "Consider not inheriting the cmake eclass." |
| 272 | die "FATAL: Unable to find CMakeLists.txt" |
278 | die "FATAL: Unable to find CMakeLists.txt" |
| 273 | fi |
279 | fi |
| 274 | |
280 | |
| 275 | # Remove dangerous things. |
281 | # Remove dangerous things. |
| 276 | _modify-cmakelists |
282 | _modify-cmakelists |
| … | |
… | |
| 278 | # Fix xdg collision with sandbox |
284 | # Fix xdg collision with sandbox |
| 279 | export XDG_CONFIG_HOME="${T}" |
285 | export XDG_CONFIG_HOME="${T}" |
| 280 | |
286 | |
| 281 | # @SEE CMAKE_BUILD_TYPE |
287 | # @SEE CMAKE_BUILD_TYPE |
| 282 | if [[ ${CMAKE_BUILD_TYPE} = Gentoo ]]; then |
288 | if [[ ${CMAKE_BUILD_TYPE} = Gentoo ]]; then |
| 283 | # Handle release builds |
289 | # Handle debug and release codepaths |
| 284 | if ! has debug ${IUSE//+} || ! use debug; then |
290 | if has debug ${IUSE//+} && use debug; then |
| 285 | append-cppflags -DNDEBUG |
291 | append-cppflags -DDEBUG |
|
|
292 | else |
|
|
293 | append-cppflags -DNDEBUG -DQT_NO_DEBUG -DQT_NO_DEBUG_STREAM |
| 286 | fi |
294 | fi |
| 287 | fi |
295 | fi |
| 288 | |
296 | |
| 289 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
297 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
| 290 | local build_rules=${T}/gentoo_rules.cmake |
298 | local build_rules=${T}/gentoo_rules.cmake |
| … | |
… | |
| 310 | # Common configure parameters (invariants) |
318 | # Common configure parameters (invariants) |
| 311 | local common_config=${T}/gentoo_common_config.cmake |
319 | local common_config=${T}/gentoo_common_config.cmake |
| 312 | local libdir=$(get_libdir) |
320 | local libdir=$(get_libdir) |
| 313 | cat > "${common_config}" <<- _EOF_ |
321 | cat > "${common_config}" <<- _EOF_ |
| 314 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
322 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
|
|
323 | SET (CMAKE_INSTALL_LIBDIR ${libdir} CACHE PATH "Output directory for libraries") |
| 315 | _EOF_ |
324 | _EOF_ |
| 316 | [[ -n ${CMAKE_NO_COLOR} ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
325 | [[ "${NOCOLOR}" = true || "${NOCOLOR}" = yes ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
| 317 | |
326 | |
| 318 | # Convert mycmakeargs to an array, for backwards compatibility |
327 | # Convert mycmakeargs to an array, for backwards compatibility |
|
|
328 | # Make the array a local variable since <=portage-2.1.6.x does not |
|
|
329 | # support global arrays (see bug #297255). |
| 319 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
330 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
| 320 | mycmakeargs=(${mycmakeargs}) |
331 | local mycmakeargs_local=(${mycmakeargs}) |
|
|
332 | else |
|
|
333 | local mycmakeargs_local=("${mycmakeargs[@]}") |
| 321 | fi |
334 | fi |
| 322 | |
335 | |
| 323 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
336 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
| 324 | |
337 | |
| 325 | # Common configure parameters (overridable) |
338 | # Common configure parameters (overridable) |
| 326 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
339 | # 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. |
340 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
| 328 | local cmakeargs=( |
341 | local cmakeargs=( |
| 329 | -C "${common_config}" |
342 | -C "${common_config}" |
| 330 | -DCMAKE_INSTALL_PREFIX="${PREFIX:-${EPREFIX}/usr}" |
343 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX:-/usr}" |
| 331 | "${mycmakeargs[@]}" |
344 | "${mycmakeargs_local[@]}" |
| 332 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
345 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
| 333 | -DCMAKE_INSTALL_DO_STRIP=OFF |
346 | -DCMAKE_INSTALL_DO_STRIP=OFF |
| 334 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
347 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
|
|
348 | "${MYCMAKEARGS}" |
| 335 | ) |
349 | ) |
| 336 | |
350 | |
| 337 | mkdir -p "${CMAKE_BUILD_DIR}" |
351 | mkdir -p "${CMAKE_BUILD_DIR}" |
| 338 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
352 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 339 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${cmakeargs[*]}" |
353 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
| 340 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
354 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
| 341 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
355 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
| 342 | |
|
|
| 343 | popd > /dev/null |
356 | popd > /dev/null |
| 344 | } |
357 | } |
| 345 | |
358 | |
| 346 | # @FUNCTION: enable_cmake-utils_src_compile |
|
|
| 347 | # @DESCRIPTION: |
|
|
| 348 | # General function for compiling with cmake. Default behaviour is to check for |
|
|
| 349 | # EAPI and respectively to configure as well or just compile. |
|
|
| 350 | enable_cmake-utils_src_compile() { |
359 | enable_cmake-utils_src_compile() { |
| 351 | debug-print-function ${FUNCNAME} "$@" |
360 | debug-print-function ${FUNCNAME} "$@" |
| 352 | |
361 | |
| 353 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
362 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
| 354 | cmake-utils_src_make "$@" |
363 | cmake-utils_src_make "$@" |
| 355 | } |
364 | } |
| 356 | |
365 | |
| 357 | # @FUNCTION: cmake-utils_src_make |
366 | # @FUNCTION: cmake-utils_src_make |
| 358 | # @DESCRIPTION: |
367 | # @DESCRIPTION: |
| 359 | # Function for building the package. Automatically detects the build type. |
368 | # Function for building the package. Automatically detects the build type. |
| 360 | # All arguments are passed to emake |
369 | # All arguments are passed to emake. |
| 361 | cmake-utils_src_make() { |
370 | cmake-utils_src_make() { |
| 362 | debug-print-function ${FUNCNAME} "$@" |
371 | debug-print-function ${FUNCNAME} "$@" |
| 363 | |
372 | |
| 364 | _check_build_dir |
373 | _check_build_dir |
| 365 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
374 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 366 | # first check if Makefile exist otherwise die |
375 | # first check if Makefile exist otherwise die |
| 367 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
376 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
| 368 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
377 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
| 369 | emake VERBOSE=1 "$@" || die "Make failed!" |
378 | emake VERBOSE=1 "$@" || die "Make failed!" |
| 370 | else |
379 | else |
| 371 | emake "$@" || die "Make failed!" |
380 | emake "$@" || die "Make failed!" |
| 372 | fi |
381 | fi |
| 373 | popd &> /dev/null |
382 | popd > /dev/null |
| 374 | } |
383 | } |
| 375 | |
384 | |
|
|
385 | enable_cmake-utils_src_install() { |
|
|
386 | debug-print-function ${FUNCNAME} "$@" |
|
|
387 | |
|
|
388 | _check_build_dir |
|
|
389 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
|
|
390 | base_src_install |
|
|
391 | popd > /dev/null |
|
|
392 | |
|
|
393 | # Backward compatibility, for non-array variables |
|
|
394 | if [[ -n "${DOCS}" ]] && [[ "$(declare -p DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
395 | dodoc ${DOCS} || die "dodoc failed" |
|
|
396 | fi |
|
|
397 | if [[ -n "${HTML_DOCS}" ]] && [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
398 | dohtml -r ${HTML_DOCS} || die "dohtml failed" |
|
|
399 | fi |
|
|
400 | } |
|
|
401 | |
|
|
402 | enable_cmake-utils_src_test() { |
|
|
403 | debug-print-function ${FUNCNAME} "$@" |
|
|
404 | |
|
|
405 | _check_build_dir |
|
|
406 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
|
|
407 | local ctestargs |
|
|
408 | [[ -n ${TEST_VERBOSE} ]] && ctestargs="--extra-verbose --output-on-failure" |
|
|
409 | ctest ${ctestargs} || die "Tests failed." |
|
|
410 | popd > /dev/null |
|
|
411 | } |
|
|
412 | |
|
|
413 | # @FUNCTION: cmake-utils_src_configure |
|
|
414 | # @DESCRIPTION: |
|
|
415 | # General function for configuring with cmake. Default behaviour is to start an |
|
|
416 | # out-of-source build. |
|
|
417 | cmake-utils_src_configure() { |
|
|
418 | _execute_optionaly "src_configure" "$@" |
|
|
419 | } |
|
|
420 | |
|
|
421 | # @FUNCTION: cmake-utils_src_compile |
|
|
422 | # @DESCRIPTION: |
|
|
423 | # General function for compiling with cmake. Default behaviour is to check for |
|
|
424 | # EAPI and respectively to configure as well or just compile. |
|
|
425 | # Automatically detects the build type. All arguments are passed to emake. |
|
|
426 | cmake-utils_src_compile() { |
|
|
427 | _execute_optionaly "src_compile" "$@" |
|
|
428 | } |
|
|
429 | |
| 376 | # @FUNCTION: enable_cmake-utils_src_install |
430 | # @FUNCTION: cmake-utils_src_install |
| 377 | # @DESCRIPTION: |
431 | # @DESCRIPTION: |
| 378 | # Function for installing the package. Automatically detects the build type. |
432 | # Function for installing the package. Automatically detects the build type. |
| 379 | enable_cmake-utils_src_install() { |
433 | cmake-utils_src_install() { |
| 380 | debug-print-function ${FUNCNAME} "$@" |
434 | _execute_optionaly "src_install" "$@" |
| 381 | |
|
|
| 382 | _check_build_dir |
|
|
| 383 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
|
|
| 384 | emake install DESTDIR="${D}" || die "Make install failed" |
|
|
| 385 | popd &> /dev/null |
|
|
| 386 | |
|
|
| 387 | # Manual document installation |
|
|
| 388 | [[ -n "${DOCS}" ]] && { dodoc ${DOCS} || die "dodoc failed" ; } |
|
|
| 389 | [[ -n "${HTML_DOCS}" ]] && { dohtml -r ${HTML_DOCS} || die "dohtml failed" ; } |
|
|
| 390 | } |
435 | } |
| 391 | |
436 | |
| 392 | # @FUNCTION: enable_cmake-utils_src_test |
437 | # @FUNCTION: cmake-utils_src_test |
| 393 | # @DESCRIPTION: |
438 | # @DESCRIPTION: |
| 394 | # Function for testing the package. Automatically detects the build type. |
439 | # Function for testing the package. Automatically detects the build type. |
| 395 | enable_cmake-utils_src_test() { |
|
|
| 396 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 397 | |
|
|
| 398 | _check_build_dir |
|
|
| 399 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
|
|
| 400 | # Standard implementation of src_test |
|
|
| 401 | if emake -j1 check -n &> /dev/null; then |
|
|
| 402 | einfo ">>> Test phase [check]: ${CATEGORY}/${PF}" |
|
|
| 403 | if ! emake -j1 check; then |
|
|
| 404 | die "Make check failed. See above for details." |
|
|
| 405 | fi |
|
|
| 406 | elif emake -j1 test -n &> /dev/null; then |
|
|
| 407 | einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" |
|
|
| 408 | if ! emake -j1 test; then |
|
|
| 409 | die "Make test failed. See above for details." |
|
|
| 410 | fi |
|
|
| 411 | else |
|
|
| 412 | einfo ">>> Test phase [none]: ${CATEGORY}/${PF}" |
|
|
| 413 | fi |
|
|
| 414 | popd &> /dev/null |
|
|
| 415 | } |
|
|
| 416 | |
|
|
| 417 | ## Wrappers for calls bellow this line |
|
|
| 418 | # @FUNCTION: cmake-utils_src_configure |
|
|
| 419 | # @DESCRIPTION: |
|
|
| 420 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
|
|
| 421 | # unconditionaly or only when some useflag is enabled. |
|
|
| 422 | cmake-utils_src_configure() { |
|
|
| 423 | _execute_optionaly "src_configure" |
|
|
| 424 | } |
|
|
| 425 | |
|
|
| 426 | # @FUNCTION: cmake-utils_src_compile |
|
|
| 427 | # @DESCRIPTION: |
|
|
| 428 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
|
|
| 429 | # unconditionaly or only when some useflag is enabled. |
|
|
| 430 | cmake-utils_src_compile() { |
|
|
| 431 | _execute_optionaly "src_compile" |
|
|
| 432 | } |
|
|
| 433 | |
|
|
| 434 | # @FUNCTION: cmake-utils_src_install |
|
|
| 435 | # @DESCRIPTION: |
|
|
| 436 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
|
|
| 437 | # unconditionaly or only when some useflag is enabled. |
|
|
| 438 | cmake-utils_src_install() { |
|
|
| 439 | _execute_optionaly "src_install" |
|
|
| 440 | } |
|
|
| 441 | |
|
|
| 442 | # @FUNCTION: cmake-utils_src_test |
|
|
| 443 | # @DESCRIPTION: |
|
|
| 444 | # Wrapper for detection if we want to run enable_ prefixed function with same name |
|
|
| 445 | # unconditionaly or only when some useflag is enabled. |
|
|
| 446 | cmake-utils_src_test() { |
440 | cmake-utils_src_test() { |
| 447 | _execute_optionaly "src_test" |
441 | _execute_optionaly "src_test" "$@" |
| 448 | } |
442 | } |
| 449 | |
443 | |
| 450 | |
444 | # Optionally executes phases based on WANT_CMAKE variable/USE flag. |
| 451 | _execute_optionaly() { |
445 | _execute_optionaly() { |
| 452 | local phase="$1" |
446 | local phase="$1" ; shift |
| 453 | if [[ ${WANT_CMAKE} = always ]]; then |
447 | if [[ ${WANT_CMAKE} = always ]]; then |
| 454 | enable_cmake-utils_${phase} |
448 | enable_cmake-utils_${phase} "$@" |
| 455 | else |
449 | else |
| 456 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} |
450 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} "$@" |
| 457 | fi |
451 | fi |
| 458 | } |
452 | } |