| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2010 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.37 2009/12/14 19:44:15 abcd Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.59 2010/09/16 16:04:11 reavertm Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: cmake-utils.eclass |
5 | # @ECLASS: cmake-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # |
8 | # |
| 9 | # @CODE |
9 | # @CODE |
| 10 | # Tomáš Chvátal <scarabeus@gentoo.org> |
10 | # Tomáš Chvátal <scarabeus@gentoo.org> |
| 11 | # Maciej Mrozowski <reavertm@poczta.fm> |
11 | # Maciej Mrozowski <reavertm@gentoo.org> |
| 12 | # (undisclosed contributors) |
12 | # (undisclosed contributors) |
| 13 | # Original author: Zephyrus (zephyrus@mirach.it) |
13 | # Original author: Zephyrus (zephyrus@mirach.it) |
| 14 | # @CODE |
14 | # @CODE |
| 15 | # @BLURB: common ebuild functions for cmake-based packages |
15 | # @BLURB: common ebuild functions for cmake-based packages |
| 16 | # @DESCRIPTION: |
16 | # @DESCRIPTION: |
| 17 | # The cmake-utils eclass contains functions that make creating ebuilds for |
17 | # The cmake-utils eclass is base.eclass(5) wrapper that makes creating ebuilds for |
| 18 | # cmake-based packages much easier. |
18 | # cmake-based packages much easier. |
| 19 | # Its main features are support of out-of-source builds as well as in-source |
19 | # It provides all inherited features (DOCS, HTML_DOCS, PATCHES) along with out-of-source |
| 20 | # builds and an implementation of the well-known use_enable and use_with |
20 | # builds (default), in-source builds and an implementation of the well-known use_enable |
| 21 | # functions for CMake. |
21 | # and use_with functions for CMake. |
| 22 | |
22 | |
| 23 | # @ECLASS-VARIABLE: WANT_CMAKE |
23 | # @ECLASS-VARIABLE: WANT_CMAKE |
| 24 | # @DESCRIPTION: |
24 | # @DESCRIPTION: |
| 25 | # Specify if cmake-utils eclass should depend on cmake optionaly or not. |
25 | # Specify if cmake-utils eclass should depend on cmake optionaly or not. |
| 26 | # This is usefull when only part of aplication is using cmake build system. |
26 | # This is usefull when only part of aplication is using cmake build system. |
| 27 | # Valid values are: always [default], optional (where the value is the useflag |
27 | # Valid values are: always [default], optional (where the value is the useflag |
| 28 | # used for optionality) |
28 | # used for optionality) |
| 29 | WANT_CMAKE="${WANT_CMAKE:-always}" |
29 | WANT_CMAKE="${WANT_CMAKE:-always}" |
|
|
30 | |
|
|
31 | # @ECLASS-VARIABLE: CMAKE_MIN_VERSION |
|
|
32 | # @DESCRIPTION: |
|
|
33 | # Specify the minimum required CMake version. Default is 2.6.2-r1 |
|
|
34 | CMAKE_MIN_VERSION="${CMAKE_MIN_VERSION:-2.6.2-r1}" |
|
|
35 | |
| 30 | CMAKEDEPEND="" |
36 | CMAKEDEPEND="" |
| 31 | case ${WANT_CMAKE} in |
37 | case ${WANT_CMAKE} in |
| 32 | always) |
38 | always) |
| 33 | ;; |
39 | ;; |
| 34 | *) |
40 | *) |
| 35 | IUSE+=" ${WANT_CMAKE}" |
41 | IUSE+=" ${WANT_CMAKE}" |
| 36 | CMAKEDEPEND+="${WANT_CMAKE}? ( " |
42 | CMAKEDEPEND+="${WANT_CMAKE}? ( " |
| 37 | ;; |
43 | ;; |
| 38 | esac |
44 | esac |
| 39 | inherit toolchain-funcs multilib flag-o-matic base |
45 | inherit toolchain-funcs multilib flag-o-matic base |
| 40 | |
46 | |
| 41 | CMAKE_EXPF="src_compile src_test src_install" |
47 | CMAKE_EXPF="src_compile src_test src_install" |
| 42 | case ${EAPI:-0} in |
48 | case ${EAPI:-0} in |
| … | |
… | |
| 47 | EXPORT_FUNCTIONS ${CMAKE_EXPF} |
53 | EXPORT_FUNCTIONS ${CMAKE_EXPF} |
| 48 | |
54 | |
| 49 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
55 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
| 50 | |
56 | |
| 51 | if [[ ${PN} != cmake ]]; then |
57 | if [[ ${PN} != cmake ]]; then |
| 52 | CMAKEDEPEND+=">=dev-util/cmake-2.6.2-r1" |
58 | CMAKEDEPEND+=">=dev-util/cmake-${CMAKE_MIN_VERSION}" |
| 53 | fi |
59 | fi |
| 54 | |
60 | |
| 55 | CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
61 | CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
| 56 | |
62 | |
| 57 | [[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
63 | [[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
| … | |
… | |
| 93 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
99 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
| 94 | done |
100 | done |
| 95 | fi |
101 | fi |
| 96 | } |
102 | } |
| 97 | |
103 | |
| 98 | # @ECLASS-VARIABLE: DOCS |
|
|
| 99 | # @DESCRIPTION: |
|
|
| 100 | # Documents passed to dodoc command. |
|
|
| 101 | |
|
|
| 102 | # @ECLASS-VARIABLE: HTML_DOCS |
|
|
| 103 | # @DESCRIPTION: |
|
|
| 104 | # Documents passed to dohtml command. |
|
|
| 105 | |
|
|
| 106 | # @ECLASS-VARIABLE: PREFIX |
|
|
| 107 | # @DESCRIPTION: |
|
|
| 108 | # Eclass respects PREFIX variable, though it's not recommended way to set |
|
|
| 109 | # install/lib/bin prefixes. |
|
|
| 110 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
|
|
| 111 | |
|
|
| 112 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
104 | # @ECLASS-VARIABLE: CMAKE_BUILD_DIR |
| 113 | # @DESCRIPTION: |
105 | # @DESCRIPTION: |
| 114 | # Set to enable in-source build. |
106 | # Build directory where all cmake processed files should be generated. |
| 115 | |
107 | # For in-source build it's fixed to ${CMAKE_USE_DIR}. |
| 116 | # @ECLASS-VARIABLE: CMAKE_NO_COLOR |
108 | # For out-of-source build it can be overriden, by default it uses |
| 117 | # @DESCRIPTION: |
109 | # ${WORKDIR}/${P}_build. |
| 118 | # Set to disable cmake output coloring. |
|
|
| 119 | |
|
|
| 120 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
|
|
| 121 | # @DESCRIPTION: |
|
|
| 122 | # Set to enable verbose messages during compilation. |
|
|
| 123 | |
110 | |
| 124 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
111 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
| 125 | # @DESCRIPTION: |
112 | # @DESCRIPTION: |
| 126 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
113 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
| 127 | # known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
114 | # known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
| 128 | # If about to be set - needs to be set before invoking cmake-utils_src_configure. |
115 | # If about to be set - needs to be set before invoking cmake-utils_src_configure. |
| 129 | # You usualy do *NOT* want nor need to set it as it pulls CMake default build-type |
116 | # You usualy do *NOT* want nor need to set it as it pulls CMake default build-type |
| 130 | # specific compiler flags overriding make.conf. |
117 | # specific compiler flags overriding make.conf. |
| 131 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
118 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
| 132 | |
119 | |
| 133 | # @FUNCTION: _check_build_dir |
120 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
| 134 | # @DESCRIPTION: |
121 | # @DESCRIPTION: |
|
|
122 | # Set to enable in-source build. |
|
|
123 | |
|
|
124 | # @ECLASS-VARIABLE: CMAKE_USE_DIR |
|
|
125 | # @DESCRIPTION: |
|
|
126 | # Sets the directory where we are working with cmake. |
|
|
127 | # For example when application uses autotools and only one |
|
|
128 | # plugin needs to be done by cmake. |
|
|
129 | # By default it uses ${S}. |
|
|
130 | |
|
|
131 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
|
|
132 | # @DESCRIPTION: |
|
|
133 | # Set to enable verbose messages during compilation. |
|
|
134 | |
|
|
135 | # @ECLASS-VARIABLE: PREFIX |
|
|
136 | # @DESCRIPTION: |
|
|
137 | # Eclass respects PREFIX variable, though it's not recommended way to set |
|
|
138 | # install/lib/bin prefixes. |
|
|
139 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
|
|
140 | |
| 135 | # Determine using IN or OUT source build |
141 | # Determine using IN or OUT source build |
| 136 | _check_build_dir() { |
142 | _check_build_dir() { |
| 137 | # @ECLASS-VARIABLE: CMAKE_USE_DIR |
|
|
| 138 | # @DESCRIPTION: |
|
|
| 139 | # Sets the directory where we are working with cmake. |
|
|
| 140 | # For example when application uses autotools and only one |
|
|
| 141 | # plugin needs to be done by cmake. |
|
|
| 142 | # By default it uses ${S}. |
|
|
| 143 | : ${CMAKE_USE_DIR:=${S}} |
143 | : ${CMAKE_USE_DIR:=${S}} |
| 144 | |
|
|
| 145 | # @ECLASS-VARIABLE: CMAKE_BUILD_DIR |
|
|
| 146 | # @DESCRIPTION: |
|
|
| 147 | # Specify the build directory where all cmake processed |
|
|
| 148 | # files should be located. |
|
|
| 149 | # |
|
|
| 150 | # For installing binary doins "${CMAKE_BUILD_DIR}/${PN}" |
|
|
| 151 | if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
144 | if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
| 152 | # we build in source dir |
145 | # we build in source dir |
| 153 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
146 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
| 154 | elif [[ ${CMAKE_USE_DIR} = ${WORKDIR} ]]; then |
|
|
| 155 | # out of tree build, but with $S=$WORKDIR, see bug #273949 for reason. |
|
|
| 156 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}/build" |
|
|
| 157 | else |
147 | else |
| 158 | # regular out of tree build |
148 | : ${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 |
149 | fi |
| 163 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
150 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
| 164 | } |
151 | } |
| 165 | # @FUNCTION: cmake-utils_use_with |
152 | # @FUNCTION: cmake-utils_use_with |
| 166 | # @USAGE: <USE flag> [flag name] |
153 | # @USAGE: <USE flag> [flag name] |
| … | |
… | |
| 223 | # |
210 | # |
| 224 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
211 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
| 225 | # and -DHAVE_FOO=OFF if it is disabled. |
212 | # and -DHAVE_FOO=OFF if it is disabled. |
| 226 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
213 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
| 227 | |
214 | |
|
|
215 | # @FUNCTION: cmake-utils_use_use |
|
|
216 | # @USAGE: <USE flag> [flag name] |
|
|
217 | # @DESCRIPTION: |
|
|
218 | # Based on use_enable. See ebuild(5). |
|
|
219 | # |
|
|
220 | # `cmake-utils_use_use foo FOO` echoes -DUSE_FOO=ON if foo is enabled |
|
|
221 | # and -DUSE_FOO=OFF if it is disabled. |
|
|
222 | cmake-utils_use_use() { _use_me_now USE_ "$@" ; } |
|
|
223 | |
| 228 | # @FUNCTION: cmake-utils_use |
224 | # @FUNCTION: cmake-utils_use |
| 229 | # @USAGE: <USE flag> [flag name] |
225 | # @USAGE: <USE flag> [flag name] |
| 230 | # @DESCRIPTION: |
226 | # @DESCRIPTION: |
| 231 | # Based on use_enable. See ebuild(5). |
227 | # Based on use_enable. See ebuild(5). |
| 232 | # |
228 | # |
| 233 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
229 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
| 234 | # and -DFOO=OFF if it is disabled. |
230 | # and -DFOO=OFF if it is disabled. |
| 235 | cmake-utils_use() { _use_me_now "" "$@" ; } |
231 | cmake-utils_use() { _use_me_now "" "$@" ; } |
| 236 | |
232 | |
| 237 | # Internal function for modifying hardcoded definitions. |
233 | # Internal function for modifying hardcoded definitions. |
| 238 | # Removes dangerous definitionts that override Gentoo settings. |
234 | # Removes dangerous definitions that override Gentoo settings. |
| 239 | _modify-cmakelists() { |
235 | _modify-cmakelists() { |
| 240 | debug-print-function ${FUNCNAME} "$@" |
236 | debug-print-function ${FUNCNAME} "$@" |
| 241 | |
237 | |
| 242 | # Comment out all set (<some_should_be_user_defined_variable> value) |
238 | # 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 |
239 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
| 244 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
240 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
| 245 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
241 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
242 | -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}' {} + \ |
243 | -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}' {} + \ |
| 247 | || die "${LINENO}: failed to disable hardcoded settings" |
245 | || die "${LINENO}: failed to disable hardcoded settings" |
| 248 | |
246 | |
| 249 | # NOTE Append some useful summary here |
247 | # NOTE Append some useful summary here |
| 250 | cat >> CMakeLists.txt <<- _EOF_ |
248 | cat >> CMakeLists.txt <<- _EOF_ |
| 251 | |
249 | |
| 252 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
250 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
| 253 | Build type: ${CMAKE_BUILD_TYPE} |
251 | Build type \${CMAKE_BUILD_TYPE} |
| 254 | Install path: ${CMAKE_INSTALL_PREFIX}\n") |
252 | Install path \${CMAKE_INSTALL_PREFIX} |
|
|
253 | Compiler flags: |
|
|
254 | C \${CMAKE_C_FLAGS} |
|
|
255 | C++ \${CMAKE_CXX_FLAGS} |
|
|
256 | Linker flags: |
|
|
257 | Executable \${CMAKE_EXE_LINKER_FLAGS} |
|
|
258 | Module \${CMAKE_MODULE_LINKER_FLAGS} |
|
|
259 | Shared \${CMAKE_SHARED_LINKER_FLAGS}\n") |
| 255 | _EOF_ |
260 | _EOF_ |
| 256 | } |
261 | } |
| 257 | |
262 | |
| 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() { |
263 | enable_cmake-utils_src_configure() { |
| 263 | debug-print-function ${FUNCNAME} "$@" |
264 | debug-print-function ${FUNCNAME} "$@" |
| 264 | |
265 | |
| 265 | _check_build_dir init |
266 | _check_build_dir init |
| 266 | |
267 | |
| 267 | # check if CMakeLists.txt exist and if no then die |
268 | # check if CMakeLists.txt exist and if no then die |
| 268 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
269 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
| 269 | eerror "I was unable to locate CMakeLists.txt under:" |
270 | eerror "Unable to locate CMakeLists.txt under:" |
| 270 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
271 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
| 271 | eerror "You should consider not inheriting the cmake eclass." |
272 | eerror "Consider not inheriting the cmake eclass." |
| 272 | die "FATAL: Unable to find CMakeLists.txt" |
273 | die "FATAL: Unable to find CMakeLists.txt" |
| 273 | fi |
274 | fi |
| 274 | |
275 | |
| 275 | # Remove dangerous things. |
276 | # Remove dangerous things. |
| 276 | _modify-cmakelists |
277 | _modify-cmakelists |
| … | |
… | |
| 301 | # right ... except for Darwin hosts |
302 | # right ... except for Darwin hosts |
| 302 | IF (NOT APPLE) |
303 | IF (NOT APPLE) |
| 303 | SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
304 | 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)" |
305 | 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) |
306 | CACHE STRING "" FORCE) |
| 306 | SET (CMAKE_BUILD_WITH_INSTALL_RPATH ON CACHE BOOL "" FORCE) |
|
|
| 307 | ENDIF (NOT APPLE) |
307 | ENDIF (NOT APPLE) |
| 308 | _EOF_ |
308 | _EOF_ |
| 309 | fi |
309 | fi |
| 310 | |
310 | |
| 311 | # Common configure parameters (invariants) |
311 | # Common configure parameters (invariants) |
| 312 | local common_config=${T}/gentoo_common_config.cmake |
312 | local common_config=${T}/gentoo_common_config.cmake |
| 313 | local libdir=$(get_libdir) |
313 | local libdir=$(get_libdir) |
| 314 | cat > "${common_config}" <<- _EOF_ |
314 | cat > "${common_config}" <<- _EOF_ |
| 315 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
315 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
|
|
316 | SET (CMAKE_INSTALL_LIBDIR ${libdir} CACHE PATH "Output directory for libraries") |
| 316 | _EOF_ |
317 | _EOF_ |
| 317 | [[ -n ${CMAKE_NO_COLOR} ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
318 | [[ "${NOCOLOR}" = true || "${NOCOLOR}" = yes ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
| 318 | |
319 | |
| 319 | # Convert mycmakeargs to an array, for backwards compatibility |
320 | # Convert mycmakeargs to an array, for backwards compatibility |
|
|
321 | # Make the array a local variable since <=portage-2.1.6.x does not |
|
|
322 | # support global arrays (see bug #297255). |
| 320 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
323 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
| 321 | mycmakeargs=(${mycmakeargs}) |
324 | local mycmakeargs_local=(${mycmakeargs}) |
|
|
325 | else |
|
|
326 | local mycmakeargs_local=("${mycmakeargs[@]}") |
| 322 | fi |
327 | fi |
| 323 | |
328 | |
| 324 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
329 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
| 325 | |
330 | |
| 326 | # Common configure parameters (overridable) |
331 | # Common configure parameters (overridable) |
| 327 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
332 | # 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. |
333 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
| 329 | local cmakeargs=( |
334 | local cmakeargs=( |
| 330 | -C "${common_config}" |
335 | -C "${common_config}" |
| 331 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX:-/usr}" |
336 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX:-/usr}" |
| 332 | "${mycmakeargs[@]}" |
337 | "${mycmakeargs_local[@]}" |
| 333 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
338 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
| 334 | -DCMAKE_INSTALL_DO_STRIP=OFF |
339 | -DCMAKE_INSTALL_DO_STRIP=OFF |
| 335 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
340 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
|
|
341 | "${MYCMAKEARGS}" |
| 336 | ) |
342 | ) |
| 337 | |
343 | |
| 338 | mkdir -p "${CMAKE_BUILD_DIR}" |
344 | mkdir -p "${CMAKE_BUILD_DIR}" |
| 339 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
345 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 340 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${cmakeargs[*]}" |
346 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
| 341 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
347 | echo cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
| 342 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
348 | cmake "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
| 343 | |
|
|
| 344 | popd > /dev/null |
349 | popd > /dev/null |
| 345 | } |
350 | } |
| 346 | |
351 | |
| 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() { |
352 | enable_cmake-utils_src_compile() { |
| 352 | debug-print-function ${FUNCNAME} "$@" |
353 | debug-print-function ${FUNCNAME} "$@" |
| 353 | |
354 | |
| 354 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
355 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
| 355 | cmake-utils_src_make "$@" |
356 | cmake-utils_src_make "$@" |
| 356 | } |
357 | } |
| 357 | |
358 | |
| 358 | # @FUNCTION: cmake-utils_src_make |
359 | # @FUNCTION: cmake-utils_src_make |
| 359 | # @DESCRIPTION: |
360 | # @DESCRIPTION: |
| 360 | # Function for building the package. Automatically detects the build type. |
361 | # Function for building the package. Automatically detects the build type. |
| 361 | # All arguments are passed to emake |
362 | # All arguments are passed to emake. |
| 362 | cmake-utils_src_make() { |
363 | cmake-utils_src_make() { |
| 363 | debug-print-function ${FUNCNAME} "$@" |
364 | debug-print-function ${FUNCNAME} "$@" |
| 364 | |
365 | |
| 365 | _check_build_dir |
366 | _check_build_dir |
| 366 | pushd "${CMAKE_BUILD_DIR}" &> /dev/null |
367 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 367 | # first check if Makefile exist otherwise die |
368 | # first check if Makefile exist otherwise die |
| 368 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
369 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
| 369 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
370 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
| 370 | emake VERBOSE=1 "$@" || die "Make failed!" |
371 | emake VERBOSE=1 "$@" || die "Make failed!" |
| 371 | else |
372 | else |
| 372 | emake "$@" || die "Make failed!" |
373 | emake "$@" || die "Make failed!" |
| 373 | fi |
374 | fi |
| 374 | popd &> /dev/null |
375 | popd > /dev/null |
| 375 | } |
376 | } |
| 376 | |
377 | |
|
|
378 | enable_cmake-utils_src_install() { |
|
|
379 | debug-print-function ${FUNCNAME} "$@" |
|
|
380 | |
|
|
381 | _check_build_dir |
|
|
382 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
|
|
383 | base_src_install |
|
|
384 | popd > /dev/null |
|
|
385 | |
|
|
386 | # Backward compatibility, for non-array variables |
|
|
387 | if [[ -n "${DOCS}" ]] && [[ "$(declare -p DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
388 | dodoc ${DOCS} || die "dodoc failed" |
|
|
389 | fi |
|
|
390 | if [[ -n "${HTML_DOCS}" ]] && [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
391 | dohtml -r ${HTML_DOCS} || die "dohtml failed" |
|
|
392 | fi |
|
|
393 | } |
|
|
394 | |
|
|
395 | enable_cmake-utils_src_test() { |
|
|
396 | debug-print-function ${FUNCNAME} "$@" |
|
|
397 | |
|
|
398 | _check_build_dir |
|
|
399 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
|
|
400 | local ctestargs |
|
|
401 | [[ -n ${TEST_VERBOSE} ]] && ctestargs="--extra-verbose --output-on-failure" |
|
|
402 | ctest ${ctestargs} || die "Tests failed." |
|
|
403 | popd > /dev/null |
|
|
404 | } |
|
|
405 | |
|
|
406 | # @FUNCTION: cmake-utils_src_configure |
|
|
407 | # @DESCRIPTION: |
|
|
408 | # General function for configuring with cmake. Default behaviour is to start an |
|
|
409 | # out-of-source build. |
|
|
410 | cmake-utils_src_configure() { |
|
|
411 | _execute_optionaly "src_configure" "$@" |
|
|
412 | } |
|
|
413 | |
|
|
414 | # @FUNCTION: cmake-utils_src_compile |
|
|
415 | # @DESCRIPTION: |
|
|
416 | # General function for compiling with cmake. Default behaviour is to check for |
|
|
417 | # EAPI and respectively to configure as well or just compile. |
|
|
418 | # Automatically detects the build type. All arguments are passed to emake. |
|
|
419 | cmake-utils_src_compile() { |
|
|
420 | _execute_optionaly "src_compile" "$@" |
|
|
421 | } |
|
|
422 | |
| 377 | # @FUNCTION: enable_cmake-utils_src_install |
423 | # @FUNCTION: cmake-utils_src_install |
| 378 | # @DESCRIPTION: |
424 | # @DESCRIPTION: |
| 379 | # Function for installing the package. Automatically detects the build type. |
425 | # Function for installing the package. Automatically detects the build type. |
| 380 | enable_cmake-utils_src_install() { |
426 | cmake-utils_src_install() { |
| 381 | debug-print-function ${FUNCNAME} "$@" |
427 | _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 | } |
428 | } |
| 392 | |
429 | |
| 393 | # @FUNCTION: enable_cmake-utils_src_test |
430 | # @FUNCTION: cmake-utils_src_test |
| 394 | # @DESCRIPTION: |
431 | # @DESCRIPTION: |
| 395 | # Function for testing the package. Automatically detects the build type. |
432 | # 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() { |
433 | cmake-utils_src_test() { |
| 448 | _execute_optionaly "src_test" |
434 | _execute_optionaly "src_test" "$@" |
| 449 | } |
435 | } |
| 450 | |
436 | |
| 451 | |
437 | # Optionally executes phases based on WANT_CMAKE variable/USE flag. |
| 452 | _execute_optionaly() { |
438 | _execute_optionaly() { |
| 453 | local phase="$1" |
439 | local phase="$1" ; shift |
| 454 | if [[ ${WANT_CMAKE} = always ]]; then |
440 | if [[ ${WANT_CMAKE} = always ]]; then |
| 455 | enable_cmake-utils_${phase} |
441 | enable_cmake-utils_${phase} "$@" |
| 456 | else |
442 | else |
| 457 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} |
443 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} "$@" |
| 458 | fi |
444 | fi |
| 459 | } |
445 | } |