| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2012 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.37 2009/12/14 19:44:15 abcd Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.78 2012/04/16 10:28:47 scarabeus 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@poczta.fm> |
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 contains functions that make 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 | # Its main features are support of out-of-source builds as well as in-source |
17 | # 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 |
18 | # builds (default), in-source builds and an implementation of the well-known use_enable |
| 21 | # functions for CMake. |
19 | # and use_with functions for CMake. |
| 22 | |
20 | |
| 23 | # @ECLASS-VARIABLE: WANT_CMAKE |
21 | # @ECLASS-VARIABLE: WANT_CMAKE |
| 24 | # @DESCRIPTION: |
22 | # @DESCRIPTION: |
| 25 | # Specify if cmake-utils eclass should depend on cmake optionaly or not. |
23 | # 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. |
24 | # 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 |
25 | # Valid values are: always [default], optional (where the value is the useflag |
| 28 | # used for optionality) |
26 | # used for optionality) |
| 29 | WANT_CMAKE="${WANT_CMAKE:-always}" |
27 | WANT_CMAKE="${WANT_CMAKE:-always}" |
|
|
28 | |
|
|
29 | # @ECLASS-VARIABLE: CMAKE_MIN_VERSION |
|
|
30 | # @DESCRIPTION: |
|
|
31 | # Specify the minimum required CMake version. Default is 2.8.4 |
|
|
32 | CMAKE_MIN_VERSION="${CMAKE_MIN_VERSION:-2.8.4}" |
|
|
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 | |
| 30 | CMAKEDEPEND="" |
45 | CMAKEDEPEND="" |
| 31 | case ${WANT_CMAKE} in |
46 | case ${WANT_CMAKE} in |
| 32 | always) |
47 | always) |
| 33 | ;; |
48 | ;; |
| 34 | *) |
49 | *) |
| 35 | IUSE+=" ${WANT_CMAKE}" |
50 | IUSE+=" ${WANT_CMAKE}" |
| 36 | CMAKEDEPEND+="${WANT_CMAKE}? ( " |
51 | CMAKEDEPEND+="${WANT_CMAKE}? ( " |
| 37 | ;; |
52 | ;; |
| 38 | esac |
53 | esac |
| 39 | inherit toolchain-funcs multilib flag-o-matic base |
54 | inherit toolchain-funcs multilib flag-o-matic base |
| 40 | |
55 | |
| 41 | CMAKE_EXPF="src_compile src_test src_install" |
56 | CMAKE_EXPF="src_compile src_test src_install" |
| 42 | case ${EAPI:-0} in |
57 | case ${EAPI:-0} in |
| 43 | 3|2) CMAKE_EXPF+=" src_configure" ;; |
58 | 4|3|2) CMAKE_EXPF+=" src_configure" ;; |
| 44 | 1|0) ;; |
59 | 1|0) ;; |
| 45 | *) die "Unknown EAPI, Bug eclass maintainers." ;; |
60 | *) die "Unknown EAPI, Bug eclass maintainers." ;; |
| 46 | esac |
61 | esac |
| 47 | EXPORT_FUNCTIONS ${CMAKE_EXPF} |
62 | EXPORT_FUNCTIONS ${CMAKE_EXPF} |
| 48 | |
63 | |
| 49 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
64 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
| 50 | |
65 | |
| 51 | if [[ ${PN} != cmake ]]; then |
66 | if [[ ${PN} != cmake ]]; then |
| 52 | CMAKEDEPEND+=">=dev-util/cmake-2.6.2-r1" |
67 | CMAKEDEPEND+=" >=dev-util/cmake-${CMAKE_MIN_VERSION}" |
| 53 | fi |
68 | fi |
| 54 | |
69 | |
| 55 | CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
70 | CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
| 56 | |
71 | |
| 57 | [[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
72 | [[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
| … | |
… | |
| 93 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
108 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
| 94 | done |
109 | done |
| 95 | fi |
110 | fi |
| 96 | } |
111 | } |
| 97 | |
112 | |
| 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 |
113 | # @ECLASS-VARIABLE: CMAKE_BUILD_DIR |
| 113 | # @DESCRIPTION: |
114 | # @DESCRIPTION: |
| 114 | # Set to enable in-source build. |
115 | # Build directory where all cmake processed files should be generated. |
| 115 | |
116 | # For in-source build it's fixed to ${CMAKE_USE_DIR}. |
| 116 | # @ECLASS-VARIABLE: CMAKE_NO_COLOR |
117 | # For out-of-source build it can be overriden, by default it uses |
| 117 | # @DESCRIPTION: |
118 | # ${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 | |
119 | |
| 124 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
120 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
| 125 | # @DESCRIPTION: |
121 | # @DESCRIPTION: |
| 126 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
122 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
| 127 | # known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
123 | # 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. |
124 | # 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 |
125 | # You usualy do *NOT* want nor need to set it as it pulls CMake default build-type |
| 130 | # specific compiler flags overriding make.conf. |
126 | # specific compiler flags overriding make.conf. |
| 131 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
127 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
| 132 | |
128 | |
| 133 | # @FUNCTION: _check_build_dir |
129 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
| 134 | # @DESCRIPTION: |
130 | # @DESCRIPTION: |
|
|
131 | # Set to enable in-source build. |
|
|
132 | |
|
|
133 | # @ECLASS-VARIABLE: CMAKE_USE_DIR |
|
|
134 | # @DESCRIPTION: |
|
|
135 | # Sets the directory where we are working with cmake. |
|
|
136 | # For example when application uses autotools and only one |
|
|
137 | # plugin needs to be done by cmake. |
|
|
138 | # By default it uses ${S}. |
|
|
139 | |
|
|
140 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
|
|
141 | # @DESCRIPTION: |
|
|
142 | # Set to enable verbose messages during compilation. |
|
|
143 | |
|
|
144 | # @ECLASS-VARIABLE: PREFIX |
|
|
145 | # @DESCRIPTION: |
|
|
146 | # Eclass respects PREFIX variable, though it's not recommended way to set |
|
|
147 | # install/lib/bin prefixes. |
|
|
148 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
|
|
149 | |
|
|
150 | # @ECLASS-VARIABLE: CMAKE_BINARY |
|
|
151 | # @DESCRIPTION: |
|
|
152 | # Eclass can use different cmake binary than the one provided in by system. |
|
|
153 | : ${CMAKE_BINARY:=cmake} |
|
|
154 | |
| 135 | # Determine using IN or OUT source build |
155 | # Determine using IN or OUT source build |
| 136 | _check_build_dir() { |
156 | _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}} |
157 | : ${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 |
158 | if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
| 152 | # we build in source dir |
159 | # we build in source dir |
| 153 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
160 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
| 154 | elif [[ ${CMAKE_USE_DIR} = ${WORKDIR} ]]; then |
|
|
| 155 | # out of tree build, but with $S=$WORKDIR, see bug #273949 for reason. |
|
|
| 156 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}/build" |
|
|
| 157 | else |
161 | else |
| 158 | # regular out of tree build |
162 | : ${CMAKE_BUILD_DIR:=${WORKDIR}/${P}_build} |
| 159 | [[ ${1} = init || -d ${CMAKE_USE_DIR}_build ]] && SUF="_build" || SUF="" |
|
|
| 160 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}${SUF}" |
|
|
| 161 | |
|
|
| 162 | fi |
163 | fi |
|
|
164 | mkdir -p "${CMAKE_BUILD_DIR}" |
| 163 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
165 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
| 164 | } |
166 | } |
| 165 | # @FUNCTION: cmake-utils_use_with |
167 | # @FUNCTION: cmake-utils_use_with |
| 166 | # @USAGE: <USE flag> [flag name] |
168 | # @USAGE: <USE flag> [flag name] |
| 167 | # @DESCRIPTION: |
169 | # @DESCRIPTION: |
| … | |
… | |
| 223 | # |
225 | # |
| 224 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
226 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
| 225 | # and -DHAVE_FOO=OFF if it is disabled. |
227 | # and -DHAVE_FOO=OFF if it is disabled. |
| 226 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
228 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
| 227 | |
229 | |
|
|
230 | # @FUNCTION: cmake-utils_use_use |
|
|
231 | # @USAGE: <USE flag> [flag name] |
|
|
232 | # @DESCRIPTION: |
|
|
233 | # Based on use_enable. See ebuild(5). |
|
|
234 | # |
|
|
235 | # `cmake-utils_use_use foo FOO` echoes -DUSE_FOO=ON if foo is enabled |
|
|
236 | # and -DUSE_FOO=OFF if it is disabled. |
|
|
237 | cmake-utils_use_use() { _use_me_now USE_ "$@" ; } |
|
|
238 | |
| 228 | # @FUNCTION: cmake-utils_use |
239 | # @FUNCTION: cmake-utils_use |
| 229 | # @USAGE: <USE flag> [flag name] |
240 | # @USAGE: <USE flag> [flag name] |
| 230 | # @DESCRIPTION: |
241 | # @DESCRIPTION: |
| 231 | # Based on use_enable. See ebuild(5). |
242 | # Based on use_enable. See ebuild(5). |
| 232 | # |
243 | # |
| 233 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
244 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
| 234 | # and -DFOO=OFF if it is disabled. |
245 | # and -DFOO=OFF if it is disabled. |
| 235 | cmake-utils_use() { _use_me_now "" "$@" ; } |
246 | cmake-utils_use() { _use_me_now "" "$@" ; } |
| 236 | |
247 | |
| 237 | # Internal function for modifying hardcoded definitions. |
248 | # Internal function for modifying hardcoded definitions. |
| 238 | # Removes dangerous definitionts that override Gentoo settings. |
249 | # Removes dangerous definitions that override Gentoo settings. |
| 239 | _modify-cmakelists() { |
250 | _modify-cmakelists() { |
| 240 | debug-print-function ${FUNCNAME} "$@" |
251 | debug-print-function ${FUNCNAME} "$@" |
|
|
252 | |
|
|
253 | # Only edit the files once |
|
|
254 | grep -qs "<<< Gentoo configuration >>>" CMakeLists.txt && return 0 |
| 241 | |
255 | |
| 242 | # Comment out all set (<some_should_be_user_defined_variable> value) |
256 | # 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 |
257 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
| 244 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
258 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
| 245 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
259 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
260 | -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}' {} + \ |
261 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
262 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_VERBOSE_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \ |
| 247 | || die "${LINENO}: failed to disable hardcoded settings" |
263 | || die "${LINENO}: failed to disable hardcoded settings" |
| 248 | |
264 | |
| 249 | # NOTE Append some useful summary here |
265 | # NOTE Append some useful summary here |
| 250 | cat >> CMakeLists.txt <<- _EOF_ |
266 | cat >> "${CMAKE_USE_DIR}"/CMakeLists.txt <<- _EOF_ |
| 251 | |
267 | |
| 252 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
268 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
| 253 | Build type: ${CMAKE_BUILD_TYPE} |
269 | Build type \${CMAKE_BUILD_TYPE} |
| 254 | Install path: ${CMAKE_INSTALL_PREFIX}\n") |
270 | Install path \${CMAKE_INSTALL_PREFIX} |
|
|
271 | Compiler flags: |
|
|
272 | C \${CMAKE_C_FLAGS} |
|
|
273 | C++ \${CMAKE_CXX_FLAGS} |
|
|
274 | Linker flags: |
|
|
275 | Executable \${CMAKE_EXE_LINKER_FLAGS} |
|
|
276 | Module \${CMAKE_MODULE_LINKER_FLAGS} |
|
|
277 | Shared \${CMAKE_SHARED_LINKER_FLAGS}\n") |
| 255 | _EOF_ |
278 | _EOF_ |
| 256 | } |
279 | } |
| 257 | |
280 | |
| 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() { |
281 | enable_cmake-utils_src_configure() { |
| 263 | debug-print-function ${FUNCNAME} "$@" |
282 | debug-print-function ${FUNCNAME} "$@" |
| 264 | |
283 | |
|
|
284 | [[ "${CMAKE_REMOVE_MODULES}" == "yes" ]] && { |
|
|
285 | local name |
|
|
286 | for name in ${CMAKE_REMOVE_MODULES_LIST} ; do |
|
|
287 | find "${S}" -name ${name}.cmake -exec rm -v {} + |
|
|
288 | done |
|
|
289 | } |
|
|
290 | |
| 265 | _check_build_dir init |
291 | _check_build_dir |
| 266 | |
292 | |
| 267 | # check if CMakeLists.txt exist and if no then die |
293 | # check if CMakeLists.txt exist and if no then die |
| 268 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
294 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
| 269 | eerror "I was unable to locate CMakeLists.txt under:" |
295 | eerror "Unable to locate CMakeLists.txt under:" |
| 270 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
296 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
| 271 | eerror "You should consider not inheriting the cmake eclass." |
297 | eerror "Consider not inheriting the cmake eclass." |
| 272 | die "FATAL: Unable to find CMakeLists.txt" |
298 | die "FATAL: Unable to find CMakeLists.txt" |
| 273 | fi |
299 | fi |
| 274 | |
300 | |
| 275 | # Remove dangerous things. |
301 | # Remove dangerous things. |
| 276 | _modify-cmakelists |
302 | _modify-cmakelists |
| … | |
… | |
| 285 | append-cppflags -DNDEBUG |
311 | append-cppflags -DNDEBUG |
| 286 | fi |
312 | fi |
| 287 | fi |
313 | fi |
| 288 | |
314 | |
| 289 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
315 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
| 290 | local build_rules=${T}/gentoo_rules.cmake |
316 | local build_rules=${CMAKE_BUILD_DIR}/gentoo_rules.cmake |
| 291 | cat > "${build_rules}" <<- _EOF_ |
317 | cat > "${build_rules}" <<- _EOF_ |
| 292 | SET (CMAKE_C_COMPILER $(type -P $(tc-getCC)) CACHE FILEPATH "C compiler" FORCE) |
318 | SET (CMAKE_C_COMPILER $(type -P $(tc-getCC)) CACHE FILEPATH "C compiler" FORCE) |
| 293 | SET (CMAKE_C_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C compile command" FORCE) |
319 | SET (CMAKE_C_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C compile command" FORCE) |
| 294 | SET (CMAKE_CXX_COMPILER $(type -P $(tc-getCXX)) CACHE FILEPATH "C++ compiler" FORCE) |
320 | SET (CMAKE_CXX_COMPILER $(type -P $(tc-getCXX)) CACHE FILEPATH "C++ compiler" FORCE) |
| 295 | SET (CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C++ compile command" FORCE) |
321 | SET (CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C++ compile command" FORCE) |
| 296 | _EOF_ |
322 | _EOF_ |
| 297 | |
323 | |
| 298 | if use prefix; then |
324 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
325 | |
|
|
326 | if [[ ${EPREFIX} ]]; then |
| 299 | cat >> "${build_rules}" <<- _EOF_ |
327 | cat >> "${build_rules}" <<- _EOF_ |
| 300 | # in Prefix we need rpath and must ensure cmake gets our default linker path |
328 | # in Prefix we need rpath and must ensure cmake gets our default linker path |
| 301 | # right ... except for Darwin hosts |
329 | # right ... except for Darwin hosts |
| 302 | IF (NOT APPLE) |
330 | IF (NOT APPLE) |
| 303 | SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
331 | SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
| 304 | SET (CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH "${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" |
332 | SET (CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH "${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" |
| 305 | CACHE STRING "" FORCE) |
333 | CACHE STRING "" FORCE) |
|
|
334 | |
|
|
335 | ELSE () |
|
|
336 | |
|
|
337 | SET(CMAKE_PREFIX_PATH "${EPREFIX}${PREFIX:-/usr}" CACHE STRING ""FORCE) |
|
|
338 | SET(CMAKE_SKIP_BUILD_RPATH OFF CACHE BOOL "" FORCE) |
|
|
339 | SET(CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
| 306 | SET (CMAKE_BUILD_WITH_INSTALL_RPATH ON CACHE BOOL "" FORCE) |
340 | SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE CACHE BOOL "") |
|
|
341 | SET(CMAKE_INSTALL_RPATH "${EPREFIX}${PREFIX:-/usr}/lib;${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" CACHE STRING "" FORCE) |
|
|
342 | SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE CACHE BOOL "" FORCE) |
|
|
343 | SET(CMAKE_INSTALL_NAME_DIR "${EPREFIX}${PREFIX:-/usr}/lib" CACHE STRING "" FORCE) |
|
|
344 | |
| 307 | ENDIF (NOT APPLE) |
345 | ENDIF (NOT APPLE) |
| 308 | _EOF_ |
346 | _EOF_ |
| 309 | fi |
347 | fi |
| 310 | |
348 | |
| 311 | # Common configure parameters (invariants) |
349 | # Common configure parameters (invariants) |
| 312 | local common_config=${T}/gentoo_common_config.cmake |
350 | local common_config=${CMAKE_BUILD_DIR}/gentoo_common_config.cmake |
| 313 | local libdir=$(get_libdir) |
351 | local libdir=$(get_libdir) |
| 314 | cat > "${common_config}" <<- _EOF_ |
352 | cat > "${common_config}" <<- _EOF_ |
| 315 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
353 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
|
|
354 | SET (CMAKE_INSTALL_LIBDIR ${libdir} CACHE PATH "Output directory for libraries") |
| 316 | _EOF_ |
355 | _EOF_ |
| 317 | [[ -n ${CMAKE_NO_COLOR} ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
356 | [[ "${NOCOLOR}" = true || "${NOCOLOR}" = yes ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
| 318 | |
357 | |
| 319 | # Convert mycmakeargs to an array, for backwards compatibility |
358 | # Convert mycmakeargs to an array, for backwards compatibility |
|
|
359 | # Make the array a local variable since <=portage-2.1.6.x does not |
|
|
360 | # support global arrays (see bug #297255). |
| 320 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
361 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
| 321 | mycmakeargs=(${mycmakeargs}) |
362 | local mycmakeargs_local=(${mycmakeargs}) |
|
|
363 | else |
|
|
364 | local mycmakeargs_local=("${mycmakeargs[@]}") |
| 322 | fi |
365 | fi |
| 323 | |
|
|
| 324 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
| 325 | |
366 | |
| 326 | # Common configure parameters (overridable) |
367 | # Common configure parameters (overridable) |
| 327 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
368 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
| 328 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
369 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
| 329 | local cmakeargs=( |
370 | local cmakeargs=( |
|
|
371 | --no-warn-unused-cli |
| 330 | -C "${common_config}" |
372 | -C "${common_config}" |
| 331 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX:-/usr}" |
373 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX:-/usr}" |
| 332 | "${mycmakeargs[@]}" |
374 | "${mycmakeargs_local[@]}" |
| 333 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
375 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
| 334 | -DCMAKE_INSTALL_DO_STRIP=OFF |
376 | -DCMAKE_INSTALL_DO_STRIP=OFF |
| 335 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
377 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
|
|
378 | "${MYCMAKEARGS}" |
| 336 | ) |
379 | ) |
| 337 | |
380 | |
| 338 | mkdir -p "${CMAKE_BUILD_DIR}" |
|
|
| 339 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
381 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 340 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${cmakeargs[*]}" |
382 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
| 341 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
383 | echo "${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
| 342 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
384 | "${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
| 343 | |
|
|
| 344 | popd > /dev/null |
385 | popd > /dev/null |
| 345 | } |
386 | } |
| 346 | |
387 | |
| 347 | # @FUNCTION: enable_cmake-utils_src_compile |
|
|
| 348 | # @DESCRIPTION: |
|
|
| 349 | # General function for compiling with cmake. Default behaviour is to check for |
|
|
| 350 | # EAPI and respectively to configure as well or just compile. |
|
|
| 351 | enable_cmake-utils_src_compile() { |
388 | enable_cmake-utils_src_compile() { |
| 352 | debug-print-function ${FUNCNAME} "$@" |
389 | debug-print-function ${FUNCNAME} "$@" |
| 353 | |
390 | |
| 354 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
391 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
| 355 | cmake-utils_src_make "$@" |
392 | cmake-utils_src_make "$@" |
| 356 | } |
393 | } |
| 357 | |
394 | |
| 358 | # @FUNCTION: cmake-utils_src_make |
395 | # @FUNCTION: cmake-utils_src_make |
| 359 | # @DESCRIPTION: |
396 | # @DESCRIPTION: |
| 360 | # Function for building the package. Automatically detects the build type. |
397 | # Function for building the package. Automatically detects the build type. |
| 361 | # All arguments are passed to emake |
398 | # All arguments are passed to emake. |
| 362 | cmake-utils_src_make() { |
399 | cmake-utils_src_make() { |
| 363 | debug-print-function ${FUNCNAME} "$@" |
400 | debug-print-function ${FUNCNAME} "$@" |
| 364 | |
401 | |
| 365 | _check_build_dir |
402 | _check_build_dir |
| 366 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
403 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 367 | # first check if Makefile exist otherwise die |
404 | # first check if Makefile exist otherwise die |
| 368 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
405 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
| 369 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
406 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
| 370 | emake VERBOSE=1 "$@" || die "Make failed!" |
407 | emake VERBOSE=1 "$@" || die "Make failed!" |
| 371 | else |
408 | else |
| 372 | emake "$@" || die "Make failed!" |
409 | emake "$@" || die "Make failed!" |
| 373 | fi |
410 | fi |
| 374 | popd &> /dev/null |
411 | popd > /dev/null |
| 375 | } |
412 | } |
| 376 | |
413 | |
|
|
414 | enable_cmake-utils_src_install() { |
|
|
415 | debug-print-function ${FUNCNAME} "$@" |
|
|
416 | |
|
|
417 | _check_build_dir |
|
|
418 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
|
|
419 | base_src_install "$@" |
|
|
420 | popd > /dev/null |
|
|
421 | |
|
|
422 | # Backward compatibility, for non-array variables |
|
|
423 | if [[ -n "${DOCS}" ]] && [[ "$(declare -p DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
424 | dodoc ${DOCS} || die "dodoc failed" |
|
|
425 | fi |
|
|
426 | if [[ -n "${HTML_DOCS}" ]] && [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
427 | dohtml -r ${HTML_DOCS} || die "dohtml failed" |
|
|
428 | fi |
|
|
429 | } |
|
|
430 | |
|
|
431 | enable_cmake-utils_src_test() { |
|
|
432 | debug-print-function ${FUNCNAME} "$@" |
|
|
433 | local ctestargs |
|
|
434 | |
|
|
435 | _check_build_dir |
|
|
436 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
|
|
437 | [[ -e CTestTestfile.cmake ]] || { echo "No tests found. Skipping."; return 0 ; } |
|
|
438 | |
|
|
439 | [[ -n ${TEST_VERBOSE} ]] && ctestargs="--extra-verbose --output-on-failure" |
|
|
440 | |
|
|
441 | if ctest ${ctestargs} "$@" ; then |
|
|
442 | einfo "Tests succeeded." |
|
|
443 | else |
|
|
444 | if [[ -n "${CMAKE_YES_I_WANT_TO_SEE_THE_TEST_LOG}" ]] ; then |
|
|
445 | # on request from Diego |
|
|
446 | eerror "Tests failed. Test log ${CMAKE_BUILD_DIR}/Testing/Temporary/LastTest.log follows:" |
|
|
447 | eerror "--START TEST LOG--------------------------------------------------------------" |
|
|
448 | cat "${CMAKE_BUILD_DIR}/Testing/Temporary/LastTest.log" |
|
|
449 | eerror "--END TEST LOG----------------------------------------------------------------" |
|
|
450 | die "Tests failed." |
|
|
451 | else |
|
|
452 | die "Tests failed. When you file a bug, please attach the following file: \n\t${CMAKE_BUILD_DIR}/Testing/Temporary/LastTest.log" |
|
|
453 | fi |
|
|
454 | fi |
|
|
455 | popd > /dev/null |
|
|
456 | } |
|
|
457 | |
|
|
458 | # @FUNCTION: cmake-utils_src_configure |
|
|
459 | # @DESCRIPTION: |
|
|
460 | # General function for configuring with cmake. Default behaviour is to start an |
|
|
461 | # out-of-source build. |
|
|
462 | cmake-utils_src_configure() { |
|
|
463 | _execute_optionaly "src_configure" "$@" |
|
|
464 | } |
|
|
465 | |
|
|
466 | # @FUNCTION: cmake-utils_src_compile |
|
|
467 | # @DESCRIPTION: |
|
|
468 | # General function for compiling with cmake. Default behaviour is to check for |
|
|
469 | # EAPI and respectively to configure as well or just compile. |
|
|
470 | # Automatically detects the build type. All arguments are passed to emake. |
|
|
471 | cmake-utils_src_compile() { |
|
|
472 | _execute_optionaly "src_compile" "$@" |
|
|
473 | } |
|
|
474 | |
| 377 | # @FUNCTION: enable_cmake-utils_src_install |
475 | # @FUNCTION: cmake-utils_src_install |
| 378 | # @DESCRIPTION: |
476 | # @DESCRIPTION: |
| 379 | # Function for installing the package. Automatically detects the build type. |
477 | # Function for installing the package. Automatically detects the build type. |
| 380 | enable_cmake-utils_src_install() { |
478 | cmake-utils_src_install() { |
| 381 | debug-print-function ${FUNCNAME} "$@" |
479 | _execute_optionaly "src_install" "$@" |
| 382 | |
|
|
| 383 | _check_build_dir |
|
|
| 384 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
|
|
| 385 | emake install DESTDIR="${D}" || die "Make install failed" |
|
|
| 386 | popd &> /dev/null |
|
|
| 387 | |
|
|
| 388 | # Manual document installation |
|
|
| 389 | [[ -n "${DOCS}" ]] && { dodoc ${DOCS} || die "dodoc failed" ; } |
|
|
| 390 | [[ -n "${HTML_DOCS}" ]] && { dohtml -r ${HTML_DOCS} || die "dohtml failed" ; } |
|
|
| 391 | } |
480 | } |
| 392 | |
481 | |
| 393 | # @FUNCTION: enable_cmake-utils_src_test |
482 | # @FUNCTION: cmake-utils_src_test |
| 394 | # @DESCRIPTION: |
483 | # @DESCRIPTION: |
| 395 | # Function for testing the package. Automatically detects the build type. |
484 | # Function for testing the package. Automatically detects the build type. |
| 396 | enable_cmake-utils_src_test() { |
|
|
| 397 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 398 | |
|
|
| 399 | _check_build_dir |
|
|
| 400 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
|
|
| 401 | # Standard implementation of src_test |
|
|
| 402 | if emake -j1 check -n &> /dev/null; then |
|
|
| 403 | einfo ">>> Test phase [check]: ${CATEGORY}/${PF}" |
|
|
| 404 | if ! emake -j1 check; then |
|
|
| 405 | die "Make check failed. See above for details." |
|
|
| 406 | fi |
|
|
| 407 | elif emake -j1 test -n &> /dev/null; then |
|
|
| 408 | einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" |
|
|
| 409 | if ! emake -j1 test; then |
|
|
| 410 | die "Make test failed. See above for details." |
|
|
| 411 | fi |
|
|
| 412 | else |
|
|
| 413 | einfo ">>> Test phase [none]: ${CATEGORY}/${PF}" |
|
|
| 414 | fi |
|
|
| 415 | popd &> /dev/null |
|
|
| 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() { |
485 | cmake-utils_src_test() { |
| 448 | _execute_optionaly "src_test" |
486 | _execute_optionaly "src_test" "$@" |
| 449 | } |
487 | } |
| 450 | |
488 | |
| 451 | |
489 | # Optionally executes phases based on WANT_CMAKE variable/USE flag. |
| 452 | _execute_optionaly() { |
490 | _execute_optionaly() { |
| 453 | local phase="$1" |
491 | local phase="$1" ; shift |
| 454 | if [[ ${WANT_CMAKE} = always ]]; then |
492 | if [[ ${WANT_CMAKE} = always ]]; then |
| 455 | enable_cmake-utils_${phase} |
493 | enable_cmake-utils_${phase} "$@" |
| 456 | else |
494 | else |
| 457 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} |
495 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} "$@" |
| 458 | fi |
496 | fi |
| 459 | } |
497 | } |