| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2013 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.59 2010/09/16 16:04:11 reavertm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.93 2013/02/08 13:43:19 kensington 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 | # @AUTHOR: |
| 9 | # @CODE |
|
|
| 10 | # Tomáš Chvátal <scarabeus@gentoo.org> |
9 | # Tomáš Chvátal <scarabeus@gentoo.org> |
| 11 | # Maciej Mrozowski <reavertm@gentoo.org> |
10 | # Maciej Mrozowski <reavertm@gentoo.org> |
| 12 | # (undisclosed contributors) |
11 | # (undisclosed contributors) |
| 13 | # Original author: Zephyrus (zephyrus@mirach.it) |
12 | # Original author: Zephyrus (zephyrus@mirach.it) |
| 14 | # @CODE |
|
|
| 15 | # @BLURB: common ebuild functions for cmake-based packages |
13 | # @BLURB: common ebuild functions for cmake-based packages |
| 16 | # @DESCRIPTION: |
14 | # @DESCRIPTION: |
| 17 | # The cmake-utils eclass is base.eclass(5) wrapper that makes creating ebuilds for |
15 | # The cmake-utils eclass is base.eclass(5) wrapper that makes creating ebuilds for |
| 18 | # cmake-based packages much easier. |
16 | # cmake-based packages much easier. |
| 19 | # It provides all inherited features (DOCS, HTML_DOCS, PATCHES) along with out-of-source |
17 | # It provides all inherited features (DOCS, HTML_DOCS, PATCHES) along with out-of-source |
| … | |
… | |
| 28 | # used for optionality) |
26 | # used for optionality) |
| 29 | WANT_CMAKE="${WANT_CMAKE:-always}" |
27 | WANT_CMAKE="${WANT_CMAKE:-always}" |
| 30 | |
28 | |
| 31 | # @ECLASS-VARIABLE: CMAKE_MIN_VERSION |
29 | # @ECLASS-VARIABLE: CMAKE_MIN_VERSION |
| 32 | # @DESCRIPTION: |
30 | # @DESCRIPTION: |
| 33 | # Specify the minimum required CMake version. Default is 2.6.2-r1 |
31 | # Specify the minimum required CMake version. |
| 34 | CMAKE_MIN_VERSION="${CMAKE_MIN_VERSION:-2.6.2-r1}" |
32 | CMAKE_MIN_VERSION="${CMAKE_MIN_VERSION:-2.8.9}" |
|
|
33 | |
|
|
34 | # @ECLASS-VARIABLE: CMAKE_REMOVE_MODULES_LIST |
|
|
35 | # @DESCRIPTION: |
|
|
36 | # Space-separated list of CMake modules that will be removed in $S during src_prepare, |
|
|
37 | # in order to force packages to use the system version. |
|
|
38 | CMAKE_REMOVE_MODULES_LIST="${CMAKE_REMOVE_MODULES_LIST:-FindBLAS FindLAPACK}" |
|
|
39 | |
|
|
40 | # @ECLASS-VARIABLE: CMAKE_REMOVE_MODULES |
|
|
41 | # @DESCRIPTION: |
|
|
42 | # Do we want to remove anything? yes or whatever else for no |
|
|
43 | CMAKE_REMOVE_MODULES="${CMAKE_REMOVE_MODULES:-yes}" |
|
|
44 | |
|
|
45 | # @ECLASS-VARIABLE: CMAKE_MAKEFILE_GENERATOR |
|
|
46 | # @DESCRIPTION: |
|
|
47 | # Specify a makefile generator to be used by cmake. |
|
|
48 | # At this point only "emake" and "ninja" are supported. |
|
|
49 | CMAKE_MAKEFILE_GENERATOR="${CMAKE_MAKEFILE_GENERATOR:-emake}" |
| 35 | |
50 | |
| 36 | CMAKEDEPEND="" |
51 | CMAKEDEPEND="" |
| 37 | case ${WANT_CMAKE} in |
52 | case ${WANT_CMAKE} in |
| 38 | always) |
53 | always) |
| 39 | ;; |
54 | ;; |
| … | |
… | |
| 44 | esac |
59 | esac |
| 45 | inherit toolchain-funcs multilib flag-o-matic base |
60 | inherit toolchain-funcs multilib flag-o-matic base |
| 46 | |
61 | |
| 47 | CMAKE_EXPF="src_compile src_test src_install" |
62 | CMAKE_EXPF="src_compile src_test src_install" |
| 48 | case ${EAPI:-0} in |
63 | case ${EAPI:-0} in |
| 49 | 3|2) CMAKE_EXPF+=" src_configure" ;; |
64 | 2|3|4|5) CMAKE_EXPF+=" src_prepare src_configure" ;; |
| 50 | 1|0) ;; |
65 | 1|0) ;; |
| 51 | *) die "Unknown EAPI, Bug eclass maintainers." ;; |
66 | *) die "Unknown EAPI, Bug eclass maintainers." ;; |
| 52 | esac |
67 | esac |
| 53 | EXPORT_FUNCTIONS ${CMAKE_EXPF} |
68 | EXPORT_FUNCTIONS ${CMAKE_EXPF} |
| 54 | |
69 | |
| 55 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
70 | case ${CMAKE_MAKEFILE_GENERATOR} in |
|
|
71 | emake) |
|
|
72 | CMAKEDEPEND+=" sys-devel/make" |
|
|
73 | ;; |
|
|
74 | ninja) |
|
|
75 | CMAKEDEPEND+=" dev-util/ninja" |
|
|
76 | ;; |
|
|
77 | *) |
|
|
78 | eerror "Unknown value for \${CMAKE_MAKEFILE_GENERATOR}" |
|
|
79 | die "Value ${CMAKE_MAKEFILE_GENERATOR} is not supported" |
|
|
80 | ;; |
|
|
81 | esac |
| 56 | |
82 | |
| 57 | if [[ ${PN} != cmake ]]; then |
83 | if [[ ${PN} != cmake ]]; then |
| 58 | CMAKEDEPEND+=">=dev-util/cmake-${CMAKE_MIN_VERSION}" |
84 | CMAKEDEPEND+=" >=dev-util/cmake-${CMAKE_MIN_VERSION}" |
| 59 | fi |
85 | fi |
| 60 | |
86 | |
| 61 | CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
87 | CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
| 62 | |
88 | |
| 63 | [[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
89 | [[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
| … | |
… | |
| 99 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
125 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
| 100 | done |
126 | done |
| 101 | fi |
127 | fi |
| 102 | } |
128 | } |
| 103 | |
129 | |
| 104 | # @ECLASS-VARIABLE: CMAKE_BUILD_DIR |
130 | # @ECLASS-VARIABLE: BUILD_DIR |
| 105 | # @DESCRIPTION: |
131 | # @DESCRIPTION: |
| 106 | # Build directory where all cmake processed files should be generated. |
132 | # Build directory where all cmake processed files should be generated. |
| 107 | # For in-source build it's fixed to ${CMAKE_USE_DIR}. |
133 | # For in-source build it's fixed to ${CMAKE_USE_DIR}. |
| 108 | # For out-of-source build it can be overriden, by default it uses |
134 | # For out-of-source build it can be overriden, by default it uses |
| 109 | # ${WORKDIR}/${P}_build. |
135 | # ${WORKDIR}/${P}_build. |
|
|
136 | # |
|
|
137 | # This variable has been called CMAKE_BUILD_DIR formerly. |
|
|
138 | # It is set under that name for compatibility. |
| 110 | |
139 | |
| 111 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
140 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
| 112 | # @DESCRIPTION: |
141 | # @DESCRIPTION: |
| 113 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
142 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
| 114 | # known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
143 | # known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
| … | |
… | |
| 128 | # plugin needs to be done by cmake. |
157 | # plugin needs to be done by cmake. |
| 129 | # By default it uses ${S}. |
158 | # By default it uses ${S}. |
| 130 | |
159 | |
| 131 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
160 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
| 132 | # @DESCRIPTION: |
161 | # @DESCRIPTION: |
| 133 | # Set to enable verbose messages during compilation. |
162 | # Set to OFF to disable verbose messages during compilation |
|
|
163 | : ${CMAKE_VERBOSE:=ON} |
| 134 | |
164 | |
| 135 | # @ECLASS-VARIABLE: PREFIX |
165 | # @ECLASS-VARIABLE: PREFIX |
| 136 | # @DESCRIPTION: |
166 | # @DESCRIPTION: |
| 137 | # Eclass respects PREFIX variable, though it's not recommended way to set |
167 | # Eclass respects PREFIX variable, though it's not recommended way to set |
| 138 | # install/lib/bin prefixes. |
168 | # install/lib/bin prefixes. |
| 139 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
169 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
|
|
170 | : ${PREFIX:=/usr} |
|
|
171 | |
|
|
172 | # @ECLASS-VARIABLE: CMAKE_BINARY |
|
|
173 | # @DESCRIPTION: |
|
|
174 | # Eclass can use different cmake binary than the one provided in by system. |
|
|
175 | : ${CMAKE_BINARY:=cmake} |
| 140 | |
176 | |
| 141 | # Determine using IN or OUT source build |
177 | # Determine using IN or OUT source build |
| 142 | _check_build_dir() { |
178 | _check_build_dir() { |
| 143 | : ${CMAKE_USE_DIR:=${S}} |
179 | : ${CMAKE_USE_DIR:=${S}} |
| 144 | if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
180 | if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
| 145 | # we build in source dir |
181 | # we build in source dir |
| 146 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
182 | BUILD_DIR="${CMAKE_USE_DIR}" |
| 147 | else |
183 | else |
|
|
184 | # Respect both the old variable and the new one, depending |
|
|
185 | # on which one was set by the ebuild. |
|
|
186 | if [[ ! ${BUILD_DIR} && ${CMAKE_BUILD_DIR} ]]; then |
|
|
187 | eqawarn "The CMAKE_BUILD_DIR variable has been renamed to BUILD_DIR." |
|
|
188 | eqawarn "Please migrate the ebuild to use the new one." |
|
|
189 | |
|
|
190 | # In the next call, both variables will be set already |
|
|
191 | # and we'd have to know which one takes precedence. |
|
|
192 | _RESPECT_CMAKE_BUILD_DIR=1 |
|
|
193 | fi |
|
|
194 | |
|
|
195 | if [[ ${_RESPECT_CMAKE_BUILD_DIR} ]]; then |
|
|
196 | BUILD_DIR=${CMAKE_BUILD_DIR:-${WORKDIR}/${P}_build} |
|
|
197 | else |
| 148 | : ${CMAKE_BUILD_DIR:=${WORKDIR}/${P}_build} |
198 | : ${BUILD_DIR:=${WORKDIR}/${P}_build} |
| 149 | fi |
199 | fi |
|
|
200 | fi |
|
|
201 | |
|
|
202 | # Backwards compatibility for getting the value. |
|
|
203 | CMAKE_BUILD_DIR=${BUILD_DIR} |
|
|
204 | |
|
|
205 | mkdir -p "${BUILD_DIR}" |
| 150 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
206 | echo ">>> Working in BUILD_DIR: \"$BUILD_DIR\"" |
| 151 | } |
207 | } |
|
|
208 | |
|
|
209 | # Determine which generator to use |
|
|
210 | _generator_to_use() { |
|
|
211 | local generator_name |
|
|
212 | |
|
|
213 | case ${CMAKE_MAKEFILE_GENERATOR} in |
|
|
214 | ninja) |
|
|
215 | generator_name="Ninja" |
|
|
216 | ;; |
|
|
217 | emake) |
|
|
218 | generator_name="Unix Makefiles" |
|
|
219 | ;; |
|
|
220 | *) |
|
|
221 | eerror "Unknown value for \${CMAKE_MAKEFILE_GENERATOR}" |
|
|
222 | die "Value ${CMAKE_MAKEFILE_GENERATOR} is not supported" |
|
|
223 | ;; |
|
|
224 | esac |
|
|
225 | |
|
|
226 | echo ${generator_name} |
|
|
227 | } |
|
|
228 | |
| 152 | # @FUNCTION: cmake-utils_use_with |
229 | # @FUNCTION: cmake-utils_use_with |
| 153 | # @USAGE: <USE flag> [flag name] |
230 | # @USAGE: <USE flag> [flag name] |
| 154 | # @DESCRIPTION: |
231 | # @DESCRIPTION: |
| 155 | # Based on use_with. See ebuild(5). |
232 | # Based on use_with. See ebuild(5). |
| 156 | # |
233 | # |
| … | |
… | |
| 165 | # |
242 | # |
| 166 | # `cmake-utils_use_enable foo FOO` echoes -DENABLE_FOO=ON if foo is enabled |
243 | # `cmake-utils_use_enable foo FOO` echoes -DENABLE_FOO=ON if foo is enabled |
| 167 | # and -DENABLE_FOO=OFF if it is disabled. |
244 | # and -DENABLE_FOO=OFF if it is disabled. |
| 168 | cmake-utils_use_enable() { _use_me_now ENABLE_ "$@" ; } |
245 | cmake-utils_use_enable() { _use_me_now ENABLE_ "$@" ; } |
| 169 | |
246 | |
|
|
247 | # @FUNCTION: cmake-utils_use_find_package |
|
|
248 | # @USAGE: <USE flag> [flag name] |
|
|
249 | # @DESCRIPTION: |
|
|
250 | # Based on use_enable. See ebuild(5). |
|
|
251 | # |
|
|
252 | # `cmake-utils_use_find_package foo FOO` echoes -DCMAKE_DISABLE_FIND_PACKAGE=OFF |
|
|
253 | # if foo is enabled and -DCMAKE_DISABLE_FIND_PACKAGE=ON if it is disabled. |
|
|
254 | # This can be used to make find_package optional (since cmake-2.8.6). |
|
|
255 | cmake-utils_use_find_package() { _use_me_now_inverted CMAKE_DISABLE_FIND_PACKAGE_ "$@" ; } |
|
|
256 | |
| 170 | # @FUNCTION: cmake-utils_use_disable |
257 | # @FUNCTION: cmake-utils_use_disable |
| 171 | # @USAGE: <USE flag> [flag name] |
258 | # @USAGE: <USE flag> [flag name] |
| 172 | # @DESCRIPTION: |
259 | # @DESCRIPTION: |
| 173 | # Based on inversion of use_enable. See ebuild(5). |
260 | # Based on inversion of use_enable. See ebuild(5). |
| 174 | # |
261 | # |
| … | |
… | |
| 232 | |
319 | |
| 233 | # Internal function for modifying hardcoded definitions. |
320 | # Internal function for modifying hardcoded definitions. |
| 234 | # Removes dangerous definitions that override Gentoo settings. |
321 | # Removes dangerous definitions that override Gentoo settings. |
| 235 | _modify-cmakelists() { |
322 | _modify-cmakelists() { |
| 236 | debug-print-function ${FUNCNAME} "$@" |
323 | debug-print-function ${FUNCNAME} "$@" |
|
|
324 | |
|
|
325 | # Only edit the files once |
|
|
326 | grep -qs "<<< Gentoo configuration >>>" "${CMAKE_USE_DIR}"/CMakeLists.txt && return 0 |
| 237 | |
327 | |
| 238 | # Comment out all set (<some_should_be_user_defined_variable> value) |
328 | # Comment out all set (<some_should_be_user_defined_variable> value) |
| 239 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
329 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
| 240 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
330 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
| 241 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
331 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
| … | |
… | |
| 243 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
333 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
| 244 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_VERBOSE_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \ |
334 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_VERBOSE_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \ |
| 245 | || die "${LINENO}: failed to disable hardcoded settings" |
335 | || die "${LINENO}: failed to disable hardcoded settings" |
| 246 | |
336 | |
| 247 | # NOTE Append some useful summary here |
337 | # NOTE Append some useful summary here |
| 248 | cat >> CMakeLists.txt <<- _EOF_ |
338 | cat >> "${CMAKE_USE_DIR}"/CMakeLists.txt <<- _EOF_ |
| 249 | |
339 | |
| 250 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
340 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
| 251 | Build type \${CMAKE_BUILD_TYPE} |
341 | Build type \${CMAKE_BUILD_TYPE} |
| 252 | Install path \${CMAKE_INSTALL_PREFIX} |
342 | Install path \${CMAKE_INSTALL_PREFIX} |
| 253 | Compiler flags: |
343 | Compiler flags: |
| … | |
… | |
| 258 | Module \${CMAKE_MODULE_LINKER_FLAGS} |
348 | Module \${CMAKE_MODULE_LINKER_FLAGS} |
| 259 | Shared \${CMAKE_SHARED_LINKER_FLAGS}\n") |
349 | Shared \${CMAKE_SHARED_LINKER_FLAGS}\n") |
| 260 | _EOF_ |
350 | _EOF_ |
| 261 | } |
351 | } |
| 262 | |
352 | |
|
|
353 | enable_cmake-utils_src_prepare() { |
|
|
354 | debug-print-function ${FUNCNAME} "$@" |
|
|
355 | |
|
|
356 | base_src_prepare |
|
|
357 | } |
|
|
358 | |
| 263 | enable_cmake-utils_src_configure() { |
359 | enable_cmake-utils_src_configure() { |
| 264 | debug-print-function ${FUNCNAME} "$@" |
360 | debug-print-function ${FUNCNAME} "$@" |
| 265 | |
361 | |
|
|
362 | [[ "${CMAKE_REMOVE_MODULES}" == "yes" ]] && { |
|
|
363 | local name |
|
|
364 | for name in ${CMAKE_REMOVE_MODULES_LIST} ; do |
|
|
365 | find "${S}" -name ${name}.cmake -exec rm -v {} + |
|
|
366 | done |
|
|
367 | } |
|
|
368 | |
| 266 | _check_build_dir init |
369 | _check_build_dir |
| 267 | |
370 | |
| 268 | # check if CMakeLists.txt exist and if no then die |
371 | # check if CMakeLists.txt exist and if no then die |
| 269 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
372 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
| 270 | eerror "Unable to locate CMakeLists.txt under:" |
373 | eerror "Unable to locate CMakeLists.txt under:" |
| 271 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
374 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
| … | |
… | |
| 285 | if ! has debug ${IUSE//+} || ! use debug; then |
388 | if ! has debug ${IUSE//+} || ! use debug; then |
| 286 | append-cppflags -DNDEBUG |
389 | append-cppflags -DNDEBUG |
| 287 | fi |
390 | fi |
| 288 | fi |
391 | fi |
| 289 | |
392 | |
| 290 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
393 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS etc.) |
| 291 | local build_rules=${T}/gentoo_rules.cmake |
394 | local build_rules=${BUILD_DIR}/gentoo_rules.cmake |
| 292 | cat > "${build_rules}" <<- _EOF_ |
395 | cat > "${build_rules}" <<- _EOF_ |
|
|
396 | SET (CMAKE_AR $(type -P $(tc-getAR)) CACHE FILEPATH "Archive manager" FORCE) |
|
|
397 | SET (CMAKE_ASM_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> ${CFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "ASM compile command" FORCE) |
| 293 | SET (CMAKE_C_COMPILER $(type -P $(tc-getCC)) CACHE FILEPATH "C compiler" FORCE) |
398 | SET (CMAKE_C_COMPILER $(type -P $(tc-getCC)) CACHE FILEPATH "C compiler" FORCE) |
| 294 | SET (CMAKE_C_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C compile command" FORCE) |
399 | SET (CMAKE_C_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C compile command" FORCE) |
| 295 | SET (CMAKE_CXX_COMPILER $(type -P $(tc-getCXX)) CACHE FILEPATH "C++ compiler" FORCE) |
400 | SET (CMAKE_CXX_COMPILER $(type -P $(tc-getCXX)) CACHE FILEPATH "C++ compiler" FORCE) |
| 296 | SET (CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C++ compile command" FORCE) |
401 | SET (CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C++ compile command" FORCE) |
|
|
402 | SET (CMAKE_RANLIB $(type -P $(tc-getRANLIB)) CACHE FILEPATH "Archive index generator" FORCE) |
| 297 | _EOF_ |
403 | _EOF_ |
| 298 | |
404 | |
| 299 | if use prefix; then |
405 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
406 | |
|
|
407 | if [[ ${EPREFIX} ]]; then |
| 300 | cat >> "${build_rules}" <<- _EOF_ |
408 | cat >> "${build_rules}" <<- _EOF_ |
| 301 | # in Prefix we need rpath and must ensure cmake gets our default linker path |
409 | # in Prefix we need rpath and must ensure cmake gets our default linker path |
| 302 | # right ... except for Darwin hosts |
410 | # right ... except for Darwin hosts |
| 303 | IF (NOT APPLE) |
411 | IF (NOT APPLE) |
| 304 | SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
412 | SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
| 305 | SET (CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH "${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" |
413 | SET (CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH "${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" |
| 306 | CACHE STRING "" FORCE) |
414 | CACHE STRING "" FORCE) |
|
|
415 | |
|
|
416 | ELSE () |
|
|
417 | |
|
|
418 | SET(CMAKE_PREFIX_PATH "${EPREFIX}${PREFIX}" CACHE STRING ""FORCE) |
|
|
419 | SET(CMAKE_SKIP_BUILD_RPATH OFF CACHE BOOL "" FORCE) |
|
|
420 | SET(CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
|
|
421 | SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE CACHE BOOL "") |
|
|
422 | SET(CMAKE_INSTALL_RPATH "${EPREFIX}${PREFIX}/lib;${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" CACHE STRING "" FORCE) |
|
|
423 | SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE CACHE BOOL "" FORCE) |
|
|
424 | SET(CMAKE_INSTALL_NAME_DIR "${EPREFIX}${PREFIX}/lib" CACHE STRING "" FORCE) |
|
|
425 | |
| 307 | ENDIF (NOT APPLE) |
426 | ENDIF (NOT APPLE) |
| 308 | _EOF_ |
427 | _EOF_ |
| 309 | fi |
428 | fi |
| 310 | |
429 | |
| 311 | # Common configure parameters (invariants) |
430 | # Common configure parameters (invariants) |
| 312 | local common_config=${T}/gentoo_common_config.cmake |
431 | local common_config=${BUILD_DIR}/gentoo_common_config.cmake |
| 313 | local libdir=$(get_libdir) |
432 | local libdir=$(get_libdir) |
| 314 | cat > "${common_config}" <<- _EOF_ |
433 | cat > "${common_config}" <<- _EOF_ |
| 315 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
434 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
| 316 | SET (CMAKE_INSTALL_LIBDIR ${libdir} CACHE PATH "Output directory for libraries") |
435 | SET (CMAKE_INSTALL_LIBDIR ${libdir} CACHE PATH "Output directory for libraries") |
| 317 | _EOF_ |
436 | _EOF_ |
| … | |
… | |
| 324 | local mycmakeargs_local=(${mycmakeargs}) |
443 | local mycmakeargs_local=(${mycmakeargs}) |
| 325 | else |
444 | else |
| 326 | local mycmakeargs_local=("${mycmakeargs[@]}") |
445 | local mycmakeargs_local=("${mycmakeargs[@]}") |
| 327 | fi |
446 | fi |
| 328 | |
447 | |
| 329 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
| 330 | |
|
|
| 331 | # Common configure parameters (overridable) |
448 | # Common configure parameters (overridable) |
| 332 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
449 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
| 333 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
450 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
| 334 | local cmakeargs=( |
451 | local cmakeargs=( |
|
|
452 | --no-warn-unused-cli |
| 335 | -C "${common_config}" |
453 | -C "${common_config}" |
|
|
454 | -G "$(_generator_to_use)" |
| 336 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX:-/usr}" |
455 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}" |
| 337 | "${mycmakeargs_local[@]}" |
456 | "${mycmakeargs_local[@]}" |
| 338 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
457 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
| 339 | -DCMAKE_INSTALL_DO_STRIP=OFF |
458 | -DCMAKE_INSTALL_DO_STRIP=OFF |
| 340 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
459 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
| 341 | "${MYCMAKEARGS}" |
460 | "${MYCMAKEARGS}" |
| 342 | ) |
461 | ) |
| 343 | |
462 | |
| 344 | mkdir -p "${CMAKE_BUILD_DIR}" |
|
|
| 345 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
463 | pushd "${BUILD_DIR}" > /dev/null |
| 346 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
464 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
| 347 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
465 | echo "${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
| 348 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
466 | "${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
| 349 | popd > /dev/null |
467 | popd > /dev/null |
| 350 | } |
468 | } |
| 351 | |
469 | |
| 352 | enable_cmake-utils_src_compile() { |
470 | enable_cmake-utils_src_compile() { |
| 353 | debug-print-function ${FUNCNAME} "$@" |
471 | debug-print-function ${FUNCNAME} "$@" |
| 354 | |
472 | |
| 355 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
473 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
| 356 | cmake-utils_src_make "$@" |
474 | cmake-utils_src_make "$@" |
|
|
475 | } |
|
|
476 | |
|
|
477 | # @FUNCTION: ninja_src_make |
|
|
478 | # @INTERNAL |
|
|
479 | # @DESCRIPTION: |
|
|
480 | # Build the package using ninja generator |
|
|
481 | ninja_src_make() { |
|
|
482 | debug-print-function ${FUNCNAME} "$@" |
|
|
483 | |
|
|
484 | [[ -e build.ninja ]] || die "Makefile not found. Error during configure stage." |
|
|
485 | |
|
|
486 | if [[ "${CMAKE_VERBOSE}" != "OFF" ]]; then |
|
|
487 | # TODO: get load average from portage (-l option) |
|
|
488 | ninja ${MAKEOPTS} -v "$@" || die |
|
|
489 | else |
|
|
490 | ninja "$@" || die |
|
|
491 | fi |
|
|
492 | } |
|
|
493 | |
|
|
494 | # @FUNCTION: make_src_make |
|
|
495 | # @INTERNAL |
|
|
496 | # @DESCRIPTION: |
|
|
497 | # Build the package using make generator |
|
|
498 | emake_src_make() { |
|
|
499 | debug-print-function ${FUNCNAME} "$@" |
|
|
500 | |
|
|
501 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
|
|
502 | |
|
|
503 | if [[ "${CMAKE_VERBOSE}" != "OFF" ]]; then |
|
|
504 | emake VERBOSE=1 "$@" || die |
|
|
505 | else |
|
|
506 | emake "$@" || die |
|
|
507 | fi |
|
|
508 | |
| 357 | } |
509 | } |
| 358 | |
510 | |
| 359 | # @FUNCTION: cmake-utils_src_make |
511 | # @FUNCTION: cmake-utils_src_make |
| 360 | # @DESCRIPTION: |
512 | # @DESCRIPTION: |
| 361 | # Function for building the package. Automatically detects the build type. |
513 | # Function for building the package. Automatically detects the build type. |
| 362 | # All arguments are passed to emake. |
514 | # All arguments are passed to emake. |
| 363 | cmake-utils_src_make() { |
515 | cmake-utils_src_make() { |
| 364 | debug-print-function ${FUNCNAME} "$@" |
516 | debug-print-function ${FUNCNAME} "$@" |
| 365 | |
517 | |
| 366 | _check_build_dir |
518 | _check_build_dir |
| 367 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
519 | pushd "${BUILD_DIR}" > /dev/null |
| 368 | # first check if Makefile exist otherwise die |
520 | |
| 369 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
521 | ${CMAKE_MAKEFILE_GENERATOR}_src_make $@ |
| 370 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
522 | |
| 371 | emake VERBOSE=1 "$@" || die "Make failed!" |
|
|
| 372 | else |
|
|
| 373 | emake "$@" || die "Make failed!" |
|
|
| 374 | fi |
|
|
| 375 | popd > /dev/null |
523 | popd > /dev/null |
| 376 | } |
524 | } |
| 377 | |
525 | |
| 378 | enable_cmake-utils_src_install() { |
526 | enable_cmake-utils_src_install() { |
| 379 | debug-print-function ${FUNCNAME} "$@" |
527 | debug-print-function ${FUNCNAME} "$@" |
| 380 | |
528 | |
| 381 | _check_build_dir |
529 | _check_build_dir |
| 382 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
530 | pushd "${BUILD_DIR}" > /dev/null |
|
|
531 | |
|
|
532 | DESTDIR="${D}" ${CMAKE_MAKEFILE_GENERATOR} install "$@" || die "died running ${CMAKE_MAKEFILE_GENERATOR} install" |
| 383 | base_src_install |
533 | base_src_install_docs |
|
|
534 | |
| 384 | popd > /dev/null |
535 | popd > /dev/null |
| 385 | |
536 | |
| 386 | # Backward compatibility, for non-array variables |
537 | # Backward compatibility, for non-array variables |
| 387 | if [[ -n "${DOCS}" ]] && [[ "$(declare -p DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
538 | if [[ -n "${DOCS}" ]] && [[ "$(declare -p DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
| 388 | dodoc ${DOCS} || die "dodoc failed" |
539 | dodoc ${DOCS} || die "dodoc failed" |
| … | |
… | |
| 394 | |
545 | |
| 395 | enable_cmake-utils_src_test() { |
546 | enable_cmake-utils_src_test() { |
| 396 | debug-print-function ${FUNCNAME} "$@" |
547 | debug-print-function ${FUNCNAME} "$@" |
| 397 | |
548 | |
| 398 | _check_build_dir |
549 | _check_build_dir |
| 399 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
550 | pushd "${BUILD_DIR}" > /dev/null |
| 400 | local ctestargs |
551 | [[ -e CTestTestfile.cmake ]] || { echo "No tests found. Skipping."; return 0 ; } |
|
|
552 | |
| 401 | [[ -n ${TEST_VERBOSE} ]] && ctestargs="--extra-verbose --output-on-failure" |
553 | [[ -n ${TEST_VERBOSE} ]] && myctestargs+=( --extra-verbose --output-on-failure ) |
| 402 | ctest ${ctestargs} || die "Tests failed." |
554 | |
|
|
555 | if ctest "${myctestargs[@]}" "$@" ; then |
|
|
556 | einfo "Tests succeeded." |
| 403 | popd > /dev/null |
557 | popd > /dev/null |
|
|
558 | return 0 |
|
|
559 | else |
|
|
560 | if [[ -n "${CMAKE_YES_I_WANT_TO_SEE_THE_TEST_LOG}" ]] ; then |
|
|
561 | # on request from Diego |
|
|
562 | eerror "Tests failed. Test log ${BUILD_DIR}/Testing/Temporary/LastTest.log follows:" |
|
|
563 | eerror "--START TEST LOG--------------------------------------------------------------" |
|
|
564 | cat "${BUILD_DIR}/Testing/Temporary/LastTest.log" |
|
|
565 | eerror "--END TEST LOG----------------------------------------------------------------" |
|
|
566 | die "Tests failed." |
|
|
567 | else |
|
|
568 | die "Tests failed. When you file a bug, please attach the following file: \n\t${BUILD_DIR}/Testing/Temporary/LastTest.log" |
|
|
569 | fi |
|
|
570 | |
|
|
571 | # die might not die due to nonfatal |
|
|
572 | popd > /dev/null |
|
|
573 | return 1 |
|
|
574 | fi |
|
|
575 | } |
|
|
576 | |
|
|
577 | # @FUNCTION: cmake-utils_src_prepare |
|
|
578 | # @DESCRIPTION: |
|
|
579 | # Wrapper function around base_src_prepare, just to expand the eclass API. |
|
|
580 | cmake-utils_src_prepare() { |
|
|
581 | _execute_optionaly "src_prepare" "$@" |
| 404 | } |
582 | } |
| 405 | |
583 | |
| 406 | # @FUNCTION: cmake-utils_src_configure |
584 | # @FUNCTION: cmake-utils_src_configure |
| 407 | # @DESCRIPTION: |
585 | # @DESCRIPTION: |
| 408 | # General function for configuring with cmake. Default behaviour is to start an |
586 | # General function for configuring with cmake. Default behaviour is to start an |