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