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