| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2009 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.27 2009/05/27 14:34:33 scarabeus Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: cmake-utils.eclass |
5 | # @ECLASS: cmake-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
|
|
8 | # |
|
|
9 | # @CODE |
|
|
10 | # Tomáš Chvátal <scarabeus@gentoo.org> |
|
|
11 | # Maciej Mrozowski <reavertm@poczta.fm> |
|
|
12 | # (undisclosed contributors) |
|
|
13 | # Original author: Zephyrus (zephyrus@mirach.it) |
|
|
14 | # @CODE |
| 8 | # @BLURB: common ebuild functions for cmake-based packages |
15 | # @BLURB: common ebuild functions for cmake-based packages |
| 9 | # @DESCRIPTION: |
16 | # @DESCRIPTION: |
| 10 | # The cmake-utils eclass contains functions that make creating ebuilds for |
17 | # The cmake-utils eclass contains functions that make creating ebuilds for |
| 11 | # cmake-based packages much easier. |
18 | # cmake-based packages much easier. |
| 12 | # Its main features are support of out-of-source builds as well as in-source |
19 | # Its main features are support of out-of-source builds as well as in-source |
| 13 | # builds and an implementation of the well-known use_enable and use_with |
20 | # builds and an implementation of the well-known use_enable and use_with |
| 14 | # functions for CMake. |
21 | # functions for CMake. |
| 15 | |
22 | |
| 16 | # Original author: Zephyrus (zephyrus@mirach.it) |
|
|
| 17 | |
|
|
| 18 | inherit toolchain-funcs multilib |
23 | inherit toolchain-funcs multilib flag-o-matic base |
| 19 | |
24 | |
| 20 | DESCRIPTION="Based on the ${ECLASS} eclass" |
25 | EXPF="src_compile src_test src_install" |
| 21 | |
|
|
| 22 | DEPEND=">=dev-util/cmake-2.4.6" |
|
|
| 23 | |
|
|
| 24 | case ${EAPI} in |
26 | case ${EAPI:-0} in |
| 25 | 2) |
27 | 2) EXPF="${EXPF} src_configure" ;; |
| 26 | EXPORT_FUNCTIONS src_configure src_compile src_test src_install |
28 | 1|0) ;; |
| 27 | ;; |
29 | *) die "Unknown EAPI, Bug eclass maintainers." ;; |
| 28 | *) |
|
|
| 29 | EXPORT_FUNCTIONS src_compile src_test src_install |
|
|
| 30 | ;; |
|
|
| 31 | esac |
30 | esac |
|
|
31 | EXPORT_FUNCTIONS ${EXPF} |
| 32 | |
32 | |
|
|
33 | : ${DESCRIPTION:="Based on the ${ECLASS} eclass"} |
| 33 | |
34 | |
| 34 | # Internal function use by cmake-utils_use_with and cmake-utils_use_enable |
35 | if [[ ${PN} != cmake ]]; then |
|
|
36 | CMAKEDEPEND=">=dev-util/cmake-2.6.2-r1" |
|
|
37 | fi |
|
|
38 | |
|
|
39 | DEPEND="${CMAKEDEPEND} |
|
|
40 | userland_GNU? ( >=sys-apps/findutils-4.4.0 ) |
|
|
41 | " |
|
|
42 | |
|
|
43 | # Internal functions used by cmake-utils_use_* |
| 35 | _use_me_now() { |
44 | _use_me_now() { |
| 36 | debug-print-function $FUNCNAME $* |
45 | debug-print-function ${FUNCNAME} "$@" |
|
|
46 | |
|
|
47 | local uper capitalised x |
| 37 | [[ -z $2 ]] && die "cmake-utils_use-$1 <USE flag> [<flag name>]" |
48 | [[ -z $2 ]] && die "cmake-utils_use-$1 <USE flag> [<flag name>]" |
|
|
49 | if [[ ! -z $3 ]]; then |
|
|
50 | # user specified the use name so use it |
| 38 | echo "-D$1_${3:-$2}=$(use $2 && echo ON || echo OFF)" |
51 | echo "-D$1$3=$(use $2 && echo ON || echo OFF)" |
|
|
52 | else |
|
|
53 | # use all various most used combinations |
|
|
54 | uper=$(echo ${2} | tr '[:lower:]' '[:upper:]') |
|
|
55 | capitalised=$(echo ${2} | sed 's/\<\(.\)\([^ ]*\)/\u\1\L\2/g') |
|
|
56 | for x in $2 $uper $capitalised; do |
|
|
57 | echo "-D$1$x=$(use $2 && echo ON || echo OFF) " |
|
|
58 | done |
|
|
59 | fi |
| 39 | } |
60 | } |
|
|
61 | _use_me_now_inverted() { |
|
|
62 | debug-print-function ${FUNCNAME} "$@" |
| 40 | |
63 | |
|
|
64 | local uper capitalised x |
|
|
65 | [[ -z $2 ]] && die "cmake-utils_use-$1 <USE flag> [<flag name>]" |
|
|
66 | if [[ ! -z $3 ]]; then |
|
|
67 | # user specified the use name so use it |
|
|
68 | echo "-D$1$3=$(use $2 && echo OFF || echo ON)" |
|
|
69 | else |
|
|
70 | # use all various most used combinations |
|
|
71 | uper=$(echo ${2} | tr '[:lower:]' '[:upper:]') |
|
|
72 | capitalised=$(echo ${2} | sed 's/\<\(.\)\([^ ]*\)/\u\1\L\2/g') |
|
|
73 | for x in $2 $uper $capitalised; do |
|
|
74 | echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
|
|
75 | done |
|
|
76 | fi |
|
|
77 | } |
|
|
78 | |
| 41 | # @VARIABLE: DOCS |
79 | # @ECLASS-VARIABLE: DOCS |
|
|
80 | # @DESCRIPTION: |
|
|
81 | # Documents passed to dodoc command. |
|
|
82 | |
|
|
83 | # @ECLASS-VARIABLE: HTML_DOCS |
|
|
84 | # @DESCRIPTION: |
|
|
85 | # Documents passed to dohtml command. |
|
|
86 | |
|
|
87 | # @ECLASS-VARIABLE: PREFIX |
|
|
88 | # @DESCRIPTION: |
|
|
89 | # Eclass respects PREFIX variable, though it's not recommended way to set |
|
|
90 | # install/lib/bin prefixes. |
|
|
91 | # Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
|
|
92 | |
|
|
93 | # @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
|
|
94 | # @DESCRIPTION: |
|
|
95 | # Set to enable in-source build. |
|
|
96 | |
|
|
97 | # @ECLASS-VARIABLE: CMAKE_NO_COLOR |
|
|
98 | # @DESCRIPTION: |
|
|
99 | # Set to disable cmake output coloring. |
|
|
100 | |
|
|
101 | # @ECLASS-VARIABLE: CMAKE_VERBOSE |
|
|
102 | # @DESCRIPTION: |
|
|
103 | # Set to enable verbose messages during compilation. |
|
|
104 | |
|
|
105 | # @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
|
|
106 | # @DESCRIPTION: |
|
|
107 | # Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
|
|
108 | # known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
|
|
109 | # If about to be set - needs to be set before invoking cmake-utils_src_configure. |
|
|
110 | # You usualy do *NOT* want nor need to set it as it pulls CMake default build-type |
|
|
111 | # specific compiler flags overriding make.conf. |
|
|
112 | : ${CMAKE_BUILD_TYPE:=Gentoo} |
|
|
113 | |
|
|
114 | # @FUNCTION: _check_build_dir |
|
|
115 | # @DESCRIPTION: |
|
|
116 | # Determine using IN or OUT source build |
|
|
117 | _check_build_dir() { |
|
|
118 | # @ECLASS-VARIABLE: CMAKE_USE_DIR |
| 42 | # @DESCRIPTION: |
119 | # @DESCRIPTION: |
| 43 | # Documents to dodoc |
120 | # Sets the directory where we are working with cmake. |
|
|
121 | # For example when application uses autotools and only one |
|
|
122 | # plugin needs to be done by cmake. |
|
|
123 | # By default it uses ${S}. |
|
|
124 | : ${CMAKE_USE_DIR:=${S}} |
| 44 | |
125 | |
|
|
126 | # @ECLASS-VARIABLE: CMAKE_BUILD_DIR |
|
|
127 | # @DESCRIPTION: |
|
|
128 | # Specify the build directory where all cmake processed |
|
|
129 | # files should be located. |
|
|
130 | # |
|
|
131 | # For installing binary doins "${CMAKE_BUILD_DIR}/${PN}" |
|
|
132 | if [[ -n "${CMAKE_IN_SOURCE_BUILD}" ]]; then |
|
|
133 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
|
|
134 | else |
|
|
135 | CMAKE_BUILD_DIR="${CMAKE_USE_DIR}_build" |
|
|
136 | fi |
|
|
137 | echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
|
|
138 | } |
| 45 | # @FUNCTION: cmake-utils_use_with |
139 | # @FUNCTION: cmake-utils_use_with |
| 46 | # @USAGE: <USE flag> [flag name] |
140 | # @USAGE: <USE flag> [flag name] |
| 47 | # @DESCRIPTION: |
141 | # @DESCRIPTION: |
| 48 | # Based on use_with. See ebuild(5). |
142 | # Based on use_with. See ebuild(5). |
| 49 | # |
143 | # |
| 50 | # `cmake-utils_use_with foo FOO` echoes -DWITH_FOO=ON if foo is enabled |
144 | # `cmake-utils_use_with foo FOO` echoes -DWITH_FOO=ON if foo is enabled |
| 51 | # and -DWITH_FOO=OFF if it is disabled. |
145 | # and -DWITH_FOO=OFF if it is disabled. |
| 52 | cmake-utils_use_with() { _use_me_now WITH "$@" ; } |
146 | cmake-utils_use_with() { _use_me_now WITH_ "$@" ; } |
| 53 | |
147 | |
| 54 | # @FUNCTION: cmake-utils_use_enable |
148 | # @FUNCTION: cmake-utils_use_enable |
| 55 | # @USAGE: <USE flag> [flag name] |
149 | # @USAGE: <USE flag> [flag name] |
| 56 | # @DESCRIPTION: |
150 | # @DESCRIPTION: |
| 57 | # Based on use_enable. See ebuild(5). |
151 | # Based on use_enable. See ebuild(5). |
| 58 | # |
152 | # |
| 59 | # `cmake-utils_use_enable foo FOO` echoes -DENABLE_FOO=ON if foo is enabled |
153 | # `cmake-utils_use_enable foo FOO` echoes -DENABLE_FOO=ON if foo is enabled |
| 60 | # and -DENABLE_FOO=OFF if it is disabled. |
154 | # and -DENABLE_FOO=OFF if it is disabled. |
| 61 | cmake-utils_use_enable() { _use_me_now ENABLE "$@" ; } |
155 | cmake-utils_use_enable() { _use_me_now ENABLE_ "$@" ; } |
|
|
156 | |
|
|
157 | # @FUNCTION: cmake-utils_use_disable |
|
|
158 | # @USAGE: <USE flag> [flag name] |
|
|
159 | # @DESCRIPTION: |
|
|
160 | # Based on inversion of use_enable. See ebuild(5). |
|
|
161 | # |
|
|
162 | # `cmake-utils_use_enable foo FOO` echoes -DDISABLE_FOO=OFF if foo is enabled |
|
|
163 | # and -DDISABLE_FOO=ON if it is disabled. |
|
|
164 | cmake-utils_use_disable() { _use_me_now_inverted DISABLE_ "$@" ; } |
|
|
165 | |
|
|
166 | # @FUNCTION: cmake-utils_use_no |
|
|
167 | # @USAGE: <USE flag> [flag name] |
|
|
168 | # @DESCRIPTION: |
|
|
169 | # Based on use_disable. See ebuild(5). |
|
|
170 | # |
|
|
171 | # `cmake-utils_use_no foo FOO` echoes -DNO_FOO=OFF if foo is enabled |
|
|
172 | # and -DNO_FOO=ON if it is disabled. |
|
|
173 | cmake-utils_use_no() { _use_me_now_inverted NO_ "$@" ; } |
| 62 | |
174 | |
| 63 | # @FUNCTION: cmake-utils_use_want |
175 | # @FUNCTION: cmake-utils_use_want |
| 64 | # @USAGE: <USE flag> [flag name] |
176 | # @USAGE: <USE flag> [flag name] |
| 65 | # @DESCRIPTION: |
177 | # @DESCRIPTION: |
| 66 | # Based on use_enable. See ebuild(5). |
178 | # Based on use_enable. See ebuild(5). |
| 67 | # |
179 | # |
| 68 | # `cmake-utils_use_want foo FOO` echoes -DWANT_FOO=ON if foo is enabled |
180 | # `cmake-utils_use_want foo FOO` echoes -DWANT_FOO=ON if foo is enabled |
| 69 | # and -DWANT_FOO=OFF if it is disabled. |
181 | # and -DWANT_FOO=OFF if it is disabled. |
| 70 | cmake-utils_use_want() { _use_me_now WANT "$@" ; } |
182 | cmake-utils_use_want() { _use_me_now WANT_ "$@" ; } |
|
|
183 | |
|
|
184 | # @FUNCTION: cmake-utils_use_build |
|
|
185 | # @USAGE: <USE flag> [flag name] |
|
|
186 | # @DESCRIPTION: |
|
|
187 | # Based on use_enable. See ebuild(5). |
|
|
188 | # |
|
|
189 | # `cmake-utils_use_build foo FOO` echoes -DBUILD_FOO=ON if foo is enabled |
|
|
190 | # and -DBUILD_FOO=OFF if it is disabled. |
|
|
191 | cmake-utils_use_build() { _use_me_now BUILD_ "$@" ; } |
|
|
192 | |
|
|
193 | # @FUNCTION: cmake-utils_use_has |
|
|
194 | # @USAGE: <USE flag> [flag name] |
|
|
195 | # @DESCRIPTION: |
|
|
196 | # Based on use_enable. See ebuild(5). |
|
|
197 | # |
|
|
198 | # `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
|
|
199 | # and -DHAVE_FOO=OFF if it is disabled. |
|
|
200 | cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
| 71 | |
201 | |
| 72 | # @FUNCTION: cmake-utils_has |
202 | # @FUNCTION: cmake-utils_has |
| 73 | # @USAGE: <USE flag> [flag name] |
|
|
| 74 | # @DESCRIPTION: |
203 | # @DESCRIPTION: |
|
|
204 | # Deprecated, use cmake-utils_use_has, kept now for backcompat. |
|
|
205 | cmake-utils_has() { ewarn "QA notice: using deprecated ${FUNCNAME} call, use cmake-utils_use_has instead." ; _use_me_now HAVE_ "$@" ; } |
|
|
206 | |
|
|
207 | # @FUNCTION: cmake-utils_use |
|
|
208 | # @USAGE: <USE flag> [flag name] |
|
|
209 | # @DESCRIPTION: |
| 75 | # Based on use_enable. See ebuild(5). |
210 | # Based on use_enable. See ebuild(5). |
| 76 | # |
211 | # |
| 77 | # `cmake-utils_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
212 | # `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
| 78 | # and -DHAVE_FOO=OFF if it is disabled. |
213 | # and -DFOO=OFF if it is disabled. |
| 79 | cmake-utils_has() { _use_me_now HAVE "$@" ; } |
214 | cmake-utils_use() { _use_me_now "" "$@" ; } |
|
|
215 | |
|
|
216 | # Internal function for modifying hardcoded definitions. |
|
|
217 | # Removes dangerous definitionts that override Gentoo settings. |
|
|
218 | _modify-cmakelists() { |
|
|
219 | debug-print-function ${FUNCNAME} "$@" |
|
|
220 | |
|
|
221 | # Comment out all set (<some_should_be_user_defined_variable> value) |
|
|
222 | # TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
|
|
223 | find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
|
|
224 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
225 | -exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
|
|
226 | || die "${LINENO}: failed to disable hardcoded settings" |
|
|
227 | |
|
|
228 | # NOTE Append some useful summary here |
|
|
229 | echo ' |
|
|
230 | MESSAGE(STATUS "<<< Gentoo configuration >>> |
|
|
231 | Build type: ${CMAKE_BUILD_TYPE} |
|
|
232 | Install path: ${CMAKE_INSTALL_PREFIX}\n")' >> CMakeLists.txt |
|
|
233 | } |
| 80 | |
234 | |
| 81 | # @FUNCTION: cmake-utils_src_configure |
235 | # @FUNCTION: cmake-utils_src_configure |
| 82 | # @DESCRIPTION: |
236 | # @DESCRIPTION: |
| 83 | # General function for configuring with cmake. Default behaviour is to start an |
237 | # General function for configuring with cmake. Default behaviour is to start an |
| 84 | # out-of-source build. |
238 | # out-of-source build. |
| 85 | cmake-utils_src_configure() { |
239 | cmake-utils_src_configure() { |
| 86 | debug-print-function $FUNCNAME $* |
240 | debug-print-function ${FUNCNAME} "$@" |
| 87 | |
241 | |
|
|
242 | _check_build_dir |
|
|
243 | |
|
|
244 | # check if CMakeLists.txt exist and if no then die |
|
|
245 | if [[ ! -e "${CMAKE_USE_DIR}"/CMakeLists.txt ]] ; then |
|
|
246 | eerror "I was unable to locate CMakeLists.txt under:" |
|
|
247 | eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
|
|
248 | eerror "You should consider not inheriting the cmake eclass." |
|
|
249 | die "FATAL: Unable to find CMakeLists.txt" |
|
|
250 | fi |
|
|
251 | |
|
|
252 | # Remove dangerous things. |
|
|
253 | _modify-cmakelists |
|
|
254 | |
|
|
255 | # @SEE CMAKE_BUILD_TYPE |
|
|
256 | if [[ ${CMAKE_BUILD_TYPE} = Gentoo ]]; then |
|
|
257 | # Handle release builds |
| 88 | if ! has debug ${IUSE//+} || ! use debug ; then |
258 | if ! has debug ${IUSE//+} || ! use debug; then |
| 89 | append-cppflags -DNDEBUG |
259 | append-cppflags -DNDEBUG |
| 90 | fi |
260 | fi |
| 91 | |
|
|
| 92 | if [[ -n "${CMAKE_IN_SOURCE_BUILD}" ]]; then |
|
|
| 93 | cmake-utils_src_configurein |
|
|
| 94 | else |
|
|
| 95 | cmake-utils_src_configureout |
|
|
| 96 | fi |
261 | fi |
|
|
262 | |
|
|
263 | # Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
|
|
264 | local build_rules="${TMPDIR}"/gentoo_rules.cmake |
|
|
265 | cat > ${build_rules} << _EOF_ |
|
|
266 | SET (CMAKE_C_COMPILER $(type -P $(tc-getCC)) CACHE FILEPATH "C compiler" FORCE) |
|
|
267 | SET (CMAKE_C_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C compile command" FORCE) |
|
|
268 | SET (CMAKE_CXX_COMPILER $(type -P $(tc-getCXX)) CACHE FILEPATH "C++ compiler" FORCE) |
|
|
269 | SET (CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C++ compile command" FORCE) |
|
|
270 | _EOF_ |
|
|
271 | |
|
|
272 | # Common configure parameters (overridable) |
|
|
273 | # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
|
|
274 | # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
|
|
275 | local cmakeargs=" |
|
|
276 | -DCMAKE_INSTALL_PREFIX=${PREFIX:-/usr} |
|
|
277 | ${mycmakeargs} |
|
|
278 | -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} |
|
|
279 | -DCMAKE_INSTALL_DO_STRIP=OFF |
|
|
280 | -DCMAKE_USER_MAKE_RULES_OVERRIDE=${build_rules}" |
|
|
281 | |
|
|
282 | # Common configure parameters (invariants) |
|
|
283 | local common_config="${TMPDIR}"/gentoo_common_config.cmake |
|
|
284 | local libdir=$(get_libdir) |
|
|
285 | cat > ${common_config} << _EOF_ |
|
|
286 | SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
|
|
287 | _EOF_ |
|
|
288 | [[ -n ${CMAKE_NO_COLOR} ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> ${common_config} |
|
|
289 | cmakeargs="-C ${common_config} ${cmakeargs}" |
|
|
290 | |
|
|
291 | mkdir -p "${CMAKE_BUILD_DIR}" |
|
|
292 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
|
|
293 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is $cmakeargs" |
|
|
294 | cmake ${cmakeargs} "${CMAKE_USE_DIR}" || die "cmake failed" |
|
|
295 | |
|
|
296 | popd > /dev/null |
| 97 | } |
297 | } |
| 98 | |
298 | |
| 99 | # @FUNCTION: cmake-utils_src_compile |
299 | # @FUNCTION: cmake-utils_src_compile |
| 100 | # @DESCRIPTION: |
300 | # @DESCRIPTION: |
| 101 | # General function for compiling with cmake. Default behaviour is to check for |
301 | # General function for compiling with cmake. Default behaviour is to check for |
| 102 | # eapi and based on it configure or only compile |
302 | # EAPI and respectively to configure as well or just compile. |
| 103 | cmake-utils_src_compile() { |
303 | cmake-utils_src_compile() { |
| 104 | case ${EAPI} in |
304 | debug-print-function ${FUNCNAME} "$@" |
| 105 | 2) |
|
|
| 106 | ;; |
|
|
| 107 | *) |
|
|
| 108 | cmake-utils_src_configure |
|
|
| 109 | ;; |
|
|
| 110 | esac |
|
|
| 111 | |
305 | |
|
|
306 | has src_configure ${EXPF} || cmake-utils_src_configure |
| 112 | cmake-utils_src_make "$@" |
307 | cmake-utils_src_make "$@" |
| 113 | } |
308 | } |
| 114 | |
309 | |
| 115 | # @FUNCTION: cmake-utils_src_configurein |
310 | # @FUNCTION: cmake-utils_src_configurein |
| 116 | # @DESCRIPTION: |
311 | # @DESCRIPTION: |
| 117 | # Function for software that requires configure and building in the source |
312 | # Deprecated |
| 118 | # directory. |
|
|
| 119 | cmake-utils_src_configurein() { |
313 | cmake-utils_src_configurein() { |
| 120 | debug-print-function $FUNCNAME $* |
314 | ewarn "QA notice: using deprecated ${FUNCNAME} call, set CMAKE_IN_SOURCE_BUILD=1 instead." |
| 121 | |
315 | cmake-utils_src_configure |
| 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 | } |
316 | } |
| 127 | |
317 | |
| 128 | # @FUNCTION: cmake-utils_src_configureout |
318 | # @FUNCTION: cmake-utils_src_configureout |
| 129 | # @DESCRIPTION: |
319 | # @DESCRIPTION: |
| 130 | # Function for software that requires configure and building outside the source |
320 | # Deprecated |
| 131 | # tree - default. |
|
|
| 132 | cmake-utils_src_configureout() { |
321 | cmake-utils_src_configureout() { |
| 133 | debug-print-function $FUNCNAME $* |
322 | ewarn "QA notice: using deprecated ${FUNCNAME} call, out of source build is enabled by default." |
| 134 | |
323 | cmake-utils_src_configure |
| 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 | } |
324 | } |
| 157 | |
325 | |
| 158 | # @FUNCTION: cmake-utils_src_make |
326 | # @FUNCTION: cmake-utils_src_make |
| 159 | # @DESCRIPTION: |
327 | # @DESCRIPTION: |
| 160 | # Function for building the package. Automatically detects the build type. |
328 | # Function for building the package. Automatically detects the build type. |
| 161 | # All arguments are passed to emake: |
329 | # 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() { |
330 | cmake-utils_src_make() { |
| 164 | debug-print-function $FUNCNAME $* |
331 | debug-print-function ${FUNCNAME} "$@" |
| 165 | |
332 | |
| 166 | # At this point we can automatically check if it's an out-of-source or an |
333 | _check_build_dir |
| 167 | # in-source build |
334 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 168 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
335 | # first check if Makefile exist otherwise die |
| 169 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
336 | [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
| 170 | fi |
|
|
| 171 | if ! [[ -z ${CMAKE_COMPILER_VERBOSE} ]]; then |
337 | if [[ -n ${CMAKE_VERBOSE} ]]; then |
| 172 | emake VERBOSE=1 "$@" || die "Make failed!" |
338 | emake VERBOSE=1 "$@" || die "Make failed!" |
| 173 | else |
339 | else |
| 174 | emake "$@" || die "Make failed!" |
340 | emake "$@" || die "Make failed!" |
| 175 | fi |
341 | fi |
| 176 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
| 177 | popd > /dev/null |
342 | popd > /dev/null |
| 178 | fi |
|
|
| 179 | } |
343 | } |
| 180 | |
344 | |
| 181 | # @FUNCTION: cmake-utils_src_install |
345 | # @FUNCTION: cmake-utils_src_install |
| 182 | # @DESCRIPTION: |
346 | # @DESCRIPTION: |
| 183 | # Function for installing the package. Automatically detects the build type. |
347 | # Function for installing the package. Automatically detects the build type. |
| 184 | cmake-utils_src_install() { |
348 | cmake-utils_src_install() { |
| 185 | debug-print-function $FUNCNAME $* |
349 | debug-print-function ${FUNCNAME} "$@" |
| 186 | |
350 | |
| 187 | # At this point we can automatically check if it's an out-of-source or an |
351 | _check_build_dir |
| 188 | # in-source build |
352 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 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" |
353 | emake install DESTDIR="${D}" || die "Make install failed" |
| 193 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
| 194 | popd > /dev/null |
354 | popd > /dev/null |
| 195 | fi |
|
|
| 196 | |
355 | |
| 197 | # Manual document installation |
356 | # Manual document installation |
| 198 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
357 | [[ -n "${DOCS}" ]] && { dodoc ${DOCS} || die "dodoc failed" ; } |
|
|
358 | [[ -n "${HTML_DOCS}" ]] && { dohtml -r ${HTML_DOCS} || die "dohtml failed" ; } |
| 199 | } |
359 | } |
| 200 | |
360 | |
| 201 | # @FUNCTION: cmake-utils_src_test |
361 | # @FUNCTION: cmake-utils_src_test |
| 202 | # @DESCRIPTION: |
362 | # @DESCRIPTION: |
| 203 | # Function for testing the package. Automatically detects the build type. |
363 | # Function for testing the package. Automatically detects the build type. |
| 204 | cmake-utils_src_test() { |
364 | cmake-utils_src_test() { |
| 205 | debug-print-function $FUNCNAME $* |
365 | debug-print-function ${FUNCNAME} "$@" |
| 206 | |
366 | |
| 207 | # At this point we can automatically check if it's an out-of-source or an |
367 | _check_build_dir |
| 208 | # in-source build |
368 | pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 209 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
| 210 | pushd "${WORKDIR}"/${PN}_build > /dev/null |
|
|
| 211 | fi |
|
|
| 212 | # Standard implementation of src_test |
369 | # Standard implementation of src_test |
| 213 | if emake -j1 check -n &> /dev/null; then |
370 | if emake -j1 check -n &> /dev/null; then |
| 214 | einfo ">>> Test phase [check]: ${CATEGORY}/${PF}" |
371 | einfo ">>> Test phase [check]: ${CATEGORY}/${PF}" |
| 215 | if ! emake -j1 check; then |
372 | if ! emake -j1 check; then |
| 216 | die "Make check failed. See above for details." |
373 | die "Make check failed. See above for details." |
| … | |
… | |
| 221 | die "Make test failed. See above for details." |
378 | die "Make test failed. See above for details." |
| 222 | fi |
379 | fi |
| 223 | else |
380 | else |
| 224 | einfo ">>> Test phase [none]: ${CATEGORY}/${PF}" |
381 | einfo ">>> Test phase [none]: ${CATEGORY}/${PF}" |
| 225 | fi |
382 | fi |
| 226 | if [[ -d ${WORKDIR}/${PN}_build ]]; then |
|
|
| 227 | popd > /dev/null |
383 | popd > /dev/null |
| 228 | fi |
|
|
| 229 | } |
384 | } |