| 1 |
# Copyright 1999-2012 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.79 2012/05/08 21:27:10 dilfridge Exp $ |
| 4 |
|
| 5 |
# @ECLASS: cmake-utils.eclass |
| 6 |
# @MAINTAINER: |
| 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) |
| 13 |
# @BLURB: common ebuild functions for cmake-based packages |
| 14 |
# @DESCRIPTION: |
| 15 |
# The cmake-utils eclass is base.eclass(5) wrapper that makes creating ebuilds for |
| 16 |
# cmake-based packages much easier. |
| 17 |
# It provides all inherited features (DOCS, HTML_DOCS, PATCHES) along with out-of-source |
| 18 |
# builds (default), in-source builds and an implementation of the well-known use_enable |
| 19 |
# and use_with functions for CMake. |
| 20 |
|
| 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}" |
| 28 |
|
| 29 |
# @ECLASS-VARIABLE: CMAKE_MIN_VERSION |
| 30 |
# @DESCRIPTION: |
| 31 |
# Specify the minimum required CMake version. Default is 2.8.4 |
| 32 |
CMAKE_MIN_VERSION="${CMAKE_MIN_VERSION:-2.8.4}" |
| 33 |
|
| 34 |
# @ECLASS-VARIABLE: CMAKE_REMOVE_MODULES_LIST |
| 35 |
# @DESCRIPTION: |
| 36 |
# Space-separated list of CMake modules that will be removed in $S during src_prepare, |
| 37 |
# in order to force packages to use the system version. |
| 38 |
CMAKE_REMOVE_MODULES_LIST="${CMAKE_REMOVE_MODULES_LIST:-FindBLAS FindLAPACK}" |
| 39 |
|
| 40 |
# @ECLASS-VARIABLE: CMAKE_REMOVE_MODULES |
| 41 |
# @DESCRIPTION: |
| 42 |
# Do we want to remove anything? yes or whatever else for no |
| 43 |
CMAKE_REMOVE_MODULES="${CMAKE_REMOVE_MODULES:-yes}" |
| 44 |
|
| 45 |
CMAKEDEPEND="" |
| 46 |
case ${WANT_CMAKE} in |
| 47 |
always) |
| 48 |
;; |
| 49 |
*) |
| 50 |
IUSE+=" ${WANT_CMAKE}" |
| 51 |
CMAKEDEPEND+="${WANT_CMAKE}? ( " |
| 52 |
;; |
| 53 |
esac |
| 54 |
inherit toolchain-funcs multilib flag-o-matic base |
| 55 |
|
| 56 |
CMAKE_EXPF="src_compile src_test src_install" |
| 57 |
case ${EAPI:-0} in |
| 58 |
4|3|2) CMAKE_EXPF+=" src_configure" ;; |
| 59 |
1|0) ;; |
| 60 |
*) die "Unknown EAPI, Bug eclass maintainers." ;; |
| 61 |
esac |
| 62 |
EXPORT_FUNCTIONS ${CMAKE_EXPF} |
| 63 |
|
| 64 |
if [[ ${PN} != cmake ]]; then |
| 65 |
CMAKEDEPEND+=" >=dev-util/cmake-${CMAKE_MIN_VERSION}" |
| 66 |
fi |
| 67 |
|
| 68 |
CMAKEDEPEND+=" userland_GNU? ( >=sys-apps/findutils-4.4.0 )" |
| 69 |
|
| 70 |
[[ ${WANT_CMAKE} = always ]] || CMAKEDEPEND+=" )" |
| 71 |
|
| 72 |
DEPEND="${CMAKEDEPEND}" |
| 73 |
unset CMAKEDEPEND |
| 74 |
|
| 75 |
# Internal functions used by cmake-utils_use_* |
| 76 |
_use_me_now() { |
| 77 |
debug-print-function ${FUNCNAME} "$@" |
| 78 |
|
| 79 |
local uper capitalised x |
| 80 |
[[ -z $2 ]] && die "cmake-utils_use-$1 <USE flag> [<flag name>]" |
| 81 |
if [[ ! -z $3 ]]; then |
| 82 |
# user specified the use name so use it |
| 83 |
echo "-D$1$3=$(use $2 && echo ON || echo OFF)" |
| 84 |
else |
| 85 |
# use all various most used combinations |
| 86 |
uper=$(echo ${2} | tr '[:lower:]' '[:upper:]') |
| 87 |
capitalised=$(echo ${2} | sed 's/\<\(.\)\([^ ]*\)/\u\1\L\2/g') |
| 88 |
for x in $2 $uper $capitalised; do |
| 89 |
echo "-D$1$x=$(use $2 && echo ON || echo OFF) " |
| 90 |
done |
| 91 |
fi |
| 92 |
} |
| 93 |
_use_me_now_inverted() { |
| 94 |
debug-print-function ${FUNCNAME} "$@" |
| 95 |
|
| 96 |
local uper capitalised x |
| 97 |
[[ -z $2 ]] && die "cmake-utils_use-$1 <USE flag> [<flag name>]" |
| 98 |
if [[ ! -z $3 ]]; then |
| 99 |
# user specified the use name so use it |
| 100 |
echo "-D$1$3=$(use $2 && echo OFF || echo ON)" |
| 101 |
else |
| 102 |
# use all various most used combinations |
| 103 |
uper=$(echo ${2} | tr '[:lower:]' '[:upper:]') |
| 104 |
capitalised=$(echo ${2} | sed 's/\<\(.\)\([^ ]*\)/\u\1\L\2/g') |
| 105 |
for x in $2 $uper $capitalised; do |
| 106 |
echo "-D$1$x=$(use $2 && echo OFF || echo ON) " |
| 107 |
done |
| 108 |
fi |
| 109 |
} |
| 110 |
|
| 111 |
# @ECLASS-VARIABLE: CMAKE_BUILD_DIR |
| 112 |
# @DESCRIPTION: |
| 113 |
# Build directory where all cmake processed files should be generated. |
| 114 |
# For in-source build it's fixed to ${CMAKE_USE_DIR}. |
| 115 |
# For out-of-source build it can be overriden, by default it uses |
| 116 |
# ${WORKDIR}/${P}_build. |
| 117 |
|
| 118 |
# @ECLASS-VARIABLE: CMAKE_BUILD_TYPE |
| 119 |
# @DESCRIPTION: |
| 120 |
# Set to override default CMAKE_BUILD_TYPE. Only useful for packages |
| 121 |
# known to make use of "if (CMAKE_BUILD_TYPE MATCHES xxx)". |
| 122 |
# If about to be set - needs to be set before invoking cmake-utils_src_configure. |
| 123 |
# You usualy do *NOT* want nor need to set it as it pulls CMake default build-type |
| 124 |
# specific compiler flags overriding make.conf. |
| 125 |
: ${CMAKE_BUILD_TYPE:=Gentoo} |
| 126 |
|
| 127 |
# @ECLASS-VARIABLE: CMAKE_IN_SOURCE_BUILD |
| 128 |
# @DESCRIPTION: |
| 129 |
# Set to enable in-source build. |
| 130 |
|
| 131 |
# @ECLASS-VARIABLE: CMAKE_USE_DIR |
| 132 |
# @DESCRIPTION: |
| 133 |
# Sets the directory where we are working with cmake. |
| 134 |
# For example when application uses autotools and only one |
| 135 |
# plugin needs to be done by cmake. |
| 136 |
# By default it uses ${S}. |
| 137 |
|
| 138 |
# @ECLASS-VARIABLE: CMAKE_VERBOSE |
| 139 |
# @DESCRIPTION: |
| 140 |
# Set to OFF to disable verbose messages during compilation |
| 141 |
: ${CMAKE_VERBOSE:=ON} |
| 142 |
|
| 143 |
# @ECLASS-VARIABLE: PREFIX |
| 144 |
# @DESCRIPTION: |
| 145 |
# Eclass respects PREFIX variable, though it's not recommended way to set |
| 146 |
# install/lib/bin prefixes. |
| 147 |
# Use -DCMAKE_INSTALL_PREFIX=... CMake variable instead. |
| 148 |
: ${PREFIX:=/usr} |
| 149 |
|
| 150 |
# @ECLASS-VARIABLE: CMAKE_BINARY |
| 151 |
# @DESCRIPTION: |
| 152 |
# Eclass can use different cmake binary than the one provided in by system. |
| 153 |
: ${CMAKE_BINARY:=cmake} |
| 154 |
|
| 155 |
# Determine using IN or OUT source build |
| 156 |
_check_build_dir() { |
| 157 |
: ${CMAKE_USE_DIR:=${S}} |
| 158 |
if [[ -n ${CMAKE_IN_SOURCE_BUILD} ]]; then |
| 159 |
# we build in source dir |
| 160 |
CMAKE_BUILD_DIR="${CMAKE_USE_DIR}" |
| 161 |
else |
| 162 |
: ${CMAKE_BUILD_DIR:=${WORKDIR}/${P}_build} |
| 163 |
fi |
| 164 |
mkdir -p "${CMAKE_BUILD_DIR}" |
| 165 |
echo ">>> Working in BUILD_DIR: \"$CMAKE_BUILD_DIR\"" |
| 166 |
} |
| 167 |
# @FUNCTION: cmake-utils_use_with |
| 168 |
# @USAGE: <USE flag> [flag name] |
| 169 |
# @DESCRIPTION: |
| 170 |
# Based on use_with. See ebuild(5). |
| 171 |
# |
| 172 |
# `cmake-utils_use_with foo FOO` echoes -DWITH_FOO=ON if foo is enabled |
| 173 |
# and -DWITH_FOO=OFF if it is disabled. |
| 174 |
cmake-utils_use_with() { _use_me_now WITH_ "$@" ; } |
| 175 |
|
| 176 |
# @FUNCTION: cmake-utils_use_enable |
| 177 |
# @USAGE: <USE flag> [flag name] |
| 178 |
# @DESCRIPTION: |
| 179 |
# Based on use_enable. See ebuild(5). |
| 180 |
# |
| 181 |
# `cmake-utils_use_enable foo FOO` echoes -DENABLE_FOO=ON if foo is enabled |
| 182 |
# and -DENABLE_FOO=OFF if it is disabled. |
| 183 |
cmake-utils_use_enable() { _use_me_now ENABLE_ "$@" ; } |
| 184 |
|
| 185 |
# @FUNCTION: cmake-utils_use_disable |
| 186 |
# @USAGE: <USE flag> [flag name] |
| 187 |
# @DESCRIPTION: |
| 188 |
# Based on inversion of use_enable. See ebuild(5). |
| 189 |
# |
| 190 |
# `cmake-utils_use_enable foo FOO` echoes -DDISABLE_FOO=OFF if foo is enabled |
| 191 |
# and -DDISABLE_FOO=ON if it is disabled. |
| 192 |
cmake-utils_use_disable() { _use_me_now_inverted DISABLE_ "$@" ; } |
| 193 |
|
| 194 |
# @FUNCTION: cmake-utils_use_no |
| 195 |
# @USAGE: <USE flag> [flag name] |
| 196 |
# @DESCRIPTION: |
| 197 |
# Based on use_disable. See ebuild(5). |
| 198 |
# |
| 199 |
# `cmake-utils_use_no foo FOO` echoes -DNO_FOO=OFF if foo is enabled |
| 200 |
# and -DNO_FOO=ON if it is disabled. |
| 201 |
cmake-utils_use_no() { _use_me_now_inverted NO_ "$@" ; } |
| 202 |
|
| 203 |
# @FUNCTION: cmake-utils_use_want |
| 204 |
# @USAGE: <USE flag> [flag name] |
| 205 |
# @DESCRIPTION: |
| 206 |
# Based on use_enable. See ebuild(5). |
| 207 |
# |
| 208 |
# `cmake-utils_use_want foo FOO` echoes -DWANT_FOO=ON if foo is enabled |
| 209 |
# and -DWANT_FOO=OFF if it is disabled. |
| 210 |
cmake-utils_use_want() { _use_me_now WANT_ "$@" ; } |
| 211 |
|
| 212 |
# @FUNCTION: cmake-utils_use_build |
| 213 |
# @USAGE: <USE flag> [flag name] |
| 214 |
# @DESCRIPTION: |
| 215 |
# Based on use_enable. See ebuild(5). |
| 216 |
# |
| 217 |
# `cmake-utils_use_build foo FOO` echoes -DBUILD_FOO=ON if foo is enabled |
| 218 |
# and -DBUILD_FOO=OFF if it is disabled. |
| 219 |
cmake-utils_use_build() { _use_me_now BUILD_ "$@" ; } |
| 220 |
|
| 221 |
# @FUNCTION: cmake-utils_use_has |
| 222 |
# @USAGE: <USE flag> [flag name] |
| 223 |
# @DESCRIPTION: |
| 224 |
# Based on use_enable. See ebuild(5). |
| 225 |
# |
| 226 |
# `cmake-utils_use_has foo FOO` echoes -DHAVE_FOO=ON if foo is enabled |
| 227 |
# and -DHAVE_FOO=OFF if it is disabled. |
| 228 |
cmake-utils_use_has() { _use_me_now HAVE_ "$@" ; } |
| 229 |
|
| 230 |
# @FUNCTION: cmake-utils_use_use |
| 231 |
# @USAGE: <USE flag> [flag name] |
| 232 |
# @DESCRIPTION: |
| 233 |
# Based on use_enable. See ebuild(5). |
| 234 |
# |
| 235 |
# `cmake-utils_use_use foo FOO` echoes -DUSE_FOO=ON if foo is enabled |
| 236 |
# and -DUSE_FOO=OFF if it is disabled. |
| 237 |
cmake-utils_use_use() { _use_me_now USE_ "$@" ; } |
| 238 |
|
| 239 |
# @FUNCTION: cmake-utils_use |
| 240 |
# @USAGE: <USE flag> [flag name] |
| 241 |
# @DESCRIPTION: |
| 242 |
# Based on use_enable. See ebuild(5). |
| 243 |
# |
| 244 |
# `cmake-utils_use foo FOO` echoes -DFOO=ON if foo is enabled |
| 245 |
# and -DFOO=OFF if it is disabled. |
| 246 |
cmake-utils_use() { _use_me_now "" "$@" ; } |
| 247 |
|
| 248 |
# Internal function for modifying hardcoded definitions. |
| 249 |
# Removes dangerous definitions that override Gentoo settings. |
| 250 |
_modify-cmakelists() { |
| 251 |
debug-print-function ${FUNCNAME} "$@" |
| 252 |
|
| 253 |
# Only edit the files once |
| 254 |
grep -qs "<<< Gentoo configuration >>>" CMakeLists.txt && return 0 |
| 255 |
|
| 256 |
# Comment out all set (<some_should_be_user_defined_variable> value) |
| 257 |
# TODO Add QA checker - inform when variable being checked for below is set in CMakeLists.txt |
| 258 |
find "${CMAKE_USE_DIR}" -name CMakeLists.txt \ |
| 259 |
-exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \ |
| 260 |
-exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_COLOR_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \ |
| 261 |
-exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \ |
| 262 |
-exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_VERBOSE_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \ |
| 263 |
|| die "${LINENO}: failed to disable hardcoded settings" |
| 264 |
|
| 265 |
# NOTE Append some useful summary here |
| 266 |
cat >> "${CMAKE_USE_DIR}"/CMakeLists.txt <<- _EOF_ |
| 267 |
|
| 268 |
MESSAGE(STATUS "<<< Gentoo configuration >>> |
| 269 |
Build type \${CMAKE_BUILD_TYPE} |
| 270 |
Install path \${CMAKE_INSTALL_PREFIX} |
| 271 |
Compiler flags: |
| 272 |
C \${CMAKE_C_FLAGS} |
| 273 |
C++ \${CMAKE_CXX_FLAGS} |
| 274 |
Linker flags: |
| 275 |
Executable \${CMAKE_EXE_LINKER_FLAGS} |
| 276 |
Module \${CMAKE_MODULE_LINKER_FLAGS} |
| 277 |
Shared \${CMAKE_SHARED_LINKER_FLAGS}\n") |
| 278 |
_EOF_ |
| 279 |
} |
| 280 |
|
| 281 |
enable_cmake-utils_src_configure() { |
| 282 |
debug-print-function ${FUNCNAME} "$@" |
| 283 |
|
| 284 |
[[ "${CMAKE_REMOVE_MODULES}" == "yes" ]] && { |
| 285 |
local name |
| 286 |
for name in ${CMAKE_REMOVE_MODULES_LIST} ; do |
| 287 |
find "${S}" -name ${name}.cmake -exec rm -v {} + |
| 288 |
done |
| 289 |
} |
| 290 |
|
| 291 |
_check_build_dir |
| 292 |
|
| 293 |
# check if CMakeLists.txt exist and if no then die |
| 294 |
if [[ ! -e ${CMAKE_USE_DIR}/CMakeLists.txt ]] ; then |
| 295 |
eerror "Unable to locate CMakeLists.txt under:" |
| 296 |
eerror "\"${CMAKE_USE_DIR}/CMakeLists.txt\"" |
| 297 |
eerror "Consider not inheriting the cmake eclass." |
| 298 |
die "FATAL: Unable to find CMakeLists.txt" |
| 299 |
fi |
| 300 |
|
| 301 |
# Remove dangerous things. |
| 302 |
_modify-cmakelists |
| 303 |
|
| 304 |
# Fix xdg collision with sandbox |
| 305 |
export XDG_CONFIG_HOME="${T}" |
| 306 |
|
| 307 |
# @SEE CMAKE_BUILD_TYPE |
| 308 |
if [[ ${CMAKE_BUILD_TYPE} = Gentoo ]]; then |
| 309 |
# Handle release builds |
| 310 |
if ! has debug ${IUSE//+} || ! use debug; then |
| 311 |
append-cppflags -DNDEBUG |
| 312 |
fi |
| 313 |
fi |
| 314 |
|
| 315 |
# Prepare Gentoo override rules (set valid compiler, append CPPFLAGS) |
| 316 |
local build_rules=${CMAKE_BUILD_DIR}/gentoo_rules.cmake |
| 317 |
cat > "${build_rules}" <<- _EOF_ |
| 318 |
SET (CMAKE_C_COMPILER $(type -P $(tc-getCC)) CACHE FILEPATH "C compiler" FORCE) |
| 319 |
SET (CMAKE_C_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C compile command" FORCE) |
| 320 |
SET (CMAKE_CXX_COMPILER $(type -P $(tc-getCXX)) CACHE FILEPATH "C++ compiler" FORCE) |
| 321 |
SET (CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> <DEFINES> ${CPPFLAGS} <FLAGS> -o <OBJECT> -c <SOURCE>" CACHE STRING "C++ compile command" FORCE) |
| 322 |
_EOF_ |
| 323 |
|
| 324 |
has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
| 325 |
|
| 326 |
if [[ ${EPREFIX} ]]; then |
| 327 |
cat >> "${build_rules}" <<- _EOF_ |
| 328 |
# in Prefix we need rpath and must ensure cmake gets our default linker path |
| 329 |
# right ... except for Darwin hosts |
| 330 |
IF (NOT APPLE) |
| 331 |
SET (CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
| 332 |
SET (CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH "${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" |
| 333 |
CACHE STRING "" FORCE) |
| 334 |
|
| 335 |
ELSE () |
| 336 |
|
| 337 |
SET(CMAKE_PREFIX_PATH "${EPREFIX}${PREFIX}" CACHE STRING ""FORCE) |
| 338 |
SET(CMAKE_SKIP_BUILD_RPATH OFF CACHE BOOL "" FORCE) |
| 339 |
SET(CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE) |
| 340 |
SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE CACHE BOOL "") |
| 341 |
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) |
| 342 |
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE CACHE BOOL "" FORCE) |
| 343 |
SET(CMAKE_INSTALL_NAME_DIR "${EPREFIX}${PREFIX}/lib" CACHE STRING "" FORCE) |
| 344 |
|
| 345 |
ENDIF (NOT APPLE) |
| 346 |
_EOF_ |
| 347 |
fi |
| 348 |
|
| 349 |
# Common configure parameters (invariants) |
| 350 |
local common_config=${CMAKE_BUILD_DIR}/gentoo_common_config.cmake |
| 351 |
local libdir=$(get_libdir) |
| 352 |
cat > "${common_config}" <<- _EOF_ |
| 353 |
SET (LIB_SUFFIX ${libdir/lib} CACHE STRING "library path suffix" FORCE) |
| 354 |
SET (CMAKE_INSTALL_LIBDIR ${PREFIX}/${libdir} CACHE PATH "Output directory for libraries") |
| 355 |
_EOF_ |
| 356 |
[[ "${NOCOLOR}" = true || "${NOCOLOR}" = yes ]] && echo 'SET (CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> "${common_config}" |
| 357 |
|
| 358 |
# Convert mycmakeargs to an array, for backwards compatibility |
| 359 |
# Make the array a local variable since <=portage-2.1.6.x does not |
| 360 |
# support global arrays (see bug #297255). |
| 361 |
if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
| 362 |
local mycmakeargs_local=(${mycmakeargs}) |
| 363 |
else |
| 364 |
local mycmakeargs_local=("${mycmakeargs[@]}") |
| 365 |
fi |
| 366 |
|
| 367 |
# Common configure parameters (overridable) |
| 368 |
# NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable |
| 369 |
# No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. |
| 370 |
local cmakeargs=( |
| 371 |
--no-warn-unused-cli |
| 372 |
-C "${common_config}" |
| 373 |
-DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}" |
| 374 |
"${mycmakeargs_local[@]}" |
| 375 |
-DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" |
| 376 |
-DCMAKE_INSTALL_DO_STRIP=OFF |
| 377 |
-DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" |
| 378 |
"${MYCMAKEARGS}" |
| 379 |
) |
| 380 |
|
| 381 |
pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 382 |
debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: mycmakeargs is ${mycmakeargs_local[*]}" |
| 383 |
echo "${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" |
| 384 |
"${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed" |
| 385 |
popd > /dev/null |
| 386 |
} |
| 387 |
|
| 388 |
enable_cmake-utils_src_compile() { |
| 389 |
debug-print-function ${FUNCNAME} "$@" |
| 390 |
|
| 391 |
has src_configure ${CMAKE_EXPF} || cmake-utils_src_configure |
| 392 |
cmake-utils_src_make "$@" |
| 393 |
} |
| 394 |
|
| 395 |
# @FUNCTION: cmake-utils_src_make |
| 396 |
# @DESCRIPTION: |
| 397 |
# Function for building the package. Automatically detects the build type. |
| 398 |
# All arguments are passed to emake. |
| 399 |
cmake-utils_src_make() { |
| 400 |
debug-print-function ${FUNCNAME} "$@" |
| 401 |
|
| 402 |
_check_build_dir |
| 403 |
pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 404 |
# first check if Makefile exist otherwise die |
| 405 |
[[ -e Makefile ]] || die "Makefile not found. Error during configure stage." |
| 406 |
if [[ "${CMAKE_VERBOSE}" != "OFF" ]]; then |
| 407 |
emake VERBOSE=1 "$@" || die "Make failed!" |
| 408 |
else |
| 409 |
emake "$@" || die "Make failed!" |
| 410 |
fi |
| 411 |
popd > /dev/null |
| 412 |
} |
| 413 |
|
| 414 |
enable_cmake-utils_src_install() { |
| 415 |
debug-print-function ${FUNCNAME} "$@" |
| 416 |
|
| 417 |
_check_build_dir |
| 418 |
pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 419 |
base_src_install "$@" |
| 420 |
popd > /dev/null |
| 421 |
|
| 422 |
# Backward compatibility, for non-array variables |
| 423 |
if [[ -n "${DOCS}" ]] && [[ "$(declare -p DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
| 424 |
dodoc ${DOCS} || die "dodoc failed" |
| 425 |
fi |
| 426 |
if [[ -n "${HTML_DOCS}" ]] && [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
| 427 |
dohtml -r ${HTML_DOCS} || die "dohtml failed" |
| 428 |
fi |
| 429 |
} |
| 430 |
|
| 431 |
enable_cmake-utils_src_test() { |
| 432 |
debug-print-function ${FUNCNAME} "$@" |
| 433 |
local ctestargs |
| 434 |
|
| 435 |
_check_build_dir |
| 436 |
pushd "${CMAKE_BUILD_DIR}" > /dev/null |
| 437 |
[[ -e CTestTestfile.cmake ]] || { echo "No tests found. Skipping."; return 0 ; } |
| 438 |
|
| 439 |
[[ -n ${TEST_VERBOSE} ]] && ctestargs="--extra-verbose --output-on-failure" |
| 440 |
|
| 441 |
if ctest ${ctestargs} "$@" ; then |
| 442 |
einfo "Tests succeeded." |
| 443 |
else |
| 444 |
if [[ -n "${CMAKE_YES_I_WANT_TO_SEE_THE_TEST_LOG}" ]] ; then |
| 445 |
# on request from Diego |
| 446 |
eerror "Tests failed. Test log ${CMAKE_BUILD_DIR}/Testing/Temporary/LastTest.log follows:" |
| 447 |
eerror "--START TEST LOG--------------------------------------------------------------" |
| 448 |
cat "${CMAKE_BUILD_DIR}/Testing/Temporary/LastTest.log" |
| 449 |
eerror "--END TEST LOG----------------------------------------------------------------" |
| 450 |
die "Tests failed." |
| 451 |
else |
| 452 |
die "Tests failed. When you file a bug, please attach the following file: \n\t${CMAKE_BUILD_DIR}/Testing/Temporary/LastTest.log" |
| 453 |
fi |
| 454 |
fi |
| 455 |
popd > /dev/null |
| 456 |
} |
| 457 |
|
| 458 |
# @FUNCTION: cmake-utils_src_configure |
| 459 |
# @DESCRIPTION: |
| 460 |
# General function for configuring with cmake. Default behaviour is to start an |
| 461 |
# out-of-source build. |
| 462 |
cmake-utils_src_configure() { |
| 463 |
_execute_optionaly "src_configure" "$@" |
| 464 |
} |
| 465 |
|
| 466 |
# @FUNCTION: cmake-utils_src_compile |
| 467 |
# @DESCRIPTION: |
| 468 |
# General function for compiling with cmake. Default behaviour is to check for |
| 469 |
# EAPI and respectively to configure as well or just compile. |
| 470 |
# Automatically detects the build type. All arguments are passed to emake. |
| 471 |
cmake-utils_src_compile() { |
| 472 |
_execute_optionaly "src_compile" "$@" |
| 473 |
} |
| 474 |
|
| 475 |
# @FUNCTION: cmake-utils_src_install |
| 476 |
# @DESCRIPTION: |
| 477 |
# Function for installing the package. Automatically detects the build type. |
| 478 |
cmake-utils_src_install() { |
| 479 |
_execute_optionaly "src_install" "$@" |
| 480 |
} |
| 481 |
|
| 482 |
# @FUNCTION: cmake-utils_src_test |
| 483 |
# @DESCRIPTION: |
| 484 |
# Function for testing the package. Automatically detects the build type. |
| 485 |
cmake-utils_src_test() { |
| 486 |
_execute_optionaly "src_test" "$@" |
| 487 |
} |
| 488 |
|
| 489 |
# Optionally executes phases based on WANT_CMAKE variable/USE flag. |
| 490 |
_execute_optionaly() { |
| 491 |
local phase="$1" ; shift |
| 492 |
if [[ ${WANT_CMAKE} = always ]]; then |
| 493 |
enable_cmake-utils_${phase} "$@" |
| 494 |
else |
| 495 |
use ${WANT_CMAKE} && enable_cmake-utils_${phase} "$@" |
| 496 |
fi |
| 497 |
} |