| 1 |
# Copyright 1999-2013 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: $ |
| 4 |
# |
| 5 |
# @ECLASS: kde4-meta.eclass |
| 6 |
# @MAINTAINER: |
| 7 |
# kde@gentoo.org |
| 8 |
# @BLURB: Eclass for writing "split" KDE packages. |
| 9 |
# @DESCRIPTION: |
| 10 |
# This eclass provides all necessary functions for writing split KDE ebuilds. |
| 11 |
# |
| 12 |
# You must define KMNAME to use this eclass, and do so before inheriting it. All other variables are optional. |
| 13 |
# Do not include the same item in more than one of KMMODULE, KMMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY. |
| 14 |
|
| 15 |
if [[ ${___ECLASS_ONCE_KDE4_META} != "recur -_+^+_- spank" ]] ; then |
| 16 |
___ECLASS_ONCE_KDE4_META="recur -_+^+_- spank" |
| 17 |
|
| 18 |
[[ -z ${KMNAME} ]] && die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild" |
| 19 |
|
| 20 |
inherit kde4-base versionator |
| 21 |
|
| 22 |
KDEMETA_EXPF="pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_preinst pkg_postinst pkg_postrm" |
| 23 |
EXPORT_FUNCTIONS ${KDEMETA_EXPF} |
| 24 |
|
| 25 |
# Add dependencies that all packages in a certain module share. |
| 26 |
case ${KMNAME} in |
| 27 |
kdebase|kdebase-apps|kde-baseapps|kdebase-workspace|kde-workspace|kdebase-runtime|kde-runtime|kdegraphics) |
| 28 |
COMMONDEPEND+=" >=media-libs/qimageblitz-0.0.4" |
| 29 |
;; |
| 30 |
kdepim|kdepim-runtime) |
| 31 |
case ${PN} in |
| 32 |
akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
| 33 |
IUSE+=" +kontact" |
| 34 |
RDEPEND+=" kontact? ( $(add_kdebase_dep kontact) )" |
| 35 |
;; |
| 36 |
esac |
| 37 |
;; |
| 38 |
kdegames) |
| 39 |
if [[ ${PN} != libkdegames ]]; then |
| 40 |
COMMONDEPEND+=" $(add_kdebase_dep libkdegames)" |
| 41 |
fi |
| 42 |
;; |
| 43 |
esac |
| 44 |
|
| 45 |
DEPEND+=" ${COMMONDEPEND}" |
| 46 |
RDEPEND+=" ${COMMONDEPEND}" |
| 47 |
unset COMMONDEPEND |
| 48 |
|
| 49 |
debug-print "line ${LINENO} ${ECLASS}: DEPEND ${DEPEND} - after metapackage-specific dependencies" |
| 50 |
debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after metapackage-specific dependencies" |
| 51 |
|
| 52 |
# Useful to build kde4-meta style stuff from extragear/playground (plasmoids etc) |
| 53 |
case ${KDE_BUILD_TYPE} in |
| 54 |
live) |
| 55 |
if [[ ${KDE_SCM} == svn ]]; then |
| 56 |
case ${KMNAME} in |
| 57 |
extragear*|playground*) |
| 58 |
ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
| 59 |
ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
| 60 |
;; |
| 61 |
esac |
| 62 |
fi |
| 63 |
;; |
| 64 |
esac |
| 65 |
|
| 66 |
# @ECLASS-VARIABLE: KMNAME |
| 67 |
# @DESCRIPTION: |
| 68 |
# Name of the parent-module (e.g. kdebase, kdepim, ...). You _must_ set it |
| 69 |
# _before_ inheriting this eclass, (unlike the other parameters), since it's |
| 70 |
# used to set $SRC_URI. |
| 71 |
|
| 72 |
# @ECLASS-VARIABLE: KMMODULE |
| 73 |
# @DESCRIPTION: |
| 74 |
# Specify exactly one subdirectory of $KMNAME here. Defaults to $PN. |
| 75 |
# The subdirectory listed here is treated exactly like items in $KMEXTRA. |
| 76 |
# |
| 77 |
# Example: The ebuild name of "kdebase/l10n" is kde-base/kdebase-l10n, because |
| 78 |
# just 'l10n' would be too confusing. Hence it sets KMMODULE="l10n". |
| 79 |
|
| 80 |
# @ECLASS-VARIABLE: KMNOMODULE |
| 81 |
# @DESCRIPTION: |
| 82 |
# If set to "true", $KMMODULE doesn't have to be defined. |
| 83 |
# |
| 84 |
# Example usage: If you're installing subdirectories of a package, like plugins, |
| 85 |
# you mark the top subdirectory (containing the package) as $KMEXTRACTONLY, and |
| 86 |
# set KMNOMODULE="true". |
| 87 |
if [[ -z ${KMMODULE} ]] && [[ ${KMNOMODULE} != true ]]; then |
| 88 |
KMMODULE=${PN} |
| 89 |
fi |
| 90 |
|
| 91 |
# @ECLASS-VARIABLE: KMEXTRA |
| 92 |
# @DESCRIPTION: |
| 93 |
# All subdirectories listed here will be extracted, compiled & installed. |
| 94 |
# $KMMODULE is always added to $KMEXTRA. |
| 95 |
# If KDE_HANDBOOK is 'always' or 'optional' and handbook USE-flag is set, and if this |
| 96 |
# directory exists, then "doc/$KMMODULE" is added to $KMEXTRA. If there's additional |
| 97 |
# documentation in different subdirectories, it should be added to KMEXTRA manually.. |
| 98 |
|
| 99 |
# @ECLASS-VARIABLE: KMCOMPILEONLY |
| 100 |
# @DESCRIPTION: |
| 101 |
# All subdirectories listed here will be extracted & compiled, but not installed. |
| 102 |
|
| 103 |
# TODO: better formulation may be needed |
| 104 |
# @ECLASS-VARIABLE: KMEXTRACTONLY |
| 105 |
# @DESCRIPTION: |
| 106 |
# All subdirectories listed here will be extracted, but neither compiled nor installed. |
| 107 |
# This can be used to avoid compilation in a subdirectory of a directory in $KMMODULE or $KMEXTRA |
| 108 |
|
| 109 |
# @ECLASS-VARIABLE: KMTARPARAMS |
| 110 |
# @DESCRIPTION: |
| 111 |
# Specify extra parameters to pass to tar, in kde4-meta_src_extract. |
| 112 |
# '-xpf -j' are passed to tar by default. |
| 113 |
|
| 114 |
# @FUNCTION: kde4-meta_pkg_setup |
| 115 |
# @DESCRIPTION: |
| 116 |
# Currently calls its equivalent in kde4-base.eclass(5) and checks the gcc version. |
| 117 |
# Use this one in split ebuilds. |
| 118 |
kde4-meta_pkg_setup() { |
| 119 |
debug-print-function ${FUNCNAME} "$@" |
| 120 |
|
| 121 |
kde4-base_pkg_setup |
| 122 |
} |
| 123 |
|
| 124 |
# @FUNCTION: kde4-meta_src_unpack |
| 125 |
# @DESCRIPTION: |
| 126 |
# This function unpacks the source for split ebuilds. |
| 127 |
# Further more is processed in kde4-meta_src_extract |
| 128 |
kde4-meta_src_unpack() { |
| 129 |
debug-print-function ${FUNCNAME} "$@" |
| 130 |
|
| 131 |
if [[ ${KDE_BUILD_TYPE} = live ]]; then |
| 132 |
case "${KDE_SCM}" in |
| 133 |
svn) |
| 134 |
migrate_store_dir |
| 135 |
S="${WORKDIR}/${P}" |
| 136 |
mkdir -p "${S}" |
| 137 |
ESVN_RESTRICT="export" subversion_src_unpack |
| 138 |
subversion_wc_info |
| 139 |
subversion_bootstrap |
| 140 |
;; |
| 141 |
git) |
| 142 |
git-2_src_unpack |
| 143 |
;; |
| 144 |
esac |
| 145 |
fi |
| 146 |
kde4-meta_src_extract |
| 147 |
} |
| 148 |
|
| 149 |
# @FUNCTION: kde4-meta_src_extract |
| 150 |
# @DESCRIPTION: |
| 151 |
# A function to extract the source for a split KDE ebuild. |
| 152 |
# Also see KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and |
| 153 |
# KMTARPARAMS. |
| 154 |
kde4-meta_src_extract() { |
| 155 |
debug-print-function ${FUNCNAME} "$@" |
| 156 |
|
| 157 |
if [[ ${KDE_BUILD_TYPE} = live ]]; then |
| 158 |
# Export working copy to ${S} |
| 159 |
einfo "Exporting parts of working copy to ${S}" |
| 160 |
kde4-meta_create_extractlists |
| 161 |
|
| 162 |
case ${KDE_SCM} in |
| 163 |
svn) |
| 164 |
local rsync_options subdir targetdir wc_path escm |
| 165 |
|
| 166 |
rsync_options="--group --links --owner --perms --quiet --exclude=.svn/ --exclude=.git/" |
| 167 |
wc_path="${ESVN_WC_PATH}" |
| 168 |
escm="{ESVN}" |
| 169 |
|
| 170 |
# Copy ${KMNAME} non-recursively (toplevel files) |
| 171 |
rsync ${rsync_options} "${wc_path}"/* "${S}" \ |
| 172 |
|| die "${escm}: can't export toplevel files to '${S}'." |
| 173 |
# Copy cmake directory |
| 174 |
if [[ -d "${wc_path}/cmake" ]]; then |
| 175 |
rsync --recursive ${rsync_options} "${wc_path}/cmake" "${S}" \ |
| 176 |
|| die "${escm}: can't export cmake files to '${S}'." |
| 177 |
fi |
| 178 |
# Copy all subdirectories |
| 179 |
for subdir in $(__list_needed_subdirectories); do |
| 180 |
targetdir="" |
| 181 |
if [[ $subdir = doc/* && ! -e "$wc_path/$subdir" ]]; then |
| 182 |
continue |
| 183 |
fi |
| 184 |
|
| 185 |
[[ ${subdir%/} = */* ]] && targetdir=${subdir%/} && targetdir=${targetdir%/*} && mkdir -p "${S}/${targetdir}" |
| 186 |
rsync --recursive ${rsync_options} "${wc_path}/${subdir%/}" "${S}/${targetdir}" \ |
| 187 |
|| die "${escm}: can't export subdirectory '${subdir}' to '${S}/${targetdir}'." |
| 188 |
done |
| 189 |
;; |
| 190 |
esac |
| 191 |
else |
| 192 |
local abort tarball tarfile f extractlist postfix |
| 193 |
|
| 194 |
if [[ ${PV} =~ 4.[47].[12345] ]]; then |
| 195 |
postfix="bz2" |
| 196 |
KMTARPARAMS+=" --bzip2" |
| 197 |
else |
| 198 |
postfix="xz" |
| 199 |
KMTARPARAMS+=" --xz" |
| 200 |
fi |
| 201 |
|
| 202 |
case ${KMNAME} in |
| 203 |
kdebase-apps) |
| 204 |
# kdebase/apps -> kdebase-apps |
| 205 |
tarball="kdebase-${PV}.tar.${postfix}" |
| 206 |
;; |
| 207 |
*) |
| 208 |
# Create tarball name from module name (this is the default) |
| 209 |
tarball="${KMNAME}-${PV}.tar.${postfix}" |
| 210 |
;; |
| 211 |
esac |
| 212 |
|
| 213 |
# Full path to source tarball |
| 214 |
tarfile="${DISTDIR}/${tarball}" |
| 215 |
|
| 216 |
# Detect real toplevel dir from tarball name - it will be used upon extraction |
| 217 |
# and in __list_needed_subdirectories |
| 218 |
topdir="${tarball%.tar.*}/" |
| 219 |
|
| 220 |
ebegin "Unpacking parts of ${tarball} to ${WORKDIR}" |
| 221 |
|
| 222 |
kde4-meta_create_extractlists |
| 223 |
|
| 224 |
for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake |
| 225 |
do |
| 226 |
extractlist+=" ${topdir}${f}" |
| 227 |
done |
| 228 |
extractlist+=" $(__list_needed_subdirectories)" |
| 229 |
|
| 230 |
pushd "${WORKDIR}" > /dev/null |
| 231 |
|
| 232 |
# @ECLASS-VARIABLE: KDE4_STRICTER |
| 233 |
# @DESCRIPTION: |
| 234 |
# Print out all issues found executing tar / kmextract files |
| 235 |
# Set on if you want to find issues in kde-base ebuild unpack sequences |
| 236 |
[[ -n ${KDE4_STRICTER} ]] && echo 'tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist}' |
| 237 |
tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null || echo "tar extract command failed at least partially - continuing anyway" |
| 238 |
|
| 239 |
# Default $S is based on $P; rename the extracted directory to match $S if necessary |
| 240 |
if [[ ${KMNAME} != ${PN} ]]; then |
| 241 |
mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
| 242 |
fi |
| 243 |
|
| 244 |
popd > /dev/null |
| 245 |
|
| 246 |
eend $? |
| 247 |
|
| 248 |
if [[ -n ${KDE4_STRICTER} ]]; then |
| 249 |
for f in $(__list_needed_subdirectories fatal); do |
| 250 |
if [[ ! -e ${S}/${f#*/} ]]; then |
| 251 |
eerror "'${f#*/}' is missing" |
| 252 |
abort=true |
| 253 |
fi |
| 254 |
done |
| 255 |
[[ -n ${abort} ]] && die "There were missing files." |
| 256 |
fi |
| 257 |
|
| 258 |
# We don't need it anymore |
| 259 |
unset topdir |
| 260 |
fi |
| 261 |
} |
| 262 |
|
| 263 |
# @FUNCTION: kde4-meta_create_extractlists |
| 264 |
# @DESCRIPTION: |
| 265 |
# Create lists of files and subdirectories to extract. |
| 266 |
# Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
| 267 |
# KMEXTRACTONLY and KMTARPARAMS. |
| 268 |
kde4-meta_create_extractlists() { |
| 269 |
debug-print-function ${FUNCNAME} "$@" |
| 270 |
|
| 271 |
# Add default handbook locations |
| 272 |
# FIXME - legacy code - remove when 4.4.5 is gone or preferrably port 4.4.5. |
| 273 |
if [[ $(get_kde_version) < 4.5 ]] && use_if_iuse handbook && [[ -z ${KMNOMODULE} ]]; then |
| 274 |
# We use the basename of $KMMODULE because $KMMODULE can contain |
| 275 |
# the path to the module subdirectory. |
| 276 |
KMEXTRA_NONFATAL+=" |
| 277 |
doc/${KMMODULE##*/}" |
| 278 |
fi |
| 279 |
|
| 280 |
# Add default handbook locations |
| 281 |
if [[ -z ${KMNOMODULE} ]] && ( [[ ${KDE_HANDBOOK} == always ]] || ( [[ ${KDE_HANDBOOK} == optional ]] && use handbook ) ); then |
| 282 |
KMEXTRA_NONFATAL+=" doc/${KMMODULE##*/}" |
| 283 |
fi |
| 284 |
|
| 285 |
# Add some CMake-files to KMEXTRACTONLY. |
| 286 |
# Note that this actually doesn't include KMEXTRA handling. |
| 287 |
# In those cases you should care to add the relevant files to KMEXTRACTONLY |
| 288 |
case ${KMNAME} in |
| 289 |
kdebase | kdebase-apps | kde-baseapps) |
| 290 |
KMEXTRACTONLY+=" |
| 291 |
CTestConfig.cmake |
| 292 |
config-apps.h.cmake |
| 293 |
ConfigureChecks.cmake" |
| 294 |
;; |
| 295 |
kdebase-runtime | kde-runtime) |
| 296 |
KMEXTRACTONLY+=" |
| 297 |
CTestConfig.cmake |
| 298 |
config-runtime.h.cmake" |
| 299 |
;; |
| 300 |
kdebase-workspace | kde-workspace) |
| 301 |
KMEXTRACTONLY+=" |
| 302 |
config-unix.h.cmake |
| 303 |
ConfigureChecks.cmake |
| 304 |
config-workspace.h.cmake |
| 305 |
config-X11.h.cmake |
| 306 |
startkde.cmake |
| 307 |
KDE4WorkspaceConfig.cmake.in" |
| 308 |
;; |
| 309 |
kdegames) |
| 310 |
if [[ ${PN} != libkdegames ]]; then |
| 311 |
KMEXTRACTONLY+=" |
| 312 |
libkdegames/" |
| 313 |
KMLOADLIBS="${KMLOADLIBS} libkdegames" |
| 314 |
fi |
| 315 |
;; |
| 316 |
kdepim) |
| 317 |
if [[ ${PN} != libkdepim ]]; then |
| 318 |
KMEXTRACTONLY+=" |
| 319 |
libkdepim/" |
| 320 |
fi |
| 321 |
KMEXTRACTONLY+=" |
| 322 |
config-enterprise.h.cmake |
| 323 |
kleopatra/ConfigureChecks.cmake |
| 324 |
CTestCustom.cmake |
| 325 |
kdepim-version.h.cmake |
| 326 |
kdepim-version.h" |
| 327 |
if use_if_iuse kontact; then |
| 328 |
KMEXTRA+=" |
| 329 |
kontact/plugins/${PLUGINNAME:-${PN}}/" |
| 330 |
fi |
| 331 |
;; |
| 332 |
kdeutils) |
| 333 |
KMEXTRACTONLY+=" |
| 334 |
kdeutils-version.h" |
| 335 |
;; |
| 336 |
esac |
| 337 |
# Don't install cmake modules for split ebuilds, to avoid collisions. |
| 338 |
# note: kdegraphics >= 4.6.2 does not even have code to do that, so we |
| 339 |
# should not try in that case |
| 340 |
# note2: kdeedu 4.6.4 does not have a cmake/modules/ subdir anymore :( |
| 341 |
# it may be possible to formulate this shorter, but it should also |
| 342 |
# still be understandable... |
| 343 |
if [[ ${KMNAME} != kdegraphics || ( ( $(get_kde_version) != 4.6 || ${PV} < 4.6.2 ) && $(get_kde_version) < 4.7 ) ]] \ |
| 344 |
&& ! [[ ${KMNAME} == kdeedu && ( ${PV} == 4.6.4 || ${PV} == 4.6.5 ) ]] \ |
| 345 |
&& ! [[ ${KMNAME} == kdegames && ${PV} > 4.9.0 ]]; then |
| 346 |
case ${KMNAME} in |
| 347 |
kdebase-runtime|kde-runtime|kdebase-workspace|kde-workspace|kdeedu|kdegames|kdegraphics) |
| 348 |
KMEXTRACTONLY+=" |
| 349 |
cmake/modules/" |
| 350 |
;; |
| 351 |
esac |
| 352 |
fi |
| 353 |
|
| 354 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}" |
| 355 |
} |
| 356 |
|
| 357 |
__list_needed_subdirectories() { |
| 358 |
local i j kmextra kmextra_expanded kmmodule_expanded kmcompileonly_expanded extractlist |
| 359 |
|
| 360 |
# We expand KMEXTRA by adding CMakeLists.txt files |
| 361 |
kmextra="${KMEXTRA}" |
| 362 |
[[ ${1} != fatal ]] && kmextra+=" ${KMEXTRA_NONFATAL}" |
| 363 |
for i in ${kmextra}; do |
| 364 |
kmextra_expanded+=" ${i}" |
| 365 |
j=$(dirname ${i}) |
| 366 |
while [[ ${j} != "." ]]; do |
| 367 |
kmextra_expanded+=" ${j}/CMakeLists.txt"; |
| 368 |
j=$(dirname ${j}) |
| 369 |
done |
| 370 |
done |
| 371 |
|
| 372 |
# Expand KMMODULE |
| 373 |
if [[ -n ${KMMODULE} ]]; then |
| 374 |
kmmodule_expanded="${KMMODULE}" |
| 375 |
j=$(dirname ${KMMODULE}) |
| 376 |
while [[ ${j} != "." ]]; do |
| 377 |
kmmodule_expanded+=" ${j}/CMakeLists.txt"; |
| 378 |
j=$(dirname ${j}) |
| 379 |
done |
| 380 |
fi |
| 381 |
|
| 382 |
# Expand KMCOMPILEONLY |
| 383 |
for i in ${KMCOMPILEONLY}; do |
| 384 |
kmcompileonly_expanded+=" ${i}" |
| 385 |
j=$(dirname ${i}) |
| 386 |
while [[ ${j} != "." ]]; do |
| 387 |
kmcompileonly_expanded+=" ${j}/CMakeLists.txt"; |
| 388 |
j=$(dirname ${j}) |
| 389 |
done |
| 390 |
done |
| 391 |
|
| 392 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmextra_expanded: ${kmextra_expanded}" |
| 393 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmmodule_expanded: ${kmmodule_expanded}" |
| 394 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmcompileonly_expanded: ${kmcompileonly_expanded}" |
| 395 |
|
| 396 |
# Create final list of stuff to extract |
| 397 |
# We append topdir only when specified (usually for tarballs) |
| 398 |
for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \ |
| 399 |
${KMEXTRACTONLY} |
| 400 |
do |
| 401 |
extractlist+=" ${topdir}${i}" |
| 402 |
done |
| 403 |
|
| 404 |
echo ${extractlist} |
| 405 |
} |
| 406 |
|
| 407 |
# @FUNCTION: kde4-meta_src_prepare |
| 408 |
# @DESCRIPTION: |
| 409 |
# Meta-package build system configuration handling - commenting out targets, etc.. |
| 410 |
kde4-meta_src_prepare() { |
| 411 |
debug-print-function ${FUNCNAME} "$@" |
| 412 |
|
| 413 |
kde4-meta_change_cmakelists |
| 414 |
kde4-base_src_prepare |
| 415 |
} |
| 416 |
|
| 417 |
# @FUNCTION: _change_cmakelists_parent_dirs |
| 418 |
# @DESCRIPTION: |
| 419 |
# Adjust CMakeLists.txt to shadow subdirectories |
| 420 |
# that are not required for the build. |
| 421 |
_change_cmakelists_parent_dirs() { |
| 422 |
debug-print-function ${FUNCNAME} "$@" |
| 423 |
|
| 424 |
local _olddir _dir |
| 425 |
_dir="${S}"/${1} |
| 426 |
until [[ ${_dir} == ${S} ]]; do |
| 427 |
_olddir=$(basename "${_dir}") |
| 428 |
_dir=$(dirname "${_dir}") |
| 429 |
debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}" |
| 430 |
if [[ -f ${_dir}/CMakeLists.txt ]]; then |
| 431 |
sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
| 432 |
-e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
| 433 |
-i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
| 434 |
fi |
| 435 |
done |
| 436 |
} |
| 437 |
|
| 438 |
# @FUNCTION: kde4-meta_change_cmakelists |
| 439 |
# @DESCRIPTION: |
| 440 |
# Adjust CMakeLists.txt to comply to our splitting. |
| 441 |
kde4-meta_change_cmakelists() { |
| 442 |
debug-print-function ${FUNCNAME} "$@" |
| 443 |
|
| 444 |
pushd "${S}" > /dev/null |
| 445 |
|
| 446 |
comment_all_add_subdirectory ./ |
| 447 |
|
| 448 |
# Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt |
| 449 |
if [[ -f CMakeLists.txt ]]; then |
| 450 |
sed -e '/add_subdirectory[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
| 451 |
-e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
| 452 |
-i CMakeLists.txt || die "${LINENO}: cmake sed died" |
| 453 |
fi |
| 454 |
|
| 455 |
# Restore "add_subdirectory( ${ ..." (this is done in kdesdk) |
| 456 |
if [[ -f CMakeLists.txt ]]; then |
| 457 |
sed -e '/add_subdirectory[[:space:]]*([[:space:]]*\${/s/^#DONOTCOMPILE //' \ |
| 458 |
-e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*\${/s/^#DONOTCOMPILE //' \ |
| 459 |
-i CMakeLists.txt || die "${LINENO}: cmake sed died" |
| 460 |
fi |
| 461 |
|
| 462 |
if [[ -z ${KMNOMODULE} ]]; then |
| 463 |
# Restore "add_subdirectory" in $KMMODULE subdirectories |
| 464 |
find "${S}"/${KMMODULE} -name CMakeLists.txt -print0 | \ |
| 465 |
xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
| 466 |
die "${LINENO}: died in KMMODULE section" |
| 467 |
_change_cmakelists_parent_dirs ${KMMODULE} |
| 468 |
fi |
| 469 |
|
| 470 |
local i |
| 471 |
|
| 472 |
# KMEXTRACTONLY section - Some ebuilds need to comment out some subdirs in KMMODULE and they use KMEXTRACTONLY |
| 473 |
for i in ${KMEXTRACTONLY}; do |
| 474 |
if [[ -d ${i} && -f ${i}/../CMakeLists.txt ]]; then |
| 475 |
sed -e "/([[:space:]]*$(basename $i)[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
| 476 |
-i ${i}/../CMakeLists.txt || \ |
| 477 |
die "${LINENO}: sed died while working in the KMEXTRACTONLY section while processing ${i}" |
| 478 |
fi |
| 479 |
done |
| 480 |
|
| 481 |
# KMCOMPILEONLY |
| 482 |
for i in ${KMCOMPILEONLY}; do |
| 483 |
debug-print "${LINENO}: KMCOMPILEONLY, processing ${i}" |
| 484 |
# Uncomment "add_subdirectory" instructions inside $KMCOMPILEONLY, then comment "install" instructions. |
| 485 |
find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
| 486 |
xargs -0 sed -i \ |
| 487 |
-e 's/^#DONOTCOMPILE //g' \ |
| 488 |
-e '/install(.*)/I{s/^/#DONOTINSTALL /;}' \ |
| 489 |
-e '/^install(/,/)/I{s/^/#DONOTINSTALL /;}' \ |
| 490 |
-e '/kde4_install_icons(.*)/{s/^/#DONOTINSTALL /;}' || \ |
| 491 |
die "${LINENO}: sed died in the KMCOMPILEONLY section while processing ${i}" |
| 492 |
_change_cmakelists_parent_dirs ${i} |
| 493 |
done |
| 494 |
|
| 495 |
# KMEXTRA section |
| 496 |
for i in ${KMEXTRA}; do |
| 497 |
debug-print "${LINENO}: KMEXTRA section, processing ${i}" |
| 498 |
find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
| 499 |
xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
| 500 |
die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
| 501 |
_change_cmakelists_parent_dirs ${i} |
| 502 |
done |
| 503 |
# KMEXTRA_NONFATAL section |
| 504 |
for i in ${KMEXTRA_NONFATAL}; do |
| 505 |
if [[ -d "${S}"/${i} ]]; then |
| 506 |
find "${S}"/${i} -name CMakeLists.txt -print0 | \ |
| 507 |
xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \ |
| 508 |
die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}" |
| 509 |
_change_cmakelists_parent_dirs ${i} |
| 510 |
fi |
| 511 |
done |
| 512 |
|
| 513 |
case ${KMNAME} in |
| 514 |
kdebase-workspace | kde-workspace) |
| 515 |
# COLLISION PROTECT section |
| 516 |
# Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
| 517 |
# not as a part of every package. |
| 518 |
if [[ ${PN} != kdebase-startkde && -f CMakeLists.txt ]]; then |
| 519 |
# The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
| 520 |
sed -e '/startkde/s/^/#DONOTINSTALL /' \ |
| 521 |
-i CMakeLists.txt || die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
| 522 |
fi |
| 523 |
# Remove workspace target prefix in order to get direct linking to workspace libs |
| 524 |
sed -e '/set(KDE4WORKSPACE_TARGET_PREFIX/s/^/#OVERRIDE /' \ |
| 525 |
-i CMakeLists.txt || die "${LINENO}: sed died in KDE4WORKSPACE_TARGET_PREFIX removal section" |
| 526 |
# Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
| 527 |
if [[ ${PN} != libkworkspace ]]; then |
| 528 |
sed -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
| 529 |
-i CMakeLists.txt || die "${LINENO}: sed died in kde-workspace strip config install and fix EXPORT section" |
| 530 |
fi |
| 531 |
if [[ ${PN} != plasma-workspace ]]; then |
| 532 |
sed -e '/KActivities/s/REQUIRED//' \ |
| 533 |
-i CMakeLists.txt || die "${LINENO}: sed died in kde-workspace dep reduction section" |
| 534 |
fi |
| 535 |
if [[ "${PN}" != "kwin" ]]; then |
| 536 |
sed -i -e "/^ macro_log_feature(OPENGL_OR_ES_FOUND/s/TRUE/FALSE/" \ |
| 537 |
"${S}"/CMakeLists.txt || die "${LINENO}: sed died removing kde-workspace opengl dependency" |
| 538 |
fi |
| 539 |
;; |
| 540 |
kdebase-runtime | kde-runtime) |
| 541 |
# COLLISION PROTECT section |
| 542 |
# Only install the kde4 script as part of kde-base/kdebase-data |
| 543 |
if [[ ${PN} != kdebase-data && -f CMakeLists.txt ]]; then |
| 544 |
sed -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
| 545 |
-i CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
| 546 |
fi |
| 547 |
;; |
| 548 |
kdenetwork) |
| 549 |
# Disable hardcoded kdepimlibs check |
| 550 |
sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
| 551 |
-i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 552 |
;; |
| 553 |
kdepim) |
| 554 |
# Disable hardcoded checks |
| 555 |
sed -r -e '/find_package\(KdepimLibs/s/REQUIRED//' \ |
| 556 |
-e '/find_package\((KdepimLibs|Boost|QGpgme|Akonadi|ZLIB|Strigi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \ |
| 557 |
-e '/macro_log_feature\((Boost|QGPGME|Akonadi|ZLIB|STRIGI|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \ |
| 558 |
-e 's/if[[:space:]]*([[:space:]]*BUILD_.*)[[:space:]]*/if(1) # &/' \ |
| 559 |
-e 's/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)[[:space:]]*$/if(1) # &/' \ |
| 560 |
-i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 561 |
# Disable broken or redundant build logic |
| 562 |
if use_if_iuse kontact || [[ ${PN} = kontact ]]; then |
| 563 |
sed -e 's/if[[:space:]]*([[:space:]]*BUILD_.*)[[:space:]]*$/if(1) # &/' \ |
| 564 |
-e 's/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)[[:space:]]*$/if(1) # &/' \ |
| 565 |
-i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
| 566 |
fi |
| 567 |
case ${PV} in |
| 568 |
4.4*) |
| 569 |
case ${PN} in |
| 570 |
kalarm|kmailcvt|kontact|korganizer|korn) |
| 571 |
sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
| 572 |
-e '/add_custom_target(kmail_xml /,/)/p' \ |
| 573 |
-i kmail/CMakeLists.txt || die "uncommenting xml failed" |
| 574 |
_change_cmakelists_parent_dirs kmail |
| 575 |
;; |
| 576 |
esac |
| 577 |
;; |
| 578 |
esac |
| 579 |
;; |
| 580 |
kdewebdev) |
| 581 |
# Disable hardcoded checks |
| 582 |
sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
| 583 |
-e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
| 584 |
-e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
| 585 |
-e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
| 586 |
-i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 587 |
;; |
| 588 |
esac |
| 589 |
|
| 590 |
popd > /dev/null |
| 591 |
} |
| 592 |
|
| 593 |
# @FUNCTION: kde4-meta_src_configure |
| 594 |
# @DESCRIPTION: |
| 595 |
# Currently just calls its equivalent in kde4-base.eclass(5). Use this one in split |
| 596 |
# ebuilds. |
| 597 |
kde4-meta_src_configure() { |
| 598 |
debug-print-function ${FUNCNAME} "$@" |
| 599 |
|
| 600 |
# backwards-compatibility: make mycmakeargs an array, if it isn't already |
| 601 |
if [[ $(declare -p mycmakeargs 2>&-) != "declare -a mycmakeargs="* ]]; then |
| 602 |
mycmakeargs=(${mycmakeargs}) |
| 603 |
fi |
| 604 |
|
| 605 |
# Set some cmake default values here (usually workarounds for automagic deps) |
| 606 |
case ${KMNAME} in |
| 607 |
kdewebdev) |
| 608 |
mycmakeargs=( |
| 609 |
-DWITH_KdepimLibs=OFF |
| 610 |
-DWITH_LibXml2=OFF |
| 611 |
-DWITH_LibXslt=OFF |
| 612 |
-DWITH_Boost=OFF |
| 613 |
-DWITH_LibTidy=OFF |
| 614 |
"${mycmakeargs[@]}" |
| 615 |
) |
| 616 |
;; |
| 617 |
esac |
| 618 |
|
| 619 |
kde4-base_src_configure |
| 620 |
} |
| 621 |
|
| 622 |
# @FUNCTION: kde4-meta_src_compile |
| 623 |
# @DESCRIPTION: |
| 624 |
# General function for compiling split KDE4 applications. |
| 625 |
# Overrides kde4-base_src_compile. |
| 626 |
kde4-meta_src_compile() { |
| 627 |
debug-print-function ${FUNCNAME} "$@" |
| 628 |
|
| 629 |
kde4-base_src_compile "$@" |
| 630 |
} |
| 631 |
|
| 632 |
# @FUNCTION: kde4-meta_src_test |
| 633 |
# @DESCRIPTION: |
| 634 |
# Currently just calls its equivalent in kde4-base.eclass(5) if |
| 635 |
# I_KNOW_WHAT_I_AM_DOING is set. Use this in split ebuilds. |
| 636 |
kde4-meta_src_test() { |
| 637 |
debug-print-function $FUNCNAME "$@" |
| 638 |
|
| 639 |
if [[ $I_KNOW_WHAT_I_AM_DOING ]]; then |
| 640 |
kde4-base_src_test |
| 641 |
else |
| 642 |
einfo "Tests disabled" |
| 643 |
fi |
| 644 |
} |
| 645 |
|
| 646 |
# @FUNCTION: kde4-meta_src_install |
| 647 |
# @DESCRIPTION: |
| 648 |
# Function for installing KDE4 split applications. |
| 649 |
kde4-meta_src_install() { |
| 650 |
debug-print-function $FUNCNAME "$@" |
| 651 |
|
| 652 |
# Search ${S}/${KMMODULE} and install common documentation files found |
| 653 |
local doc |
| 654 |
for doc in "${S}/${KMMODULE}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 655 |
[[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
| 656 |
done |
| 657 |
|
| 658 |
kde4-base_src_install |
| 659 |
} |
| 660 |
|
| 661 |
# @FUNCTION: kde4-meta_pkg_preinst |
| 662 |
# @DESCRIPTION: |
| 663 |
# Invoke its equivalent in kde4-base.eclass. |
| 664 |
kde4-meta_pkg_preinst() { |
| 665 |
debug-print-function ${FUNCNAME} "$@" |
| 666 |
|
| 667 |
kde4-base_pkg_preinst |
| 668 |
} |
| 669 |
|
| 670 |
# @FUNCTION: kde4-meta_pkg_postinst |
| 671 |
# @DESCRIPTION: |
| 672 |
# Invoke kbuildsycoca4. |
| 673 |
kde4-meta_pkg_postinst() { |
| 674 |
debug-print-function ${FUNCNAME} "$@" |
| 675 |
|
| 676 |
kde4-base_pkg_postinst |
| 677 |
} |
| 678 |
|
| 679 |
# @FUNCTION: kde4-meta_pkg_postrm |
| 680 |
# @DESCRIPTION: |
| 681 |
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split |
| 682 |
# ebuilds. |
| 683 |
kde4-meta_pkg_postrm() { |
| 684 |
debug-print-function ${FUNCNAME} "$@" |
| 685 |
|
| 686 |
kde4-base_pkg_postrm |
| 687 |
} |
| 688 |
|
| 689 |
fi |