| 1 |
# Copyright 1999-2008 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.5 2008/03/13 17:57:51 ingmar 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 |
# NOTE: This eclass uses the SLOT dependencies from EAPI="1" or compatible,
|
| 16 |
# hence you must define EAPI="1" in the ebuild, before inheriting any eclasses.
|
| 17 |
|
| 18 |
inherit multilib kde4-functions kde4-base
|
| 19 |
|
| 20 |
case "${EAPI}" in
|
| 21 |
2)
|
| 22 |
EXPORT_FUNCTIONS pkg_setup src_unpack src_configure src_compile src_test src_install pkg_postinst pkg_postrm
|
| 23 |
;;
|
| 24 |
*)
|
| 25 |
EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_test src_install pkg_postinst pkg_postrm
|
| 26 |
;;
|
| 27 |
esac
|
| 28 |
|
| 29 |
if [[ -z ${KMNAME} ]]; then
|
| 30 |
die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild"
|
| 31 |
fi
|
| 32 |
|
| 33 |
case ${KDEBASE} in
|
| 34 |
kde-base) HOMEPAGE="http://www.kde.org/"
|
| 35 |
LICENSE="GPL-2" ;;
|
| 36 |
koffice) HOMEPAGE="http://www.koffice.org/"
|
| 37 |
LICENSE="GPL-2" ;;
|
| 38 |
esac
|
| 39 |
|
| 40 |
debug-print "${BASH_SOURCE} ${LINENO} ${ECLASS}: DEPEND ${DEPEND} - before blockers"
|
| 41 |
debug-print "${BASH_SOURCE} ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - before blockers"
|
| 42 |
|
| 43 |
# Add a blocker on the package we're derived from
|
| 44 |
if [[ -n ${KDEBASE} ]]; then
|
| 45 |
DEPEND="${DEPEND} !$(get-parent-package ${CATEGORY}/${PN}):${SLOT}"
|
| 46 |
RDEPEND="${RDEPEND} !$(get-parent-package ${CATEGORY}/${PN}):${SLOT}"
|
| 47 |
fi
|
| 48 |
|
| 49 |
debug-print "line ${LINENO} ${ECLASS}: DEPEND ${DEPEND} - after blockers"
|
| 50 |
debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after blockers"
|
| 51 |
|
| 52 |
# Add dependencies that all packages in a certain module share.
|
| 53 |
case ${KMNAME} in
|
| 54 |
kdebase|kdebase-workspace|kdebase-runtime)
|
| 55 |
DEPEND="${DEPEND} >=kde-base/qimageblitz-0.0.4"
|
| 56 |
RDEPEND="${RDEPEND} >=kde-base/qimageblitz-0.0.4"
|
| 57 |
;;
|
| 58 |
kdepim)
|
| 59 |
DEPEND="${DEPEND} dev-libs/boost app-office/akonadi-server"
|
| 60 |
RDEPEND="${RDEPEND} dev-libs/boost"
|
| 61 |
if [[ ${PN} != kode ]]; then
|
| 62 |
DEPEND="${DEPEND} >=kde-base/kode-${PV}:${SLOT}"
|
| 63 |
RDEPEND="${RDEPEND} >=kde-base/kode-${PV}:${SLOT}"
|
| 64 |
fi
|
| 65 |
case ${PN} in
|
| 66 |
akregator|kaddressbook|kjots|kmail|kmobiletools|knode|knotes|korganizer|ktimetracker)
|
| 67 |
IUSE="+kontact"
|
| 68 |
DEPEND="${DEPEND} kontact? ( >=kde-base/kontactinterfaces-${PV}:${SLOT} )"
|
| 69 |
RDEPEND="${RDEPEND} kontact? ( >=kde-base/kontactinterfaces-${PV}:${SLOT} )"
|
| 70 |
;;
|
| 71 |
esac
|
| 72 |
;;
|
| 73 |
kdegames)
|
| 74 |
if [[ ${PN} != "libkdegames" ]]; then
|
| 75 |
DEPEND="${DEPEND} >=kde-base/libkdegames-${PV}:${SLOT}"
|
| 76 |
RDEPEND="${RDEPEND} >=kde-base/libkdegames-${PV}:${SLOT}"
|
| 77 |
fi
|
| 78 |
;;
|
| 79 |
koffice)
|
| 80 |
case ${PN} in
|
| 81 |
koffice-libs|koffice-data) : ;;
|
| 82 |
*)
|
| 83 |
DEPEND="${DEPEND} >=app-office/koffice-libs-${PV}:${SLOT}"
|
| 84 |
RDEPEND="${RDEPEND} >=app-office/koffice-libs-${PV}:${SLOT}"
|
| 85 |
;;
|
| 86 |
esac
|
| 87 |
;;
|
| 88 |
esac
|
| 89 |
|
| 90 |
debug-print "line ${LINENO} ${ECLASS}: DEPEND ${DEPEND} - after metapackage-specific dependencies"
|
| 91 |
debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after metapackage-specific dependencies"
|
| 92 |
|
| 93 |
# @ECLASS-VARIABLE: KMNAME
|
| 94 |
# @DESCRIPTION:
|
| 95 |
# Name of the parent-module (e.g. kdebase, kdepim, ...). You _must_ set it _before_ inheriting this eclass,
|
| 96 |
# (unlike the other parameters), since it's used to set $SRC_URI.
|
| 97 |
|
| 98 |
# @ECLASS-VARIABLE: KMMODULE
|
| 99 |
# @DESCRIPTION:
|
| 100 |
# Specify exactly one subdirectory of $KMNAME here. Defaults to $PN.
|
| 101 |
# The subdirectory listed here is treated exactly like items in $KMEXTRA.
|
| 102 |
#
|
| 103 |
# Example: The ebuild name of "kdebase/l10n" is kde-base/kdebase-l10n, because
|
| 104 |
# just 'l10n' would be too confusing. Hence it sets KMMODULE="l10n".
|
| 105 |
|
| 106 |
# @ECLASS-VARIABLE: KMNOMODULE
|
| 107 |
# @DESCRIPTION:
|
| 108 |
# If set to "true", $KMMODULE doesn't have to be defined.
|
| 109 |
#
|
| 110 |
# Example usage: If you're installing subdirectories of a package, like plugins,
|
| 111 |
# you mark the topsubdirectory (containing the package) as $KMEXTRACTONLY, and set KMNOMODULE="true".
|
| 112 |
if [[ ${KMNOMODULE} != "true" && -z ${KMMODULE} ]]; then
|
| 113 |
KMMODULE=${PN}
|
| 114 |
fi
|
| 115 |
|
| 116 |
# @ECLASS-VARIABLE: KMEXTRA
|
| 117 |
# @DESCRIPTION:
|
| 118 |
# All subdirectories listed here will be extracted, compiled & installed.
|
| 119 |
# $KMMODULE is always added to $KMEXTRA.
|
| 120 |
# If the htmlhandbook USE-flag is set, and if this directory exists,
|
| 121 |
# then "doc/$KMMODULE" is added to $KMEXTRA. In other cases, this should be
|
| 122 |
# handled in the ebuild.
|
| 123 |
# If the documentation is in a different subdirectory, you should add it to KMEXTRA.
|
| 124 |
|
| 125 |
# @ECLASS-VARIABLE: KMCOMPILEONLY
|
| 126 |
# @DESCRIPTION:
|
| 127 |
# All subdirectories listed here will be extracted & compiled, but not installed.
|
| 128 |
|
| 129 |
# @ECLASS-VARIABLE: KMEXTRACTONLY
|
| 130 |
# @DESCRIPTION:
|
| 131 |
# All subdirectories listed here will be extracted, but not compiled nor installed.
|
| 132 |
# This can be used to avoid compilation in a subdirectory of a directory in $KMMODULE or $KMEXTRA
|
| 133 |
|
| 134 |
# @ECLASS-VARIABLE: KMTARPARAMS
|
| 135 |
# @DESCRIPTION:
|
| 136 |
# Specify extra parameters to pass to tar, in kde4-meta_src_extract.
|
| 137 |
# '-xpf -j' are passed to tar by default.
|
| 138 |
|
| 139 |
# @FUNCTION: kde4-meta_pkg_setup
|
| 140 |
# @DESCRIPTION:
|
| 141 |
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split
|
| 142 |
# ebuilds.
|
| 143 |
kde4-meta_pkg_setup() {
|
| 144 |
kde4-base_pkg_setup
|
| 145 |
}
|
| 146 |
|
| 147 |
# @FUNCTION: kde4-meta_src_unpack
|
| 148 |
# @DESCRIPTION:
|
| 149 |
# This function unpacks the source for split ebuilds. See also
|
| 150 |
# kde4-meta-src_extract.
|
| 151 |
kde4-meta_src_unpack() {
|
| 152 |
debug-print-function ${FUNCNAME} "$@"
|
| 153 |
|
| 154 |
kde4-meta_src_extract
|
| 155 |
kde4-meta_change_cmakelists
|
| 156 |
}
|
| 157 |
|
| 158 |
# @FUNCTION: kde4-meta_src_extract
|
| 159 |
# @DESCRIPTION:
|
| 160 |
# A function to unpack the source for a split KDE ebuild.
|
| 161 |
# Also see KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and KMTARPARAMS.
|
| 162 |
kde4-meta_src_extract() {
|
| 163 |
local abort tarball tarfile f extractlist
|
| 164 |
tarball="${KMNAME}-${PV}.tar.bz2"
|
| 165 |
tarfile="${DISTDIR}"/${tarball}
|
| 166 |
|
| 167 |
echo "Unpacking parts of ${tarball} to ${WORKDIR}"
|
| 168 |
|
| 169 |
kde4-meta_create_extractlists
|
| 170 |
|
| 171 |
for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake \
|
| 172 |
AUTHORS COPYING INSTALL README NEWS ChangeLog
|
| 173 |
do
|
| 174 |
extractlist="${extractlist} ${KMNAME}-${PV}/${f}"
|
| 175 |
done
|
| 176 |
extractlist="${extractlist} $(__list_needed_subdirectories)"
|
| 177 |
KMTARPARAMS="${KMTARPARAMS} -j"
|
| 178 |
|
| 179 |
pushd "${WORKDIR}" > /dev/null
|
| 180 |
[[ -n ${KDE4_STRICTER} ]] && echo tar -xpf $tarfile $KMTARPARAMS $extractlist >&2
|
| 181 |
tar -xpf $tarfile $KMTARPARAMS $extractlist 2> /dev/null
|
| 182 |
|
| 183 |
# Default $S is based on $P; rename the extracted directory to match $S
|
| 184 |
mv ${KMNAME}-${PV} ${P} || die "Died while moving \"${KMNAME}-${PV}\" to \"${P}\""
|
| 185 |
|
| 186 |
popd > /dev/null
|
| 187 |
|
| 188 |
if [[ -n ${KDE4_STRICTER} ]]; then
|
| 189 |
for f in $(__list_needed_subdirectories fatal); do
|
| 190 |
if [[ ! -e ${S}/${f#*/} ]]; then
|
| 191 |
eerror "'${f#*/}' is missing"
|
| 192 |
abort=true
|
| 193 |
fi
|
| 194 |
done
|
| 195 |
[[ -n ${abort} ]] && die "There were missing files."
|
| 196 |
fi
|
| 197 |
|
| 198 |
kde4-base_src_unpack
|
| 199 |
}
|
| 200 |
|
| 201 |
# Create lists of files and subdirectories to extract.
|
| 202 |
# Also see the descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and KMTARPARAMS.
|
| 203 |
kde4-meta_create_extractlists() {
|
| 204 |
debug-print-function ${FUNCNAME} "$@"
|
| 205 |
|
| 206 |
if has htmlhandbook ${IUSE//+} && use htmlhandbook; then
|
| 207 |
# We use the basename of $KMMODULE because $KMMODULE can contain
|
| 208 |
# the path to the module subdirectory.
|
| 209 |
KMEXTRA_NONFATAL="${KMEXTRA_NONFATAL} doc/${KMMODULE##*/}"
|
| 210 |
fi
|
| 211 |
|
| 212 |
# Add some CMake-files to KMEXTRACTONLY.
|
| 213 |
# Note that this actually doesn't include KMEXTRA handling.
|
| 214 |
# In those cases you should care to add the relevant files to KMEXTRACTONLY
|
| 215 |
case ${KMNAME} in
|
| 216 |
kdebase)
|
| 217 |
KMEXTRACTONLY="${KMEXTRACTONLY}
|
| 218 |
apps/config-apps.h.cmake
|
| 219 |
apps/ConfigureChecks.cmake"
|
| 220 |
;;
|
| 221 |
kdebase-runtime)
|
| 222 |
KMEXTRACTONLY="${KMEXTRACTONLY}
|
| 223 |
config-runtime.h.cmake"
|
| 224 |
;;
|
| 225 |
kdebase-workspace)
|
| 226 |
KMEXTRACTONLY="${KMEXTRACTONLY}
|
| 227 |
config-unix.h.cmake
|
| 228 |
ConfigureChecks.cmake
|
| 229 |
config-workspace.h.cmake
|
| 230 |
config-X11.h.cmake
|
| 231 |
startkde.cmake"
|
| 232 |
;;
|
| 233 |
kdegames)
|
| 234 |
if [[ ${PN} != "libkdegames" ]]; then
|
| 235 |
KMEXTRACTONLY="${KMEXTRACTONLY}
|
| 236 |
libkdegames"
|
| 237 |
fi
|
| 238 |
;;
|
| 239 |
kdepim)
|
| 240 |
KMEXTRACTONLY="${KMEXTRACTONLY}
|
| 241 |
kleopatra/ConfigureChecks.cmake"
|
| 242 |
if has kontact ${IUSE//+} && use kontact; then
|
| 243 |
KMEXTRA="${KMEXTRA} kontact/plugins/${PLUGINNAME:-${PN}}"
|
| 244 |
KMEXTRACTONLY="${KMEXTRACTONLY} kontactinterfaces/"
|
| 245 |
fi
|
| 246 |
;;
|
| 247 |
koffice)
|
| 248 |
KMEXTRACTONLY="${KMEXTRACTONLY}
|
| 249 |
config-endian.h.cmake
|
| 250 |
filters/config-filters.h.cmake
|
| 251 |
config-openexr.h.cmake
|
| 252 |
config-opengl.h.cmake
|
| 253 |
config-prefix.h.cmake"
|
| 254 |
;;
|
| 255 |
esac
|
| 256 |
# Don't install cmake modules for split ebuilds to avoid collisions.
|
| 257 |
case ${KMNAME} in
|
| 258 |
kdebase-runtime|kdebase-workspace|kdeedu|kdegames|kdegraphics|kdepim)
|
| 259 |
case ${PN} in
|
| 260 |
libkdegames|libkdeedu|marble)
|
| 261 |
KMEXTRA="${KMEXTRA}
|
| 262 |
cmake/modules/"
|
| 263 |
;;
|
| 264 |
|
| 265 |
*)
|
| 266 |
KMCOMPILEONLY="${KMCOMPILEONLY}
|
| 267 |
cmake/modules/"
|
| 268 |
;;
|
| 269 |
esac
|
| 270 |
;;
|
| 271 |
esac
|
| 272 |
|
| 273 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}"
|
| 274 |
}
|
| 275 |
|
| 276 |
__list_needed_subdirectories() {
|
| 277 |
local i j kmextra kmextra_expanded kmmodule_expanded kmcompileonly_expanded extractlist topdir
|
| 278 |
|
| 279 |
# We expand KMEXTRA by adding CMakeLists.txt files
|
| 280 |
kmextra="${KMEXTRA}"
|
| 281 |
[[ ${1} != fatal ]] && kmextra="${kmextra} ${KMEXTRA_NONFATAL}"
|
| 282 |
for i in ${kmextra}; do
|
| 283 |
kmextra_expanded="${kmextra_expanded} ${i}"
|
| 284 |
j=$(dirname ${i})
|
| 285 |
while [[ ${j} != "." ]]; do
|
| 286 |
kmextra_expanded="${kmextra_expanded} ${j}/CMakeLists.txt";
|
| 287 |
j=$(dirname ${j})
|
| 288 |
done
|
| 289 |
done
|
| 290 |
|
| 291 |
# Expand KMMODULE
|
| 292 |
if [[ -n ${KMMODULE} ]]; then
|
| 293 |
kmmodule_expanded="${KMMODULE}"
|
| 294 |
j=$(dirname ${KMMODULE})
|
| 295 |
while [[ ${j} != "." ]]; do
|
| 296 |
kmmodule_expanded="${kmmodule_expanded} $j/CMakeLists.txt";
|
| 297 |
j=$(dirname $j)
|
| 298 |
done
|
| 299 |
fi
|
| 300 |
|
| 301 |
# Expand KMCOMPILEONLY
|
| 302 |
for i in ${KMCOMPILEONLY}; do
|
| 303 |
kmcompileonly_expanded="${kmcompileonly_expanded} ${i}"
|
| 304 |
j=$(dirname ${i})
|
| 305 |
while [[ ${j} != "." ]]; do
|
| 306 |
kmcompileonly_expanded="${kmcompileonly_expanded} ${j}/CMakeLists.txt";
|
| 307 |
j=$(dirname ${j})
|
| 308 |
done
|
| 309 |
done
|
| 310 |
|
| 311 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmextra_expanded: ${kmextra_expanded}"
|
| 312 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmmodule_expanded: ${kmmodule_expanded}"
|
| 313 |
debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME} - kmcompileonly_expanded: ${kmcompileonly_expanded}"
|
| 314 |
|
| 315 |
|
| 316 |
case ${PV} in
|
| 317 |
scm|9999*) : ;;
|
| 318 |
*) topdir="${KMNAME}-${PV}/" ;;
|
| 319 |
esac
|
| 320 |
|
| 321 |
# Create final list of stuff to extract
|
| 322 |
for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \
|
| 323 |
${KMEXTRACTONLY}
|
| 324 |
do
|
| 325 |
extractlist="${extractlist} ${topdir}${i}"
|
| 326 |
done
|
| 327 |
|
| 328 |
echo ${extractlist}
|
| 329 |
}
|
| 330 |
|
| 331 |
save_library_dependencies() {
|
| 332 |
local depsfile="${T}/${PN}:${SLOT}"
|
| 333 |
|
| 334 |
echo "Saving library dependendencies in ${depsfile##*/}"
|
| 335 |
echo "EXPORT_LIBRARY_DEPENDENCIES(\"${depsfile}\")" >> "${S}/CMakeLists.txt" || \
|
| 336 |
die "Failed to save the library dependencies."
|
| 337 |
}
|
| 338 |
|
| 339 |
install_library_dependencies() {
|
| 340 |
local depsfile="${T}/${PN}:${SLOT}"
|
| 341 |
echo "Installing library dependendencies as ${depsfile##*/}"
|
| 342 |
insinto /var/lib/kde
|
| 343 |
doins "${depsfile}" || die "Failed to install library dependencies."
|
| 344 |
}
|
| 345 |
|
| 346 |
load_library_dependencies() {
|
| 347 |
local pn i depsfile
|
| 348 |
echo "Injecting library dependendencies from '${KMLOADLIBS}'"
|
| 349 |
|
| 350 |
i=0
|
| 351 |
for pn in ${KMLOADLIBS} ; do
|
| 352 |
((i++))
|
| 353 |
depsfile="/var/lib/kde/${pn}:${SLOT}"
|
| 354 |
[[ -r "${depsfile}" ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}."
|
| 355 |
sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \
|
| 356 |
die "Failed to include library dependencies for ${pn}"
|
| 357 |
done
|
| 358 |
}
|
| 359 |
|
| 360 |
# @FUNCTION: kde4-meta_src_compile
|
| 361 |
# @DESCRIPTION:
|
| 362 |
# General function for compiling split KDE4 applications.
|
| 363 |
kde4-meta_src_compile() {
|
| 364 |
debug-print-function ${FUNCNAME} "$@"
|
| 365 |
|
| 366 |
case "${EAPI}" in
|
| 367 |
2 | 2_pre3 | 2_pre2 | 2_pre1)
|
| 368 |
;;
|
| 369 |
*)
|
| 370 |
kde4-base_meta_configure
|
| 371 |
;;
|
| 372 |
esac
|
| 373 |
kde4-meta_src_make
|
| 374 |
}
|
| 375 |
|
| 376 |
_change_cmakelists_parent_dirs() {
|
| 377 |
debug-print-function ${FUNCNAME} "$@"
|
| 378 |
|
| 379 |
local _olddir _dir
|
| 380 |
_dir="${S}"/${1}
|
| 381 |
until [[ ${_dir} == "${S}" ]]; do
|
| 382 |
_olddir=$(basename "${_dir}")
|
| 383 |
_dir=$(dirname "${_dir}")
|
| 384 |
debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}"
|
| 385 |
if [[ -f ${_dir}/CMakeLists.txt ]]; then
|
| 386 |
sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \
|
| 387 |
-e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \
|
| 388 |
-i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}"
|
| 389 |
fi
|
| 390 |
done
|
| 391 |
}
|
| 392 |
|
| 393 |
kde4-meta_change_cmakelists() {
|
| 394 |
debug-print-function ${FUNCNAME} "$@"
|
| 395 |
|
| 396 |
pushd "${S}" > /dev/null
|
| 397 |
|
| 398 |
if [[ -n ${KMSAVELIBS} ]] ; then
|
| 399 |
save_library_dependencies
|
| 400 |
fi
|
| 401 |
|
| 402 |
if [[ -n ${KMLOADLIBS} ]] ; then
|
| 403 |
load_library_dependencies
|
| 404 |
fi
|
| 405 |
|
| 406 |
comment_all_add_subdirectory ./
|
| 407 |
|
| 408 |
# Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt
|
| 409 |
if [[ -f "${S}"/CMakeLists.txt ]]; then
|
| 410 |
sed -e '/add_subdirectory[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \
|
| 411 |
-e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \
|
| 412 |
-i "${S}"/CMakeLists.txt || die "${LINENO}: cmake sed died"
|
| 413 |
fi
|
| 414 |
|
| 415 |
if [[ -z ${KMNOMODULE} ]]; then
|
| 416 |
# Restore "add_subdirectory" in $KMMODULE subdirectories
|
| 417 |
find "${S}"/${KMMODULE} -name CMakeLists.txt -print0 | xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \
|
| 418 |
die "${LINENO}: died in KMMODULE section"
|
| 419 |
_change_cmakelists_parent_dirs ${KMMODULE}
|
| 420 |
fi
|
| 421 |
|
| 422 |
# KMCOMPILEONLY
|
| 423 |
local i
|
| 424 |
for i in ${KMCOMPILEONLY}; do
|
| 425 |
debug-print "${LINENO}: KMCOMPILEONLY, processing ${i}"
|
| 426 |
# Uncomment "add_subdirectory" instructions inside $KMCOMPILEONLY, then comment "install" instructions.
|
| 427 |
find "${S}"/${i} -name CMakeLists.txt -print0 | \
|
| 428 |
xargs -0 sed -i \
|
| 429 |
-e 's/^#DONOTCOMPILE //g' \
|
| 430 |
-e '/install(.*)/{s/^/#DONOTINSTALL /;}' \
|
| 431 |
-e '/^install(/,/)/{s/^/#DONOTINSTALL /;}' \
|
| 432 |
-e '/kde4_install_icons(.*)/{s/^/#DONOTINSTALL /;}' || \
|
| 433 |
die "${LINENO}: sed died in the KMCOMPILEONLY section while processing ${i}"
|
| 434 |
_change_cmakelists_parent_dirs ${i}
|
| 435 |
done
|
| 436 |
|
| 437 |
# KMEXTRA section
|
| 438 |
for i in ${KMEXTRA}; do
|
| 439 |
debug-print "${LINENO}: KMEXTRA section, processing ${i}"
|
| 440 |
find "${S}"/${i} -name CMakeLists.txt -print0 | \
|
| 441 |
xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \
|
| 442 |
die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}"
|
| 443 |
_change_cmakelists_parent_dirs ${i}
|
| 444 |
done
|
| 445 |
# KMEXTRA_NONFATAL section
|
| 446 |
for i in ${KMEXTRA_NONFATAL}; do
|
| 447 |
if [[ -d "${S}"/${i} ]]; then
|
| 448 |
find "${S}"/${i} -name CMakeLists.txt -print0 | \
|
| 449 |
xargs -0 sed -i -e 's/^#DONOTCOMPILE //g' || \
|
| 450 |
die "${LINENO}: sed died uncommenting add_subdirectory instructions in KMEXTRA section while processing ${i}"
|
| 451 |
_change_cmakelists_parent_dirs ${i}
|
| 452 |
fi
|
| 453 |
done
|
| 454 |
|
| 455 |
# KMEXTRACTONLY section - Some ebuilds need to comment out some subdirs in KMMODULE and they use KMEXTRACTONLY
|
| 456 |
for i in ${KMEXTRACTONLY}; do
|
| 457 |
if [[ -d "${S}"/${i} && -f "${S}"/${i}/../CMakeLists.txt ]]; then
|
| 458 |
sed -i -e "/([[:space:]]*$(basename $i)[[:space:]]*)/s/^/#DONOTCOMPILE /" "${S}"/${i}/../CMakeLists.txt || \
|
| 459 |
die "${LINENO}: sed died while working in the KMEXTRACTONLY section while processing ${i}"
|
| 460 |
fi
|
| 461 |
done
|
| 462 |
|
| 463 |
case ${KMNAME} in
|
| 464 |
kdebase-workspace)
|
| 465 |
# COLLISION PROTECT section
|
| 466 |
# Only install the startkde script as part of kde-base/kdebase-startkde,
|
| 467 |
# instead of with every package.
|
| 468 |
if [[ ${PN} != "kdebase-startkde" && -f "${S}"/CMakeLists.txt ]]; then
|
| 469 |
case ${PV} in
|
| 470 |
*) # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0.
|
| 471 |
sed -i -e '/startkde/s/^/#DONOTINSTALL /' "${S}"/CMakeLists.txt || \
|
| 472 |
die "${LINENO}: sed died in the kdebase-startkde collision prevention section"
|
| 473 |
;;
|
| 474 |
esac
|
| 475 |
fi
|
| 476 |
;;
|
| 477 |
kdebase-runtime)
|
| 478 |
# COLLISION PROTECT section
|
| 479 |
# Only install the kde4 script as part of kde-base/kdebase-data
|
| 480 |
if [[ ${PN} != "kdebase-data" && -f "${S}"/CMakeLists.txt ]]; then
|
| 481 |
sed -i -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \
|
| 482 |
"${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed"
|
| 483 |
fi
|
| 484 |
;;
|
| 485 |
kdepim)
|
| 486 |
case ${PN} in
|
| 487 |
kaddressbook|kalarm|kmailcvt|kontact|korganizer|korn)
|
| 488 |
sed -i -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \
|
| 489 |
-e '/add_custom_target(kmail_xml /,/)/p' "${S}"/kmail/CMakeLists.txt || die "uncommenting xml failed"
|
| 490 |
_change_cmakelists_parent_dirs kmail
|
| 491 |
;;
|
| 492 |
esac
|
| 493 |
;;
|
| 494 |
kdeutils)
|
| 495 |
# This is sort of a hack to avoid patching 16 kdeutils packages with
|
| 496 |
# r775410 from upstream trunk which makes blitz optional so superkaramba
|
| 497 |
# only gets compiled when it is found. Bug #209324. Remove this no later
|
| 498 |
# than 4.1.
|
| 499 |
if [[ ${PN} != superkaramba && ${SLOT} == kde-4 ]]; then
|
| 500 |
sed -i -e '/find_package(Blitz REQUIRED)/d' "${S}"/CMakeLists.txt \
|
| 501 |
|| die "${LINENO}: sed to remove dependency on Blitz failed."
|
| 502 |
fi
|
| 503 |
;;
|
| 504 |
koffice)
|
| 505 |
if [[ ${PN} != koffice-libs ]]; then
|
| 506 |
sed -i -e '/^INSTALL(FILES.*koffice.desktop/ s/^/#DONOTINSTALL /' \
|
| 507 |
doc/CMakeLists.txt || \
|
| 508 |
die "${LINENO}: sed died in the koffice.desktop collision prevention section"
|
| 509 |
fi
|
| 510 |
;;
|
| 511 |
esac
|
| 512 |
|
| 513 |
popd > /dev/null
|
| 514 |
}
|
| 515 |
|
| 516 |
# @FUNCTION: kde4-meta_src_configure
|
| 517 |
# @DESCRIPTION:
|
| 518 |
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split
|
| 519 |
# ebuilds.
|
| 520 |
kde4-meta_src_configure() {
|
| 521 |
debug-print-function ${FUNCNAME} "$@"
|
| 522 |
|
| 523 |
kde4-base_src_configure
|
| 524 |
}
|
| 525 |
|
| 526 |
# @FUNCTION: kde4-meta_src_make
|
| 527 |
# @DESCRIPTION:
|
| 528 |
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split
|
| 529 |
# ebuilds.
|
| 530 |
kde4-meta_src_make() {
|
| 531 |
debug-print-function ${FUNCNAME} "$@"
|
| 532 |
|
| 533 |
kde4-base_src_make
|
| 534 |
}
|
| 535 |
|
| 536 |
# @FUNCTION: kde4-meta_src_test
|
| 537 |
# @DESCRIPTION:
|
| 538 |
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split
|
| 539 |
# ebuilds.
|
| 540 |
kde4-meta_src_test() {
|
| 541 |
debug-print-function $FUNCNAME "$@"
|
| 542 |
|
| 543 |
kde4-base_src_test
|
| 544 |
}
|
| 545 |
|
| 546 |
# @FUNCTION: kde4-meta_src_install
|
| 547 |
# @DESCRIPTION:
|
| 548 |
# Function for installing KDE4 split applications.
|
| 549 |
kde4-meta_src_install() {
|
| 550 |
debug-print-function $FUNCNAME "$@"
|
| 551 |
|
| 552 |
kde4-meta_src_make_doc
|
| 553 |
cmake-utils_src_install
|
| 554 |
|
| 555 |
if [[ -n ${KMSAVELIBS} ]] ; then
|
| 556 |
install_library_dependencies
|
| 557 |
fi
|
| 558 |
}
|
| 559 |
|
| 560 |
# @FUNCTION: kde4-meta_src_make_doc
|
| 561 |
# @DESCRIPTION:
|
| 562 |
# This function searches under ${S}/${KMMODULE},
|
| 563 |
# and tries to install "AUTHORS ChangeLog* README* NEWS todo" if these files exist.
|
| 564 |
kde4-meta_src_make_doc() {
|
| 565 |
debug-print-function $FUNCNAME "$@"
|
| 566 |
|
| 567 |
local doc
|
| 568 |
for doc in AUTHORS ChangeLog* README* NEWS TODO; do
|
| 569 |
[[ -s ${KMMODULE}/$doc ]] && newdoc "${KMMODULE}/${doc}" "${doc}.${KMMODULE##*/}"
|
| 570 |
done
|
| 571 |
|
| 572 |
kde4-base_src_make_doc
|
| 573 |
}
|
| 574 |
|
| 575 |
# @FUNCTION: kde4-meta_pkg_postinst
|
| 576 |
# @DESCRIPTION:
|
| 577 |
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split
|
| 578 |
# ebuilds.
|
| 579 |
kde4-meta_pkg_postinst() {
|
| 580 |
kde4-base_pkg_postinst
|
| 581 |
}
|
| 582 |
|
| 583 |
# @FUNCTION: kde4-meta_pkg_postrm
|
| 584 |
# @DESCRIPTION:
|
| 585 |
# Currently just calls its equivalent in kde4-base.eclass(5). Use this in split
|
| 586 |
# ebuilds.
|
| 587 |
kde4-meta_pkg_postrm() {
|
| 588 |
kde4-base_pkg_postrm
|
| 589 |
}
|