| 1 | # Copyright 1999-2007 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.13 2008/10/27 14:38:38 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.89 2012/12/03 12:05:51 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 | # @AUTHOR: |
|
|
9 | # Tomáš Chvátal <scarabeus@gentoo.org> |
|
|
10 | # Maciej Mrozowski <reavertm@gentoo.org> |
|
|
11 | # (undisclosed contributors) |
|
|
12 | # Original author: Zephyrus (zephyrus@mirach.it) |
| 8 | # @BLURB: common ebuild functions for cmake-based packages |
13 | # @BLURB: common ebuild functions for cmake-based packages |
| 9 | # @DESCRIPTION: |
14 | # @DESCRIPTION: |
| 10 | # 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 |
| 11 | # cmake-based packages much easier. |
16 | # cmake-based packages much easier. |
| 12 | # 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 |
| 13 | # 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 |
| 14 | # functions for CMake. |
19 | # and use_with functions for CMake. |
| 15 | |
20 | |
| 16 | # Original author: Zephyrus (zephyrus@mirach.it) |
21 | # @ECLASS-VARIABLE: WANT_CMAKE |
|
|
22 | # @DESCRIPTION: |
|
|
23 | # Specify if cmake-utils eclass should depend on cmake optionaly or not. |
|
|
24 | # This is usefull when only part of aplication is using cmake build system. |
|
|
25 | # Valid values are: always [default], optional (where the value is the useflag |
|
|
26 | # used for optionality) |
|
|
27 | WANT_CMAKE="${WANT_CMAKE:-always}" |
| 17 | |
28 | |
| 18 | inherit toolchain-funcs multilib |
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}" |
| 19 | |
33 | |
| 20 | DESCRIPTION="Based on the ${ECLASS} eclass" |
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}" |
| 21 | |
39 | |
| 22 | DEPEND=">=dev-util/cmake-2.4.6" |
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}" |
| 23 | |
44 | |
| 24 | case ${EAPI} in |
45 | # @ECLASS-VARIABLE: CMAKE_MAKEFILE_GENERATOR |
| 25 | 2) |
46 | # @DESCRIPTION: |
| 26 | EXPORT_FUNCTIONS src_configure src_compile src_test src_install |
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 | |
|
|
51 | CMAKEDEPEND="" |
|
|
52 | case ${WANT_CMAKE} in |
|
|
53 | always) |
| 27 | ;; |
54 | ;; |
| 28 | *) |
55 | *) |
| 29 | EXPORT_FUNCTIONS src_compile src_test src_install |
56 | IUSE+=" ${WANT_CMAKE}" |
|
|
57 | CMAKEDEPEND+="${WANT_CMAKE}? ( " |
| 30 | ;; |
58 | ;; |
| 31 | esac |
59 | esac |
|
|
60 | inherit toolchain-funcs multilib flag-o-matic base |
| 32 | |
61 | |
|
|
62 | CMAKE_EXPF="src_compile src_test src_install" |
|
|
63 | case ${EAPI:-0} in |
|
|
64 | 2|3|4|5) CMAKE_EXPF+=" src_configure" ;; |
|
|
65 | 1|0) ;; |
|
|
66 | *) die "Unknown EAPI, Bug eclass maintainers." ;; |
|
|
67 | esac |
|
|
68 | EXPORT_FUNCTIONS ${CMAKE_EXPF} |
| 33 | |
69 | |
| 34 | # Internal function use by cmake-utils_use_with and cmake-utils_use_enable |
70 | if [[ ${PN} != cmake ]]; then |
|
|
71 | CMAKEDEPEND+=" >=dev-util/cmake-${CMAKE_MIN_VERSION}" |
|
|
72 | fi |
|
|
73 | |
|
|
74 | CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
|
|
75 | |
|
|
76 | [[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
|
|
77 | |
|
|
78 | DEPEND="${CMAKEDEPEND}" |
|
|
79 | unset CMAKEDEPEND |
|
|
80 | |
|
|
81 | # Internal functions used by cmake-utils_use_* |
| 35 | _use_me_now() { |
82 | _use_me_now() { |
| 36 | debug-print-function $FUNCNAME $* |
83 | debug-print-function ${FUNCNAME} "$@" |
|
|
84 | |
|
|
85 | local uper capitalised x |
| 37 | [[ -z $2 ]] && die "cmake-utils_use-$1 <USE flag> [<flag name>]" |
86 | [[ -z $2 ]] && die "cmake-utils_use-$1 <USE flag> [<flag name>]" |
|
|
87 | if [[ ! -z $3 ]]; then |
|
|
88 | # user specified the use name so use it |
| 38 | echo "-D$1_${3:-$2}=$(use $2 && echo ON || echo OFF)" |
89 | echo "-D$1$3=$(use $2 && echo ON || echo OFF)" |
|
|
90 | else |
|
|
91 | # use all various most used combinations |
|
|
92 | uper=$(echo ${2} | tr '[:lower:]' '[:upper:]') |
|
|
93 | capitalised=$(echo ${2} | sed 's/\<\(.\)\([^ ]*\)/\u\1\L\2/g') |
|
|
94 | for x in $2 $uper $capitalised; do |
|
|
95 | echo "-D$1$x=$(use $2 && echo ON || echo OFF) " |
|
|
96 | done |
|
|
97 | fi |
| 39 | } |
98 | } |
|
|
99 | _use_me_now_inverted() { |
|
|
100 | debug-print-function ${FUNCNAME} "$@" |
| 40 | |
101 | |
| 41 | # @VARIABLE: DOCS |
102 | local uper capitalised x |
|
|
103 | [[ -z $2 ]] && die "cmake-utils_use-$1 <USE flag> [<flag name>]" |
|
|
104 | if [[ ! -z $3 ]]; then |
|
|
105 | # user specified the use name so use it |
|
|
106 | echo "-D$1$3=$(use $2 && echo OFF || echo ON)" |
|
|
107 | else |
|
|
108 | # use all various most used combinations |
|
|
109 | uper=$(echo ${2} | tr '[:lower:]' '[:upper:]') |
|
|
110 | capitalised=$(echo ${2} | sed 's/\<\(.\)\([^ ]*\)/\u\1\L\2/g') |
|
|
111 | for x in $2 $uper $capitalised; do |
|
|
112 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
|
|
113 | done |
|
|
114 | fi |
|
|
115 | } |
|
|
116 | |
|
|
117 | # @ECLASS-VARIABLE: BUILD_DIR |
| 42 | # @DESCRIPTION: |
118 | # @DESCRIPTION: |
| 43 | # Documents to dodoc |
119 | # Build directory where all cmake processed files should be generated. |
|
|
120 | # For in-source build it's fixed to ${CMAKE_USE_DIR}. |
|
|
121 | # For out-of-source build it can be overriden, by default it uses |
|
|
122 | # ${WORKDIR}/${P}_build. |
|
|
123 | # |
|
|
124 | # This variable has been called CMAKE_BUILD_DIR formerly. |
|
|
125 | # It is set under that name for compatibility. |
|
|
126 | |
|
|
127 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
|
|
128 | # @DESCRIPTION: |
|
|
129 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
|
|
130 | # known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
|
|
131 | # If about to be set - needs to be set before invoking cmake-utils_src_configure. |
|
|
132 | # You usualy do *NOT* want nor need to set it as it pulls CMake default build-type |
|
|
133 | # specific compiler flags overriding make.conf. |
|
|
134 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
|
|
135 | |
|
|
136 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
|
|
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 | |
|
|
164 | # Determine using IN or OUT source build |
|
|
165 | _check_build_dir() { |
|
|
166 | : ${CMAKE_USE_DIR:=${S}} |
|
|
167 | if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
|
|
168 | # we build in source dir |
|
|
169 | BUILD_DIR="${CMAKE_USE_DIR}" |
|
|
170 | else |
|
|
171 | # Respect both the old variable and the new one, depending |
|
|
172 | # on which one was set by the ebuild. |
|
|
173 | if [[ ! ${BUILD_DIR} && ${CMAKE_BUILD_DIR} ]]; then |
|
|
174 | eqawarn "The CMAKE_BUILD_DIR variable has been renamed to BUILD_DIR." |
|
|
175 | eqawarn "Please migrate the ebuild to use the new one." |
|
|
176 | |
|
|
177 | # In the next call, both variables will be set already |
|
|
178 | # and we'd have to know which one takes precedence. |
|
|
179 | _RESPECT_CMAKE_BUILD_DIR=1 |
|
|
180 | fi |
|
|
181 | |
|
|
182 | if [[ ${_RESPECT_CMAKE_BUILD_DIR} ]]; then |
|
|
183 | BUILD_DIR=${CMAKE_BUILD_DIR:-${WORKDIR}/${P}_build} |
|
|
184 | else |
|
|
185 | : ${BUILD_DIR:=${WORKDIR}/${P}_build} |
|
|
186 | fi |
|
|
187 | fi |
|
|
188 | |
|
|
189 | # Backwards compatibility for getting the value. |
|
|
190 | CMAKE_BUILD_DIR=${BUILD_DIR} |
|
|
191 | |
|
|
192 | mkdir -p "${BUILD_DIR}" |
|
|
193 | echo ">>> Working in BUILD_DIR: \"$BUILD_DIR\"" |
|
|
194 | } |
|
|
195 | |
|
|
196 | # Determine which generator to use |
|
|
197 | _generator_to_use() { |
|
|
198 | if [[ ${CMAKE_MAKEFILE_GENERATOR} = "ninja" ]]; then |
|
|
199 | has_version dev-util/ninja && echo "Ninja" && return |
|
|
200 | fi |
|
|
201 | echo "Unix Makefiles" |
|
|
202 | } |
| 44 | |
203 | |
| 45 | # @FUNCTION: cmake-utils_use_with |
204 | # @FUNCTION: cmake-utils_use_with |
| 46 | # @USAGE: <USE flag> [flag name] |
205 | # @USAGE: <USE flag> [flag name] |
| 47 | # @DESCRIPTION: |
206 | # @DESCRIPTION: |
| 48 | # Based on use_with. See ebuild(5). |
207 | # Based on use_with. See ebuild(5). |
| 49 | # |
208 | # |
| 50 | # `cmake-utils_use_with foo FOO` echoes -DWITH_FOO=ON if foo is enabled |
209 | # `cmake-utils_use_with foo FOO` echoes -DWITH_FOO=ON if foo is enabled |
| 51 | # and -DWITH_FOO=OFF if it is disabled. |
210 | # and -DWITH_FOO=OFF if it is disabled. |
| 52 | cmake-utils_use_with() { _use_me_now WITH "$@" ; } |
211 | cmake-utils_use_with() { _use_me_now WITH_ "$@" ; } |
| 53 | |
212 | |
| 54 | # @FUNCTION: cmake-utils_use_enable |
213 | # @FUNCTION: cmake-utils_use_enable |
| 55 | # @USAGE: <USE flag> [flag name] |
214 | # @USAGE: <USE flag> [flag name] |
| 56 | # @DESCRIPTION: |
215 | # @DESCRIPTION: |
| 57 | # Based on use_enable. See ebuild(5). |
216 | # Based on use_enable. See ebuild(5). |
| 58 | # |
217 | # |
| 59 | # `cmake-utils_use_enable foo FOO` echoes -DENABLE_FOO=ON if foo is enabled |
218 | # `cmake-utils_use_enable foo FOO` echoes -DENABLE_FOO=ON if foo is enabled |
| 60 | # and -DENABLE_FOO=OFF if it is disabled. |
219 | # and -DENABLE_FOO=OFF if it is disabled. |
| 61 | cmake-utils_use_enable() { _use_me_now ENABLE "$@" ; } |
220 | cmake-utils_use_enable() { _use_me_now ENABLE_ "$@" ; } |
|
|
221 | |
|
|
222 | # @FUNCTION: cmake-utils_use_disable |
|
|
223 | # @USAGE: <USE flag> [flag name] |
|
|
224 | # @DESCRIPTION: |
|
|
225 | # Based on inversion of use_enable. See ebuild(5). |
|
|
226 | # |
|
|
227 | # `cmake-utils_use_enable foo FOO` echoes -DDISABLE_FOO=OFF if foo is enabled |
|
|
228 | # and -DDISABLE_FOO=ON if it is disabled. |
|
|
229 | cmake-utils_use_disable() { _use_me_now_inverted DISABLE_ "$@" ; } |
|
|
230 | |
|
|
231 | # @FUNCTION: cmake-utils_use_no |
|
|
232 | # @USAGE: <USE flag> [flag name] |
|
|
233 | # @DESCRIPTION: |
|
|
234 | # Based on use_disable. See ebuild(5). |
|
|
235 | # |
|
|
236 | # `cmake-utils_use_no foo FOO` echoes -DNO_FOO=OFF if foo is enabled |
|
|
237 | # and -DNO_FOO=ON if it is disabled. |
|
|
238 | cmake-utils_use_no() { _use_me_now_inverted NO_ "$@" ; } |
| 62 | |
239 | |
| 63 | # @FUNCTION: cmake-utils_use_want |
240 | # @FUNCTION: cmake-utils_use_want |
| 64 | # @USAGE: <USE flag> [flag name] |
241 | # @USAGE: <USE flag> [flag name] |
| 65 | # @DESCRIPTION: |
242 | # @DESCRIPTION: |
| 66 | # Based on use_enable. See ebuild(5). |
243 | # Based on use_enable. See ebuild(5). |
| 67 | # |
244 | # |
| 68 | # `cmake-utils_use_want foo FOO` echoes -DWANT_FOO=ON if foo is enabled |
245 | # `cmake-utils_use_want foo FOO` echoes -DWANT_FOO=ON if foo is enabled |
| 69 | # and -DWANT_FOO=OFF if it is disabled. |
246 | # and -DWANT_FOO=OFF if it is disabled. |
| 70 | cmake-utils_use_want() { _use_me_now WANT "$@" ; } |
247 | cmake-utils_use_want() { _use_me_now WANT_ "$@" ; } |
| 71 | |
248 | |
| 72 | # @FUNCTION: cmake-utils_has |
249 | # @FUNCTION: cmake-utils_use_build |
| 73 | # @USAGE: <USE flag> [flag name] |
250 | # @USAGE: <USE flag> [flag name] |
| 74 | # @DESCRIPTION: |
251 | # @DESCRIPTION: |
| 75 | # Based on use_enable. See ebuild(5). |
252 | # Based on use_enable. See ebuild(5). |
| 76 | # |
253 | # |
|
|
254 | # `cmake-utils_use_build foo FOO` echoes -DBUILD_FOO=ON if foo is enabled |
|
|
255 | # and -DBUILD_FOO=OFF if it is disabled. |
|
|
256 | cmake-utils_use_build() { _use_me_now BUILD_ "$@" ; } |
|
|
257 | |
|
|
258 | # @FUNCTION: cmake-utils_use_has |
|
|
259 | # @USAGE: <USE flag> [flag name] |
|
|
260 | # @DESCRIPTION: |
|
|
261 | # Based on use_enable. See ebuild(5). |
|
|
262 | # |
| 77 | # `cmake-utils_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
263 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
| 78 | # and -DHAVE_FOO=OFF if it is disabled. |
264 | # and -DHAVE_FOO=OFF if it is disabled. |
| 79 | cmake-utils_has() { _use_me_now HAVE "$@" ; } |
265 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
|
|
266 | |
|
|
267 | # @FUNCTION: cmake-utils_use_use |
|
|
268 | # @USAGE: <USE flag> [flag name] |
|
|
269 | # @DESCRIPTION: |
|
|
270 | # Based on use_enable. See ebuild(5). |
|
|
271 | # |
|
|
272 | # `cmake-utils_use_use foo FOO` echoes -DUSE_FOO=ON if foo is enabled |
|
|
273 | # and -DUSE_FOO=OFF if it is disabled. |
|
|
274 | cmake-utils_use_use() { _use_me_now USE_ "$@" ; } |
|
|
275 | |
|
|
276 | # @FUNCTION: cmake-utils_use |
|
|
277 | # @USAGE: <USE flag> [flag name] |
|
|
278 | # @DESCRIPTION: |
|
|
279 | # Based on use_enable. See ebuild(5). |
|
|
280 | # |
|
|
281 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
|
|
282 | # and -DFOO=OFF if it is disabled. |
|
|
283 | cmake-utils_use() { _use_me_now "" "$@" ; } |
|
|
284 | |
|
|
285 | # Internal function for modifying hardcoded definitions. |
|
|
286 | # Removes dangerous definitions that override Gentoo settings. |
|
|
287 | _modify-cmakelists() { |
|
|
288 | debug-print-function ${FUNCNAME} "$@" |
|
|
289 | |
|
|
290 | # Only edit the files once |
|
|
291 | grep -qs "<<< Gentoo configuration >>>" "${CMAKE_USE_DIR}"/CMakeLists.txt && return 0 |
|
|
292 | |
|
|
293 | # Comment out all set (<some_should_be_user_defined_variable> value) |
|
|
294 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
|
|
295 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
|
|
296 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
297 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_COLOR_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
298 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
299 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_VERBOSE_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
300 | || die "${LINENO}: failed to disable hardcoded settings" |
|
|
301 | |
|
|
302 | # NOTE Append some useful summary here |
|
|
303 | cat >> "${CMAKE_USE_DIR}"/CMakeLists.txt <<- _EOF_ |
|
|
304 | |
|
|
305 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
|
|
306 | Build type \${CMAKE_BUILD_TYPE} |
|
|
307 | Install path \${CMAKE_INSTALL_PREFIX} |
|
|
308 | Compiler flags: |
|
|
309 | C \${CMAKE_C_FLAGS} |
|
|
310 | C++ \${CMAKE_CXX_FLAGS} |
|
|
311 | Linker flags: |
|
|
312 | Executable \${CMAKE_EXE_LINKER_FLAGS} |
|
|
313 | Module \${CMAKE_MODULE_LINKER_FLAGS} |
|
|
314 | Shared \${CMAKE_SHARED_LINKER_FLAGS}\n") |
|
|
315 | _EOF_ |
|
|
316 | } |
|
|
317 | |
|
|
318 | enable_cmake-utils_src_configure() { |
|
|
319 | debug-print-function ${FUNCNAME} "$@" |
|
|
320 | |
|
|
321 | [[ "${CMAKE_REMOVE_MODULES}" == "yes" ]] && { |
|
|
322 | local name |
|
|
323 | for name in ${CMAKE_REMOVE_MODULES_LIST} ; do |
|
|
324 | find "${S}" -name ${name}.cmake -exec rm -v {} + |
|
|
325 | done |
|
|
326 | } |
|
|
327 | |
|
|
328 | _check_build_dir |
|
|
329 | |
|
|
330 | # check if CMakeLists.txt exist and if no then die |
|
|
331 | if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
|
|
332 | eerror "Unable to locate CMakeLists.txt under:" |
|
|
333 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
|
|
334 | eerror "Consider not inheriting the cmake eclass." |
|
|
335 | die "FATAL: Unable to find CMakeLists.txt" |
|
|
336 | fi |
|
|
337 | |
|
|
338 | # Remove dangerous things. |
|
|
339 | _modify-cmakelists |
|
|
340 | |
|
|
341 | # Fix xdg collision with sandbox |
|
|
342 | export XDG_CONFIG_HOME="${T}" |
|
|
343 | |
|
|
344 | # @SEE CMAKE_BUILD_TYPE |
|
|
345 | if [[ ${CMAKE_BUILD_TYPE} = Gentoo ]]; then |
|
|
346 | # Handle release builds |
|
|
347 | if ! has debug ${IUSE//+} || ! use debug; then |
|
|
348 | append-cppflags -DNDEBUG |
|
|
349 | fi |
|
|
350 | fi |
|
|
351 | |
|
|
352 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS etc.) |
|
|
353 | local build_rules=${BUILD_DIR}/gentoo_rules.cmake |
|
|
354 | cat > "${build_rules}" <<- _EOF_ |
|
|
355 | SET (CMAKE_AR $(type -P $(tc-getAR)) CACHE FILEPATH "Archive manager" FORCE) |
|
|
356 | SET (CMAKE_C_COMPILER $(type -P $(tc-getCC)) CACHE FILEPATH "C compiler" FORCE) |
|
|
357 | SET (CMAKE_C_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C compile command" FORCE) |
|
|
358 | SET (CMAKE_CXX_COMPILER $(type -P $(tc-getCXX)) CACHE FILEPATH "C++ compiler" FORCE) |
|
|
359 | SET (CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C++ compile command" FORCE) |
|
|
360 | SET (CMAKE_RANLIB $(type -P $(tc-getRANLIB)) CACHE FILEPATH "Archive index generator" FORCE) |
|
|
361 | _EOF_ |
|
|
362 | |
|
|
363 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
364 | |
|
|
365 | if [[ ${EPREFIX} ]]; then |
|
|
366 | cat >> "${build_rules}" <<- _EOF_ |
|
|
367 | # in Prefix we need rpath and must ensure cmake gets our default linker path |
|
|
368 | # right ... except for Darwin hosts |
|
|
369 | IF (NOT APPLE) |
|
|
370 | SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
|
|
371 | SET (CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH "${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" |
|
|
372 | CACHE STRING "" FORCE) |
|
|
373 | |
|
|
374 | ELSE () |
|
|
375 | |
|
|
376 | SET(CMAKE_PREFIX_PATH "${EPREFIX}${PREFIX}" CACHE STRING ""FORCE) |
|
|
377 | SET(CMAKE_SKIP_BUILD_RPATH OFF CACHE BOOL "" FORCE) |
|
|
378 | SET(CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
|
|
379 | SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE CACHE BOOL "") |
|
|
380 | 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) |
|
|
381 | SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE CACHE BOOL "" FORCE) |
|
|
382 | SET(CMAKE_INSTALL_NAME_DIR "${EPREFIX}${PREFIX}/lib" CACHE STRING "" FORCE) |
|
|
383 | |
|
|
384 | ENDIF (NOT APPLE) |
|
|
385 | _EOF_ |
|
|
386 | fi |
|
|
387 | |
|
|
388 | # Common configure parameters (invariants) |
|
|
389 | local common_config=${BUILD_DIR}/gentoo_common_config.cmake |
|
|
390 | local libdir=$(get_libdir) |
|
|
391 | cat > "${common_config}" <<- _EOF_ |
|
|
392 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
|
|
393 | SET (CMAKE_INSTALL_LIBDIR ${libdir} CACHE PATH "Output directory for libraries") |
|
|
394 | _EOF_ |
|
|
395 | [[ "${NOCOLOR}" = true || "${NOCOLOR}" = yes ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
|
|
396 | |
|
|
397 | # Convert mycmakeargs to an array, for backwards compatibility |
|
|
398 | # Make the array a local variable since <=portage-2.1.6.x does not |
|
|
399 | # support global arrays (see bug #297255). |
|
|
400 | if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
|
|
401 | local mycmakeargs_local=(${mycmakeargs}) |
|
|
402 | else |
|
|
403 | local mycmakeargs_local=("${mycmakeargs[@]}") |
|
|
404 | fi |
|
|
405 | |
|
|
406 | # Common configure parameters (overridable) |
|
|
407 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
|
|
408 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
|
|
409 | local cmakeargs=( |
|
|
410 | --no-warn-unused-cli |
|
|
411 | -C "${common_config}" |
|
|
412 | -G "$(_generator_to_use)" |
|
|
413 | -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}" |
|
|
414 | "${mycmakeargs_local[@]}" |
|
|
415 | -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
|
|
416 | -DCMAKE_INSTALL_DO_STRIP=OFF |
|
|
417 | -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
|
|
418 | "${MYCMAKEARGS}" |
|
|
419 | ) |
|
|
420 | |
|
|
421 | pushd "${BUILD_DIR}" > /dev/null |
|
|
422 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
|
|
423 | echo "${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
|
|
424 | "${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
|
|
425 | popd > /dev/null |
|
|
426 | } |
|
|
427 | |
|
|
428 | enable_cmake-utils_src_compile() { |
|
|
429 | debug-print-function ${FUNCNAME} "$@" |
|
|
430 | |
|
|
431 | has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
|
|
432 | cmake-utils_src_make "$@" |
|
|
433 | } |
|
|
434 | |
|
|
435 | # @FUNCTION: cmake-utils_src_make |
|
|
436 | # @DESCRIPTION: |
|
|
437 | # Function for building the package. Automatically detects the build type. |
|
|
438 | # All arguments are passed to emake. |
|
|
439 | cmake-utils_src_make() { |
|
|
440 | debug-print-function ${FUNCNAME} "$@" |
|
|
441 | |
|
|
442 | _check_build_dir |
|
|
443 | pushd "${BUILD_DIR}" > /dev/null |
|
|
444 | if [[ $(_generator_to_use) = Ninja ]]; then |
|
|
445 | # first check if Makefile exist otherwise die |
|
|
446 | [[ -e build.ninja ]] || die "Makefile not found. Error during configure stage." |
|
|
447 | if [[ "${CMAKE_VERBOSE}" != "OFF" ]]; then |
|
|
448 | #TODO get load average from portage (-l option) |
|
|
449 | ninja ${MAKEOPTS} -v "$@" |
|
|
450 | else |
|
|
451 | ninja "$@" |
|
|
452 | fi || die "ninja failed!" |
|
|
453 | else |
|
|
454 | # first check if Makefile exist otherwise die |
|
|
455 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
|
|
456 | if [[ "${CMAKE_VERBOSE}" != "OFF" ]]; then |
|
|
457 | emake VERBOSE=1 "$@" || die "Make failed!" |
|
|
458 | else |
|
|
459 | emake "$@" || die "Make failed!" |
|
|
460 | fi |
|
|
461 | fi |
|
|
462 | popd > /dev/null |
|
|
463 | } |
|
|
464 | |
|
|
465 | enable_cmake-utils_src_install() { |
|
|
466 | debug-print-function ${FUNCNAME} "$@" |
|
|
467 | |
|
|
468 | _check_build_dir |
|
|
469 | pushd "${BUILD_DIR}" > /dev/null |
|
|
470 | if [[ $(_generator_to_use) = Ninja ]]; then |
|
|
471 | DESTDIR=${D} ninja install "$@" || die "died running ninja install" |
|
|
472 | base_src_install_docs |
|
|
473 | else |
|
|
474 | base_src_install "$@" |
|
|
475 | fi |
|
|
476 | popd > /dev/null |
|
|
477 | |
|
|
478 | # Backward compatibility, for non-array variables |
|
|
479 | if [[ -n "${DOCS}" ]] && [[ "$(declare -p DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
480 | dodoc ${DOCS} || die "dodoc failed" |
|
|
481 | fi |
|
|
482 | if [[ -n "${HTML_DOCS}" ]] && [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
483 | dohtml -r ${HTML_DOCS} || die "dohtml failed" |
|
|
484 | fi |
|
|
485 | } |
|
|
486 | |
|
|
487 | enable_cmake-utils_src_test() { |
|
|
488 | debug-print-function ${FUNCNAME} "$@" |
|
|
489 | local ctestargs |
|
|
490 | |
|
|
491 | _check_build_dir |
|
|
492 | pushd "${BUILD_DIR}" > /dev/null |
|
|
493 | [[ -e CTestTestfile.cmake ]] || { echo "No tests found. Skipping."; return 0 ; } |
|
|
494 | |
|
|
495 | [[ -n ${TEST_VERBOSE} ]] && ctestargs="--extra-verbose --output-on-failure" |
|
|
496 | |
|
|
497 | if ctest ${ctestargs} "$@" ; then |
|
|
498 | einfo "Tests succeeded." |
|
|
499 | popd > /dev/null |
|
|
500 | return 0 |
|
|
501 | else |
|
|
502 | if [[ -n "${CMAKE_YES_I_WANT_TO_SEE_THE_TEST_LOG}" ]] ; then |
|
|
503 | # on request from Diego |
|
|
504 | eerror "Tests failed. Test log ${BUILD_DIR}/Testing/Temporary/LastTest.log follows:" |
|
|
505 | eerror "--START TEST LOG--------------------------------------------------------------" |
|
|
506 | cat "${BUILD_DIR}/Testing/Temporary/LastTest.log" |
|
|
507 | eerror "--END TEST LOG----------------------------------------------------------------" |
|
|
508 | die "Tests failed." |
|
|
509 | else |
|
|
510 | die "Tests failed. When you file a bug, please attach the following file: \n\t${BUILD_DIR}/Testing/Temporary/LastTest.log" |
|
|
511 | fi |
|
|
512 | |
|
|
513 | # die might not die due to nonfatal |
|
|
514 | popd > /dev/null |
|
|
515 | return 1 |
|
|
516 | fi |
|
|
517 | } |
| 80 | |
518 | |
| 81 | # @FUNCTION: cmake-utils_src_configure |
519 | # @FUNCTION: cmake-utils_src_configure |
| 82 | # @DESCRIPTION: |
520 | # @DESCRIPTION: |
| 83 | # General function for configuring with cmake. Default behaviour is to start an |
521 | # General function for configuring with cmake. Default behaviour is to start an |
| 84 | # out-of-source build. |
522 | # out-of-source build. |
| 85 | cmake-utils_src_configure() { |
523 | cmake-utils_src_configure() { |
| 86 | debug-print-function $FUNCNAME $* |
524 | _execute_optionaly "src_configure" "$@" |
| 87 | |
|
|
| 88 | if ! has debug ${IUSE//+} || ! use debug ; then |
|
|
| 89 | append-cppflags -DNDEBUG |
|
|
| 90 | fi |
|
|
| 91 | |
|
|
| 92 | if [[ -n "${CMAKE_IN_SOURCE_BUILD}" ]]; then |
|
|
| 93 | cmake-utils_src_configurein |
|
|
| 94 | else |
|
|
| 95 | cmake-utils_src_configureout |
|
|
| 96 | fi |
|
|
| 97 | } |
525 | } |
| 98 | |
526 | |
| 99 | # @FUNCTION: cmake-utils_src_compile |
527 | # @FUNCTION: cmake-utils_src_compile |
| 100 | # @DESCRIPTION: |
528 | # @DESCRIPTION: |
| 101 | # General function for compiling with cmake. Default behaviour is to check for |
529 | # General function for compiling with cmake. Default behaviour is to check for |
| 102 | # eapi and based on it configure or only compile |
530 | # EAPI and respectively to configure as well or just compile. |
|
|
531 | # Automatically detects the build type. All arguments are passed to emake. |
| 103 | cmake-utils_src_compile() { |
532 | cmake-utils_src_compile() { |
| 104 | case ${EAPI} in |
533 | _execute_optionaly "src_compile" "$@" |
| 105 | 2) |
|
|
| 106 | ;; |
|
|
| 107 | *) |
|
|
| 108 | cmake-utils_src_configure |
|
|
| 109 | ;; |
|
|
| 110 | esac |
|
|
| 111 | |
|
|
| 112 | cmake-utils_src_make "$@" |
|
|
| 113 | } |
|
|
| 114 | |
|
|
| 115 | # @FUNCTION: cmake-utils_src_configurein |
|
|
| 116 | # @DESCRIPTION: |
|
|
| 117 | # Function for software that requires configure and building in the source |
|
|
| 118 | # directory. |
|
|
| 119 | cmake-utils_src_configurein() { |
|
|
| 120 | debug-print-function $FUNCNAME $* |
|
|
| 121 | |
|
|
| 122 | local cmakeargs="$(_common_configure_code) ${mycmakeargs} ${EXTRA_ECONF}" |
|
|
| 123 | |
|
|
| 124 | debug-print "$LINENO $ECLASS $FUNCNAME: mycmakeargs is $cmakeargs" |
|
|
| 125 | cmake ${cmakeargs} . || die "Cmake failed" |
|
|
| 126 | } |
|
|
| 127 | |
|
|
| 128 | # @FUNCTION: cmake-utils_src_configureout |
|
|
| 129 | # @DESCRIPTION: |
|
|
| 130 | # Function for software that requires configure and building outside the source |
|
|
| 131 | # tree - default. |
|
|
| 132 | cmake-utils_src_configureout() { |
|
|
| 133 | debug-print-function $FUNCNAME $* |
|
|
| 134 | |
|
|
| 135 | local cmakeargs="$(_common_configure_code) ${mycmakeargs} ${EXTRA_ECONF}" |
|
|
| 136 | mkdir -p "${WORKDIR}"/${PN}_build |
|
|
| 137 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
| 138 | |
|
|
| 139 | debug-print "$LINENO $ECLASS $FUNCNAME: mycmakeargs is $cmakeargs" |
|
|
| 140 | cmake ${cmakeargs} "${S}" || die "Cmake failed" |
|
|
| 141 | |
|
|
| 142 | popd > /dev/null |
|
|
| 143 | } |
|
|
| 144 | |
|
|
| 145 | # Internal use only. Common configuration options for all types of builds. |
|
|
| 146 | _common_configure_code() { |
|
|
| 147 | local tmp_libdir=$(get_libdir) |
|
|
| 148 | # CMAKE_BUILD_TYPE only modifies compiler flags, so set to None |
|
|
| 149 | echo -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE:-None} |
|
|
| 150 | echo -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) |
|
|
| 151 | echo -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) |
|
|
| 152 | echo -DCMAKE_INSTALL_PREFIX=${PREFIX:-/usr} |
|
|
| 153 | echo -DLIB_SUFFIX=${tmp_libdir/lib} |
|
|
| 154 | echo -DLIB_INSTALL_DIR=${PREFIX:-/usr}/${tmp_libdir} |
|
|
| 155 | [[ -n ${CMAKE_NO_COLOR} ]] && echo -DCMAKE_COLOR_MAKEFILE=OFF |
|
|
| 156 | } |
|
|
| 157 | |
|
|
| 158 | # @FUNCTION: cmake-utils_src_make |
|
|
| 159 | # @DESCRIPTION: |
|
|
| 160 | # Function for building the package. Automatically detects the build type. |
|
|
| 161 | # All arguments are passed to emake: |
|
|
| 162 | # "cmake-utils_src_make -j1" can be used to work around parallel make issues. |
|
|
| 163 | cmake-utils_src_make() { |
|
|
| 164 | debug-print-function $FUNCNAME $* |
|
|
| 165 | |
|
|
| 166 | # At this point we can automatically check if it's an out-of-source or an |
|
|
| 167 | # in-source build |
|
|
| 168 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
| 169 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
| 170 | fi |
|
|
| 171 | if ! [[ -z ${CMAKE_COMPILER_VERBOSE} ]]; then |
|
|
| 172 | emake VERBOSE=1 "$@" || die "Make failed!" |
|
|
| 173 | else |
|
|
| 174 | emake "$@" || die "Make failed!" |
|
|
| 175 | fi |
|
|
| 176 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
| 177 | popd > /dev/null |
|
|
| 178 | fi |
|
|
| 179 | } |
534 | } |
| 180 | |
535 | |
| 181 | # @FUNCTION: cmake-utils_src_install |
536 | # @FUNCTION: cmake-utils_src_install |
| 182 | # @DESCRIPTION: |
537 | # @DESCRIPTION: |
| 183 | # Function for installing the package. Automatically detects the build type. |
538 | # Function for installing the package. Automatically detects the build type. |
| 184 | cmake-utils_src_install() { |
539 | cmake-utils_src_install() { |
| 185 | debug-print-function $FUNCNAME $* |
540 | _execute_optionaly "src_install" "$@" |
| 186 | |
|
|
| 187 | # At this point we can automatically check if it's an out-of-source or an |
|
|
| 188 | # in-source build |
|
|
| 189 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
| 190 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
| 191 | fi |
|
|
| 192 | emake install DESTDIR="${D}" || die "Make install failed" |
|
|
| 193 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
| 194 | popd > /dev/null |
|
|
| 195 | fi |
|
|
| 196 | |
|
|
| 197 | # Manual document installation |
|
|
| 198 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
|
|
| 199 | } |
541 | } |
| 200 | |
542 | |
| 201 | # @FUNCTION: cmake-utils_src_test |
543 | # @FUNCTION: cmake-utils_src_test |
| 202 | # @DESCRIPTION: |
544 | # @DESCRIPTION: |
| 203 | # Function for testing the package. Automatically detects the build type. |
545 | # Function for testing the package. Automatically detects the build type. |
| 204 | cmake-utils_src_test() { |
546 | cmake-utils_src_test() { |
| 205 | debug-print-function $FUNCNAME $* |
547 | _execute_optionaly "src_test" "$@" |
|
|
548 | } |
| 206 | |
549 | |
| 207 | # At this point we can automatically check if it's an out-of-source or an |
550 | # Optionally executes phases based on WANT_CMAKE variable/USE flag. |
| 208 | # in-source build |
551 | _execute_optionaly() { |
| 209 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
552 | local phase="$1" ; shift |
| 210 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
553 | if [[ ${WANT_CMAKE} = always ]]; then |
| 211 | fi |
554 | enable_cmake-utils_${phase} "$@" |
| 212 | # Standard implementation of src_test |
555 | else |
| 213 | if emake -j1 check -n &> /dev/null; then |
556 | use ${WANT_CMAKE} && enable_cmake-utils_${phase} "$@" |
| 214 | einfo ">>> Test phase [check]: ${CATEGORY}/${PF}" |
|
|
| 215 | if ! emake -j1 check; then |
|
|
| 216 | die "Make check failed. See above for details." |
|
|
| 217 | fi |
557 | fi |
| 218 | elif emake -j1 test -n &> /dev/null; then |
|
|
| 219 | einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" |
|
|
| 220 | if ! emake -j1 test; then |
|
|
| 221 | die "Make test failed. See above for details." |
|
|
| 222 | fi |
|
|
| 223 | else |
|
|
| 224 | einfo ">>> Test phase [none]: ${CATEGORY}/${PF}" |
|
|
| 225 | fi |
|
|
| 226 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
| 227 | popd > /dev/null |
|
|
| 228 | fi |
|
|
| 229 | } |
558 | } |