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