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