| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2012 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.31 2009/12/14 19:44:15 abcd Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.60 2012/03/06 22:23:51 dilfridge Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: kde4-meta.eclass |
5 | # @ECLASS: kde4-meta.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # @BLURB: Eclass for writing "split" KDE packages. |
8 | # @BLURB: Eclass for writing "split" KDE packages. |
| … | |
… | |
| 10 | # This eclass provides all necessary functions for writing split KDE ebuilds. |
10 | # This eclass provides all necessary functions for writing split KDE ebuilds. |
| 11 | # |
11 | # |
| 12 | # You must define KMNAME to use this eclass, and do so before inheriting it. All other variables are optional. |
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. |
13 | # Do not include the same item in more than one of KMMODULE, KMMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY. |
| 14 | |
14 | |
|
|
15 | [[ -z ${KMNAME} ]] && die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild" |
|
|
16 | |
| 15 | inherit kde4-base versionator |
17 | inherit kde4-base versionator |
| 16 | |
18 | |
| 17 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_postinst pkg_postrm |
19 | KDEMETA_EXPF="pkg_setup src_unpack src_prepare src_configure src_compile src_test src_install pkg_preinst pkg_postinst pkg_postrm" |
| 18 | |
20 | EXPORT_FUNCTIONS ${KDEMETA_EXPF} |
| 19 | [[ -z ${KMNAME} ]] && die "kde4-meta.eclass inherited but KMNAME not defined - broken ebuild" |
|
|
| 20 | |
|
|
| 21 | # Add khelpcenter dependency when installing handbooks |
|
|
| 22 | if [[ ${PN} != khelpcenter ]] && has handbook ${IUSE//+}; then |
|
|
| 23 | RDEPEND+=" handbook? ( $(add_kdebase_dep khelpcenter) )" |
|
|
| 24 | fi |
|
|
| 25 | |
21 | |
| 26 | # Add dependencies that all packages in a certain module share. |
22 | # Add dependencies that all packages in a certain module share. |
| 27 | case ${KMNAME} in |
23 | case ${KMNAME} in |
| 28 | kdebase|kdebase-apps|kdebase-workspace|kdebase-runtime|kdegraphics) |
24 | kdebase|kdebase-apps|kde-baseapps|kdebase-workspace|kde-workspace|kdebase-runtime|kde-runtime|kdegraphics) |
| 29 | COMMONDEPEND+=" >=kde-base/qimageblitz-0.0.4" |
25 | COMMONDEPEND+=" >=media-libs/qimageblitz-0.0.4" |
| 30 | ;; |
26 | ;; |
| 31 | kdepim|kdepim-runtime) |
27 | kdepim|kdepim-runtime) |
| 32 | COMMONDEPEND+=" $(add_kdebase_dep kdepimlibs)" |
|
|
| 33 | case ${PN} in |
28 | case ${PN} in |
| 34 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
29 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
| 35 | IUSE+=" +kontact" |
30 | IUSE+=" +kontact" |
| 36 | if ! slot_is_at_least 4.4 ${SLOT}; then |
|
|
| 37 | RDEPEND+=" kontact? ( $(add_kdebase_dep kontactinterfaces) )" |
31 | RDEPEND+=" kontact? ( $(add_kdebase_dep kontact) )" |
| 38 | fi |
|
|
| 39 | ;; |
32 | ;; |
| 40 | esac |
33 | esac |
| 41 | ;; |
34 | ;; |
| 42 | kdegames) |
35 | kdegames) |
| 43 | if [[ ${PN} != libkdegames ]]; then |
36 | if [[ ${PN} != libkdegames ]]; then |
| … | |
… | |
| 76 | debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after metapackage-specific dependencies" |
69 | debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after metapackage-specific dependencies" |
| 77 | |
70 | |
| 78 | # Useful to build kde4-meta style stuff from extragear/playground (plasmoids etc) |
71 | # Useful to build kde4-meta style stuff from extragear/playground (plasmoids etc) |
| 79 | case ${BUILD_TYPE} in |
72 | case ${BUILD_TYPE} in |
| 80 | live) |
73 | live) |
|
|
74 | if [[ ${KDE_SCM} == svn ]]; then |
| 81 | case ${KMNAME} in |
75 | case ${KMNAME} in |
| 82 | extragear*|playground*) |
76 | extragear*|playground*) |
| 83 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
77 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
| 84 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
78 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
| 85 | ;; |
79 | ;; |
| 86 | esac |
80 | esac |
|
|
81 | fi |
| 87 | ;; |
82 | ;; |
| 88 | esac |
83 | esac |
| 89 | |
84 | |
| 90 | # @ECLASS-VARIABLE: KMNAME |
85 | # @ECLASS-VARIABLE: KMNAME |
| 91 | # @DESCRIPTION: |
86 | # @DESCRIPTION: |
| … | |
… | |
| 106 | # If set to "true", $KMMODULE doesn't have to be defined. |
101 | # If set to "true", $KMMODULE doesn't have to be defined. |
| 107 | # |
102 | # |
| 108 | # Example usage: If you're installing subdirectories of a package, like plugins, |
103 | # Example usage: If you're installing subdirectories of a package, like plugins, |
| 109 | # you mark the top subdirectory (containing the package) as $KMEXTRACTONLY, and |
104 | # you mark the top subdirectory (containing the package) as $KMEXTRACTONLY, and |
| 110 | # set KMNOMODULE="true". |
105 | # set KMNOMODULE="true". |
| 111 | if [[ -z ${KMMODULE} && ${KMNOMODULE} != true ]]; then |
106 | if [[ -z ${KMMODULE} ]] && [[ ${KMNOMODULE} != true ]]; then |
| 112 | KMMODULE=${PN} |
107 | KMMODULE=${PN} |
| 113 | fi |
108 | fi |
| 114 | |
109 | |
| 115 | # @ECLASS-VARIABLE: KMEXTRA |
110 | # @ECLASS-VARIABLE: KMEXTRA |
| 116 | # @DESCRIPTION: |
111 | # @DESCRIPTION: |
| 117 | # All subdirectories listed here will be extracted, compiled & installed. |
112 | # All subdirectories listed here will be extracted, compiled & installed. |
| 118 | # $KMMODULE is always added to $KMEXTRA. |
113 | # $KMMODULE is always added to $KMEXTRA. |
| 119 | # If the handbook USE-flag is set, and if this directory exists, |
114 | # If KDE_HANDBOOK is 'always' or 'optional' and handbook USE-flag is set, and if this |
| 120 | # then "doc/$KMMODULE" is added to $KMEXTRA. In other cases, this should be |
115 | # directory exists, then "doc/$KMMODULE" is added to $KMEXTRA. If there's additional |
| 121 | # handled in the ebuild. |
|
|
| 122 | # If the documentation is in a different subdirectory, you should add it to KMEXTRA. |
116 | # documentation in different subdirectories, it should be added to KMEXTRA manually.. |
| 123 | |
117 | |
| 124 | # @ECLASS-VARIABLE: KMCOMPILEONLY |
118 | # @ECLASS-VARIABLE: KMCOMPILEONLY |
| 125 | # @DESCRIPTION: |
119 | # @DESCRIPTION: |
| 126 | # All subdirectories listed here will be extracted & compiled, but not installed. |
120 | # All subdirectories listed here will be extracted & compiled, but not installed. |
| 127 | |
121 | |
| … | |
… | |
| 136 | # Specify extra parameters to pass to tar, in kde4-meta_src_extract. |
130 | # Specify extra parameters to pass to tar, in kde4-meta_src_extract. |
| 137 | # '-xpf -j' are passed to tar by default. |
131 | # '-xpf -j' are passed to tar by default. |
| 138 | |
132 | |
| 139 | # @FUNCTION: kde4-meta_pkg_setup |
133 | # @FUNCTION: kde4-meta_pkg_setup |
| 140 | # @DESCRIPTION: |
134 | # @DESCRIPTION: |
| 141 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this one in |
135 | # Currently calls its equivalent in kde4-base.eclass(5) and checks the gcc version. |
| 142 | # split ebuilds. |
136 | # Use this one in split ebuilds. |
| 143 | kde4-meta_pkg_setup() { |
137 | kde4-meta_pkg_setup() { |
| 144 | debug-print-function ${FUNCNAME} "$@" |
138 | debug-print-function ${FUNCNAME} "$@" |
| 145 | |
139 | |
| 146 | kde4-base_pkg_setup |
140 | kde4-base_pkg_setup |
| 147 | } |
141 | } |
| 148 | |
142 | |
| 149 | # @FUNCTION: kde4-meta_src_unpack |
143 | # @FUNCTION: kde4-meta_src_unpack |
| 150 | # @DESCRIPTION: |
144 | # @DESCRIPTION: |
| 151 | # This function unpacks the source for split ebuilds. See also |
145 | # This function unpacks the source for split ebuilds. |
| 152 | # kde4-meta-src_extract. |
146 | # Further more is processed in kde4-meta_src_extract |
| 153 | kde4-meta_src_unpack() { |
147 | kde4-meta_src_unpack() { |
| 154 | debug-print-function ${FUNCNAME} "$@" |
148 | debug-print-function ${FUNCNAME} "$@" |
| 155 | |
149 | |
| 156 | if [[ ${BUILD_TYPE} = live ]]; then |
150 | if [[ ${BUILD_TYPE} = live ]]; then |
|
|
151 | case "${KDE_SCM}" in |
|
|
152 | svn) |
| 157 | migrate_store_dir |
153 | migrate_store_dir |
| 158 | S="${WORKDIR}/${P}" |
154 | S="${WORKDIR}/${P}" |
| 159 | mkdir -p "${S}" |
155 | mkdir -p "${S}" |
| 160 | ESVN_RESTRICT="export" subversion_src_unpack |
156 | ESVN_RESTRICT="export" subversion_src_unpack |
| 161 | subversion_wc_info |
157 | subversion_wc_info |
| 162 | subversion_bootstrap |
158 | subversion_bootstrap |
|
|
159 | ;; |
|
|
160 | git) |
|
|
161 | git-2_src_unpack |
|
|
162 | ;; |
|
|
163 | esac |
|
|
164 | fi |
| 163 | kde4-meta_src_extract |
165 | kde4-meta_src_extract |
| 164 | else |
|
|
| 165 | kde4-meta_src_extract |
|
|
| 166 | fi |
|
|
| 167 | } |
166 | } |
| 168 | |
|
|
| 169 | # FIXME: the difference between kde4-meta_src_extract and kde4-meta_src_unpack? |
|
|
| 170 | |
167 | |
| 171 | # @FUNCTION: kde4-meta_src_extract |
168 | # @FUNCTION: kde4-meta_src_extract |
| 172 | # @DESCRIPTION: |
169 | # @DESCRIPTION: |
| 173 | # A function to unpack the source for a split KDE ebuild. |
170 | # A function to extract the source for a split KDE ebuild. |
| 174 | # Also see KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and |
171 | # Also see KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and |
| 175 | # KMTARPARAMS. |
172 | # KMTARPARAMS. |
| 176 | kde4-meta_src_extract() { |
173 | kde4-meta_src_extract() { |
| 177 | debug-print-function ${FUNCNAME} "$@" |
174 | debug-print-function ${FUNCNAME} "$@" |
| 178 | |
175 | |
| 179 | if [[ ${BUILD_TYPE} = live ]]; then |
176 | if [[ ${BUILD_TYPE} = live ]]; then |
| 180 | local rsync_options subdir kmnamedir targetdir |
|
|
| 181 | # Export working copy to ${S} |
177 | # Export working copy to ${S} |
| 182 | einfo "Exporting parts of working copy to ${S}" |
178 | einfo "Exporting parts of working copy to ${S}" |
| 183 | kde4-meta_create_extractlists |
179 | kde4-meta_create_extractlists |
| 184 | |
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/" |
185 | rsync_options="--group --links --owner --perms --quiet --exclude=.svn/ --exclude=.git/" |
|
|
186 | wc_path="${ESVN_WC_PATH}" |
|
|
187 | escm="{ESVN}" |
| 186 | |
188 | |
| 187 | # Copy ${KMNAME} non-recursively (toplevel files) |
189 | # Copy ${KMNAME} non-recursively (toplevel files) |
| 188 | rsync ${rsync_options} "${ESVN_WC_PATH}"/${kmnamedir}* "${S}" \ |
190 | rsync ${rsync_options} "${wc_path}"/* "${S}" \ |
| 189 | || die "${ESVN}: can't export toplevel files to '${S}'." |
191 | || die "${escm}: can't export toplevel files to '${S}'." |
| 190 | # Copy cmake directory |
192 | # Copy cmake directory |
| 191 | if [[ -d "${ESVN_WC_PATH}/${kmnamedir}cmake" ]]; then |
193 | if [[ -d "${wc_path}/cmake" ]]; then |
| 192 | rsync --recursive ${rsync_options} "${ESVN_WC_PATH}/${kmnamedir}cmake" "${S}" \ |
194 | rsync --recursive ${rsync_options} "${wc_path}/cmake" "${S}" \ |
| 193 | || die "${ESVN}: can't export cmake files to '${S}'." |
195 | || die "${escm}: can't export cmake files to '${S}'." |
| 194 | fi |
196 | fi |
| 195 | # Copy all subdirectories |
197 | # Copy all subdirectories |
| 196 | for subdir in $(__list_needed_subdirectories); do |
198 | for subdir in $(__list_needed_subdirectories); do |
| 197 | targetdir="" |
199 | targetdir="" |
| 198 | if [[ $subdir = doc/* && ! -e "$ESVN_WC_PATH/$kmnamedir$subdir" ]]; then |
200 | if [[ $subdir = doc/* && ! -e "$wc_path/$subdir" ]]; then |
| 199 | continue |
201 | continue |
| 200 | fi |
202 | fi |
| 201 | |
203 | |
| 202 | [[ ${subdir%/} = */* ]] && targetdir=${subdir%/} && targetdir=${targetdir%/*} && mkdir -p "${S}/${targetdir}" |
204 | [[ ${subdir%/} = */* ]] && targetdir=${subdir%/} && targetdir=${targetdir%/*} && mkdir -p "${S}/${targetdir}" |
| 203 | rsync --recursive ${rsync_options} "${ESVN_WC_PATH}/${kmnamedir}${subdir%/}" "${S}/${targetdir}" \ |
205 | rsync --recursive ${rsync_options} "${wc_path}/${subdir%/}" "${S}/${targetdir}" \ |
| 204 | || die "${ESVN}: can't export subdirectory '${subdir}' to '${S}/${targetdir}'." |
206 | || die "${escm}: can't export subdirectory '${subdir}' to '${S}/${targetdir}'." |
| 205 | done |
207 | done |
| 206 | |
|
|
| 207 | if [[ ${KMNAME} = kdebase-runtime && ${PN} != kdebase-data ]]; then |
|
|
| 208 | sed -i -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
|
|
| 209 | "${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
|
|
| 210 | fi |
|
|
| 211 | else |
|
|
| 212 | local abort tarball tarfile f extractlist moduleprefix postfix |
|
|
| 213 | case ${PV} in |
|
|
| 214 | 4.3.8[05] | 4.3.9[0568]) |
|
|
| 215 | # block for normally packed upstream unstable snapshots |
|
|
| 216 | KMTARPARAMS+=" --bzip2" # bz2 |
|
|
| 217 | postfix="bz2" |
|
|
| 218 | ;; |
|
|
| 219 | 4.3.[6-9]*) |
|
|
| 220 | # Not passing --xz, as it doesn't work with stable tar |
|
|
| 221 | KMTARPARAMS+=" --use-compress-program=xz" # xz |
|
|
| 222 | postfix="xz" |
|
|
| 223 | ;; |
|
|
| 224 | *) |
|
|
| 225 | KMTARPARAMS+=" --bzip2" # bz2 |
|
|
| 226 | postfix="bz2" |
|
|
| 227 | ;; |
208 | ;; |
| 228 | esac |
209 | esac |
|
|
210 | else |
|
|
211 | local abort tarball tarfile f extractlist postfix |
|
|
212 | |
|
|
213 | if [[ ${PV} == 4.8.1 ]]; then |
|
|
214 | postfix="xz" |
|
|
215 | KMTARPARAMS+=" --xz" |
|
|
216 | else |
|
|
217 | postfix="bz2" |
|
|
218 | KMTARPARAMS+=" --bzip2" |
|
|
219 | fi |
|
|
220 | |
| 229 | case ${KMNAME} in |
221 | case ${KMNAME} in |
| 230 | kdebase-apps) |
222 | kdebase-apps) |
| 231 | # kdebase/apps -> kdebase-apps |
223 | # kdebase/apps -> kdebase-apps |
| 232 | tarball="kdebase-${PV}.tar.${postfix}" |
224 | tarball="kdebase-${PV}.tar.${postfix}" |
| 233 | # Go one level deeper for kdebase-apps in tarballs |
|
|
| 234 | moduleprefix=apps/ |
|
|
| 235 | KMTARPARAMS+=" --transform=s|apps/||" |
|
|
| 236 | ;; |
225 | ;; |
| 237 | *) |
226 | *) |
| 238 | # Create tarball name from module name (this is the default) |
227 | # Create tarball name from module name (this is the default) |
| 239 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
228 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
| 240 | ;; |
229 | ;; |
| … | |
… | |
| 249 | |
238 | |
| 250 | ebegin "Unpacking parts of ${tarball} to ${WORKDIR}" |
239 | ebegin "Unpacking parts of ${tarball} to ${WORKDIR}" |
| 251 | |
240 | |
| 252 | kde4-meta_create_extractlists |
241 | kde4-meta_create_extractlists |
| 253 | |
242 | |
| 254 | for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake \ |
243 | for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake |
| 255 | AUTHORS COPYING INSTALL README NEWS ChangeLog |
|
|
| 256 | do |
244 | do |
| 257 | extractlist+=" ${topdir}${moduleprefix}${f}" |
245 | extractlist+=" ${topdir}${f}" |
| 258 | done |
246 | done |
| 259 | extractlist+=" $(__list_needed_subdirectories)" |
247 | extractlist+=" $(__list_needed_subdirectories)" |
| 260 | |
248 | |
| 261 | pushd "${WORKDIR}" > /dev/null |
249 | pushd "${WORKDIR}" > /dev/null |
|
|
250 | |
|
|
251 | # @ECLASS-VARIABLE: KDE4_STRICTER |
|
|
252 | # @DESCRIPTION: |
|
|
253 | # Print out all issues found executing tar / kmextract files |
|
|
254 | # Set on if you want to find issues in kde-base ebuild unpack sequences |
| 262 | [[ -n ${KDE4_STRICTER} ]] && echo tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} >&2 |
255 | [[ -n ${KDE4_STRICTER} ]] && echo 'tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist}' |
| 263 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null |
256 | if [[ ${I_KNOW_WHAT_I_AM_DOING} ]]; then |
|
|
257 | # to make the devs happy - bug 338397 |
|
|
258 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} || ewarn "tar extract command failed at least partially - continuing anyway" |
|
|
259 | else |
|
|
260 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null || echo "tar extract command failed at least partially - continuing anyway" |
|
|
261 | fi |
| 264 | |
262 | |
| 265 | # Default $S is based on $P; rename the extracted directory to match $S if necessary |
263 | # Default $S is based on $P; rename the extracted directory to match $S if necessary |
|
|
264 | if [[ ${KMNAME} != ${PN} ]]; then |
| 266 | mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
265 | mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
|
|
266 | fi |
| 267 | |
267 | |
| 268 | popd > /dev/null |
268 | popd > /dev/null |
| 269 | |
269 | |
| 270 | eend $? |
270 | eend $? |
| 271 | |
|
|
| 272 | # We need to clear it here to make verification below work |
|
|
| 273 | unset moduleprefix |
|
|
| 274 | |
271 | |
| 275 | if [[ -n ${KDE4_STRICTER} ]]; then |
272 | if [[ -n ${KDE4_STRICTER} ]]; then |
| 276 | for f in $(__list_needed_subdirectories fatal); do |
273 | for f in $(__list_needed_subdirectories fatal); do |
| 277 | if [[ ! -e "${S}/${f#*/}" ]]; then |
274 | if [[ ! -e ${S}/${f#*/} ]]; then |
| 278 | eerror "'${f#*/}' is missing" |
275 | eerror "'${f#*/}' is missing" |
| 279 | abort=true |
276 | abort=true |
| 280 | fi |
277 | fi |
| 281 | done |
278 | done |
| 282 | [[ -n ${abort} ]] && die "There were missing files." |
279 | [[ -n ${abort} ]] && die "There were missing files." |
| … | |
… | |
| 293 | # Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
290 | # Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
| 294 | # KMEXTRACTONLY and KMTARPARAMS. |
291 | # KMEXTRACTONLY and KMTARPARAMS. |
| 295 | kde4-meta_create_extractlists() { |
292 | kde4-meta_create_extractlists() { |
| 296 | debug-print-function ${FUNCNAME} "$@" |
293 | debug-print-function ${FUNCNAME} "$@" |
| 297 | |
294 | |
| 298 | # TODO change to KMEXTRA for more strict check |
295 | # Add default handbook locations |
| 299 | if has handbook ${IUSE//+} && use handbook && [[ -n ${KMMODULE} ]]; then |
296 | # FIXME - legacy code - remove when 4.4.5 is gone or preferrably port 4.4.5. |
|
|
297 | if [[ $(get_kde_version) < 4.5 ]] && use_if_iuse handbook && [[ -z ${KMNOMODULE} ]]; then |
| 300 | # We use the basename of $KMMODULE because $KMMODULE can contain |
298 | # We use the basename of $KMMODULE because $KMMODULE can contain |
| 301 | # the path to the module subdirectory. |
299 | # the path to the module subdirectory. |
| 302 | KMEXTRA_NONFATAL+=" |
300 | KMEXTRA_NONFATAL+=" |
| 303 | doc/${KMMODULE##*/}" |
301 | doc/${KMMODULE##*/}" |
| 304 | fi |
302 | fi |
| 305 | |
303 | |
|
|
304 | # Add default handbook locations |
|
|
305 | if [[ -z ${KMNOMODULE} ]] && ( [[ ${KDE_HANDBOOK} == always ]] || ( [[ ${KDE_HANDBOOK} == optional ]] && use handbook ) ); then |
|
|
306 | KMEXTRA_NONFATAL+=" doc/${KMMODULE##*/}" |
|
|
307 | fi |
|
|
308 | |
| 306 | # Add some CMake-files to KMEXTRACTONLY. |
309 | # Add some CMake-files to KMEXTRACTONLY. |
| 307 | # Note that this actually doesn't include KMEXTRA handling. |
310 | # Note that this actually doesn't include KMEXTRA handling. |
| 308 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
311 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
| 309 | case ${KMNAME} in |
312 | case ${KMNAME} in |
| 310 | kdebase) |
313 | kdebase | kdebase-apps | kde-baseapps) |
| 311 | KMEXTRACTONLY+=" |
|
|
| 312 | apps/config-apps.h.cmake |
|
|
| 313 | apps/ConfigureChecks.cmake" |
|
|
| 314 | ;; |
|
|
| 315 | kdebase-apps) |
|
|
| 316 | KMEXTRACTONLY+=" |
314 | KMEXTRACTONLY+=" |
| 317 | config-apps.h.cmake |
315 | config-apps.h.cmake |
| 318 | ConfigureChecks.cmake" |
316 | ConfigureChecks.cmake" |
| 319 | ;; |
317 | ;; |
| 320 | kdebase-runtime) |
318 | kdebase-runtime | kde-runtime) |
| 321 | KMEXTRACTONLY+=" |
319 | KMEXTRACTONLY+=" |
| 322 | config-runtime.h.cmake" |
320 | config-runtime.h.cmake" |
| 323 | ;; |
321 | ;; |
| 324 | kdebase-workspace) |
322 | kdebase-workspace | kde-workspace) |
| 325 | KMEXTRACTONLY+=" |
323 | KMEXTRACTONLY+=" |
| 326 | config-unix.h.cmake |
324 | config-unix.h.cmake |
| 327 | ConfigureChecks.cmake |
325 | ConfigureChecks.cmake |
| 328 | config-workspace.h.cmake |
326 | config-workspace.h.cmake |
| 329 | config-X11.h.cmake |
327 | config-X11.h.cmake |
| … | |
… | |
| 332 | ;; |
330 | ;; |
| 333 | kdegames) |
331 | kdegames) |
| 334 | if [[ ${PN} != libkdegames ]]; then |
332 | if [[ ${PN} != libkdegames ]]; then |
| 335 | KMEXTRACTONLY+=" |
333 | KMEXTRACTONLY+=" |
| 336 | libkdegames/" |
334 | libkdegames/" |
|
|
335 | KMLOADLIBS="${KMLOADLIBS} libkdegames" |
| 337 | fi |
336 | fi |
| 338 | ;; |
337 | ;; |
| 339 | kdepim) |
338 | kdepim) |
| 340 | if [[ ${PN} != libkdepim ]]; then |
339 | if [[ ${PN} != libkdepim ]]; then |
| 341 | KMEXTRACTONLY+=" |
340 | KMEXTRACTONLY+=" |
| 342 | libkdepim/" |
341 | libkdepim/" |
| 343 | fi |
342 | fi |
| 344 | case ${SLOT} in |
|
|
| 345 | 4.3|4.4|live) |
|
|
| 346 | KMEXTRACTONLY+=" |
|
|
| 347 | kdepim-version.h |
|
|
| 348 | config-enterprise.h.cmake" |
|
|
| 349 | ;; |
|
|
| 350 | esac |
|
|
| 351 | KMEXTRACTONLY+=" |
343 | KMEXTRACTONLY+=" |
|
|
344 | config-enterprise.h.cmake |
| 352 | kleopatra/ConfigureChecks.cmake" |
345 | kleopatra/ConfigureChecks.cmake" |
| 353 | if has kontact ${IUSE//+} && use kontact; then |
346 | if ! [[ $(get_kde_version) < 4.5 ]]; then |
|
|
347 | KMEXTRACTONLY+=" |
|
|
348 | CTestCustom.cmake |
|
|
349 | kdepim-version.h.cmake" |
|
|
350 | else |
|
|
351 | KMEXTRACTONLY+=" |
|
|
352 | kdepim-version.h" |
|
|
353 | fi |
|
|
354 | if use_if_iuse kontact; then |
| 354 | KMEXTRA+=" |
355 | KMEXTRA+=" |
| 355 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
356 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
| 356 | if ! slot_is_at_least 4.4 ${SLOT}; then |
|
|
| 357 | KMEXTRACTONLY+=" |
|
|
| 358 | kontactinterfaces/" |
|
|
| 359 | fi |
|
|
| 360 | fi |
357 | fi |
| 361 | ;; |
358 | ;; |
| 362 | kdeutils) |
359 | kdeutils) |
| 363 | case ${SLOT} in |
|
|
| 364 | 4.3|4.4|live) |
|
|
| 365 | KMEXTRACTONLY+=" |
360 | KMEXTRACTONLY+=" |
| 366 | kdeutils-version.h" |
361 | kdeutils-version.h" |
| 367 | ;; |
|
|
| 368 | esac |
|
|
| 369 | ;; |
362 | ;; |
| 370 | koffice) |
363 | koffice) |
| 371 | KMEXTRACTONLY+=" |
364 | KMEXTRACTONLY+=" |
| 372 | config-endian.h.cmake |
|
|
| 373 | filters/config-filters.h.cmake |
365 | filters/config-filters.h.cmake |
| 374 | config-openexr.h.cmake |
|
|
| 375 | config-opengl.h.cmake |
|
|
| 376 | config-prefix.h.cmake |
|
|
| 377 | " |
366 | " |
| 378 | case ${PV} in |
367 | case ${PV} in |
| 379 | 2.0.*) |
368 | 2.[12].*) |
| 380 | KMEXTRACTONLY+=" |
369 | KMEXTRACTONLY+=" |
|
|
370 | config-endian.h.cmake |
|
|
371 | config-openexr.h.cmake |
| 381 | config-openctl.h.cmake" |
372 | config-opengl.h.cmake |
|
|
373 | config-prefix.h.cmake" |
| 382 | ;; |
374 | ;; |
| 383 | esac |
375 | esac |
| 384 | ;; |
376 | ;; |
| 385 | esac |
377 | esac |
| 386 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
378 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
|
|
379 | # note: kdegraphics >= 4.6.2 does not even have code to do that, so we |
|
|
380 | # should not try in that case |
|
|
381 | # note2: kdeedu 4.6.4 does not have a cmake/modules/ subdir anymore :( |
|
|
382 | # it may be possible to formulate this shorter, but it should also |
|
|
383 | # still be understandable... |
|
|
384 | if [[ ${KMNAME} != kdegraphics || ( ( $(get_kde_version) != 4.6 || ${PV} < 4.6.2 ) && $(get_kde_version) < 4.7 ) ]] \ |
|
|
385 | && ! [[ ${KMNAME} == kdeedu && ( ${PV} == 4.6.4 || ${PV} == 4.6.5 ) ]]; then |
| 387 | case ${KMNAME} in |
386 | case ${KMNAME} in |
| 388 | kdepim) |
|
|
| 389 | # No need for unpack since 4.2.86 |
|
|
| 390 | # Remove when 4.2 is wiped out from the tree |
|
|
| 391 | case ${PV} in |
|
|
| 392 | 4.2.[0-4]) |
|
|
| 393 | KMCOMPILEONLY+=" |
|
|
| 394 | cmake/modules/" |
|
|
| 395 | ;; |
|
|
| 396 | esac |
|
|
| 397 | ;; |
|
|
| 398 | kdebase-runtime|kdebase-workspace|kdeedu|kdegames|kdegraphics) |
387 | kdebase-runtime|kde-runtime|kdebase-workspace|kde-workspace|kdeedu|kdegames|kdegraphics) |
| 399 | case ${PN} in |
388 | case ${PN} in |
| 400 | libkdegames|libkdeedu|libkworkspace) |
389 | libkdegames|libkdeedu|libkworkspace) |
| 401 | KMEXTRA+=" |
390 | KMEXTRA+=" |
| 402 | cmake/modules/" |
391 | cmake/modules/" |
| 403 | ;; |
392 | ;; |
| 404 | *) |
393 | *) |
| 405 | KMCOMPILEONLY+=" |
394 | KMCOMPILEONLY+=" |
| 406 | cmake/modules/" |
395 | cmake/modules/" |
| 407 | ;; |
396 | ;; |
| 408 | esac |
397 | esac |
| 409 | ;; |
398 | ;; |
| 410 | esac |
399 | esac |
|
|
400 | fi |
| 411 | |
401 | |
| 412 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}" |
402 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}" |
| 413 | } |
403 | } |
| 414 | |
404 | |
| 415 | __list_needed_subdirectories() { |
405 | __list_needed_subdirectories() { |
| … | |
… | |
| 454 | # Create final list of stuff to extract |
444 | # Create final list of stuff to extract |
| 455 | # We append topdir only when specified (usually for tarballs) |
445 | # We append topdir only when specified (usually for tarballs) |
| 456 | for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \ |
446 | for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \ |
| 457 | ${KMEXTRACTONLY} |
447 | ${KMEXTRACTONLY} |
| 458 | do |
448 | do |
| 459 | extractlist+=" ${topdir}${moduleprefix}${i}" |
449 | extractlist+=" ${topdir}${i}" |
| 460 | done |
450 | done |
| 461 | |
451 | |
| 462 | echo ${extractlist} |
452 | echo ${extractlist} |
| 463 | } |
453 | } |
| 464 | |
454 | |
| … | |
… | |
| 470 | |
460 | |
| 471 | kde4-meta_change_cmakelists |
461 | kde4-meta_change_cmakelists |
| 472 | kde4-base_src_prepare |
462 | kde4-base_src_prepare |
| 473 | } |
463 | } |
| 474 | |
464 | |
| 475 | # FIXME: no comment here? |
465 | # @FUNCTION: _change_cmakelists_parent_dirs |
|
|
466 | # @DESCRIPTION: |
|
|
467 | # Adjust CMakeLists.txt to shadow subdirectories |
|
|
468 | # that are not required for the build. |
| 476 | _change_cmakelists_parent_dirs() { |
469 | _change_cmakelists_parent_dirs() { |
| 477 | debug-print-function ${FUNCNAME} "$@" |
470 | debug-print-function ${FUNCNAME} "$@" |
| 478 | |
471 | |
| 479 | local _olddir _dir |
472 | local _olddir _dir |
| 480 | _dir="${S}"/${1} |
473 | _dir="${S}"/${1} |
| 481 | until [[ ${_dir} == "${S}" ]]; do |
474 | until [[ ${_dir} == ${S} ]]; do |
| 482 | _olddir=$(basename "${_dir}") |
475 | _olddir=$(basename "${_dir}") |
| 483 | _dir=$(dirname "${_dir}") |
476 | _dir=$(dirname "${_dir}") |
| 484 | debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}" |
477 | debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}" |
| 485 | if [[ -f ${_dir}/CMakeLists.txt ]]; then |
478 | if [[ -f ${_dir}/CMakeLists.txt ]]; then |
| 486 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
479 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
| … | |
… | |
| 488 | -i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
481 | -i ${_dir}/CMakeLists.txt || die "${LINENO}: died in ${FUNCNAME} while processing ${_dir}" |
| 489 | fi |
482 | fi |
| 490 | done |
483 | done |
| 491 | } |
484 | } |
| 492 | |
485 | |
| 493 | # FIXME: add description |
|
|
| 494 | # @FUNCTION: kde4-meta_change_cmakelists |
486 | # @FUNCTION: kde4-meta_change_cmakelists |
| 495 | # @DESCRIPTION: |
487 | # @DESCRIPTION: |
|
|
488 | # Adjust CMakeLists.txt to comply to our splitting. |
| 496 | kde4-meta_change_cmakelists() { |
489 | kde4-meta_change_cmakelists() { |
| 497 | debug-print-function ${FUNCNAME} "$@" |
490 | debug-print-function ${FUNCNAME} "$@" |
| 498 | |
491 | |
| 499 | pushd "${S}" > /dev/null |
492 | pushd "${S}" > /dev/null |
| 500 | |
493 | |
| … | |
… | |
| 557 | _change_cmakelists_parent_dirs ${i} |
550 | _change_cmakelists_parent_dirs ${i} |
| 558 | fi |
551 | fi |
| 559 | done |
552 | done |
| 560 | |
553 | |
| 561 | case ${KMNAME} in |
554 | case ${KMNAME} in |
| 562 | kdebase-workspace) |
555 | kdebase-workspace | kde-workspace) |
| 563 | # COLLISION PROTECT section |
556 | # COLLISION PROTECT section |
| 564 | # Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
557 | # Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
| 565 | # not as a part of every package. |
558 | # not as a part of every package. |
| 566 | if [[ ${PN} != kdebase-startkde && -f CMakeLists.txt ]]; then |
559 | if [[ ${PN} != kdebase-startkde && -f CMakeLists.txt ]]; then |
| 567 | # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
560 | # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
| 568 | sed -e '/startkde/s/^/#DONOTINSTALL /' \ |
561 | sed -e '/startkde/s/^/#DONOTINSTALL /' \ |
| 569 | -i CMakeLists.txt || die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
562 | -i CMakeLists.txt || die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
| 570 | fi |
563 | fi |
|
|
564 | # Remove workspace target prefix in order to get direct linking to workspace libs |
|
|
565 | sed -e '/set(KDE4WORKSPACE_TARGET_PREFIX/s/^/#OVERRIDE /' \ |
|
|
566 | -i CMakeLists.txt || die "${LINENO}: sed died in KDE4WORKSPACE_TARGET_PREFIX removal section" |
| 571 | # Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
567 | # Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
| 572 | if [[ ${PN} != libkworkspace ]]; then |
568 | if [[ ${PN} != libkworkspace ]]; then |
| 573 | sed -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
569 | sed -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
| 574 | -i CMakeLists.txt || die "${LINENO}: sed died in kdebase-workspace strip config install and fix EXPORT section" |
570 | -i CMakeLists.txt || die "${LINENO}: sed died in kde-workspace strip config install and fix EXPORT section" |
| 575 | fi |
571 | fi |
|
|
572 | if [[ ${PN} != plasma-workspace ]]; then |
|
|
573 | sed -e '/KActivities/s/REQUIRED//' \ |
|
|
574 | -i CMakeLists.txt || die "${LINENO}: sed died in kde-workspace dep reduction section" |
|
|
575 | fi |
| 576 | ;; |
576 | ;; |
| 577 | kdebase-runtime) |
577 | kdebase-runtime | kde-runtime) |
| 578 | # COLLISION PROTECT section |
578 | # COLLISION PROTECT section |
| 579 | # Only install the kde4 script as part of kde-base/kdebase-data |
579 | # Only install the kde4 script as part of kde-base/kdebase-data |
| 580 | if [[ ${PN} != kdebase-data && -f CMakeLists.txt ]]; then |
580 | if [[ ${PN} != kdebase-data && -f CMakeLists.txt ]]; then |
| 581 | sed -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
581 | sed -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
| 582 | -i CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
582 | -i CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
| … | |
… | |
| 586 | # Disable hardcoded kdepimlibs check |
586 | # Disable hardcoded kdepimlibs check |
| 587 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
587 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
| 588 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
588 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 589 | ;; |
589 | ;; |
| 590 | kdepim) |
590 | kdepim) |
|
|
591 | # Disable hardcoded checks |
|
|
592 | sed -r -e '/find_package\(KdepimLibs/s/REQUIRED//' \ |
|
|
593 | -e '/find_package\((KdepimLibs|Boost|QGpgme|Akonadi|ZLIB|Strigi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \ |
|
|
594 | -e '/macro_log_feature\((Boost|QGPGME|Akonadi|ZLIB|STRIGI|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \ |
|
|
595 | -e 's/if[[:space:]]*([[:space:]]*BUILD_.*)[[:space:]]*/if(1) # &/' \ |
|
|
596 | -e 's/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)[[:space:]]*$/if(1) # &/' \ |
|
|
597 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
|
|
598 | # Disable broken or redundant build logic |
|
|
599 | if use_if_iuse kontact || [[ ${PN} = kontact ]]; then |
|
|
600 | sed -e 's/if[[:space:]]*([[:space:]]*BUILD_.*)[[:space:]]*$/if(1) # &/' \ |
|
|
601 | -e 's/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)[[:space:]]*$/if(1) # &/' \ |
|
|
602 | -i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
|
|
603 | fi |
|
|
604 | if [[ $(get_kde_version) < 4.5 ]]; then |
| 591 | case ${PN} in |
605 | case ${PN} in |
| 592 | kaddressbook|kalarm|kmailcvt|kontact|korganizer|korn) |
606 | kalarm|kmailcvt|kontact|korganizer|korn) |
| 593 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
607 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
| 594 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
608 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
| 595 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
609 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
| 596 | _change_cmakelists_parent_dirs kmail |
610 | _change_cmakelists_parent_dirs kmail |
| 597 | ;; |
611 | ;; |
| 598 | esac |
612 | esac |
|
|
613 | fi |
| 599 | ;; |
614 | ;; |
| 600 | kdewebdev) |
615 | kdewebdev) |
| 601 | # Disable hardcoded kdepimlibs check |
616 | # Disable hardcoded checks |
| 602 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
617 | sed -e 's/find_package(KdepimLibs REQUIRED)/macro_optional_find_package(KdepimLibs)/' \ |
| 603 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
618 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
| 604 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
619 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
| 605 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
620 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
| 606 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
621 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 607 | ;; |
622 | ;; |
| 608 | koffice) |
623 | koffice) |
| 609 | # prevent collisions |
624 | # Prevent collisions |
| 610 | if [[ ${PN} != koffice-data ]]; then |
625 | if [[ ${PN} != koffice-data ]]; then |
| 611 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
626 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
| 612 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
627 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
| 613 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
628 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
| 614 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
629 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
| 615 | fi |
630 | fi |
| 616 | # koffice 2.0 |
|
|
| 617 | case ${PV} in |
|
|
| 618 | 2.0.[1-9]) |
|
|
| 619 | sed -i -n -e '1h;1!H;${g;s/install(.\+config-openexr.h.\+)//;p}' \ |
|
|
| 620 | "${S}"/CMakeLists.txt || \ |
|
|
| 621 | die "${LINENO}: sed died in collision prevention section" |
|
|
| 622 | ;; |
|
|
| 623 | *) ;; |
|
|
| 624 | esac |
|
|
| 625 | esac |
631 | esac |
| 626 | |
632 | |
| 627 | popd > /dev/null |
633 | popd > /dev/null |
| 628 | } |
634 | } |
| 629 | |
635 | |
| … | |
… | |
| 684 | # @DESCRIPTION: |
690 | # @DESCRIPTION: |
| 685 | # Function for installing KDE4 split applications. |
691 | # Function for installing KDE4 split applications. |
| 686 | kde4-meta_src_install() { |
692 | kde4-meta_src_install() { |
| 687 | debug-print-function $FUNCNAME "$@" |
693 | debug-print-function $FUNCNAME "$@" |
| 688 | |
694 | |
|
|
695 | # Search ${S}/${KMMODULE} and install common documentation files found |
|
|
696 | local doc |
|
|
697 | for doc in "${S}/${KMMODULE}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
|
|
698 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
|
|
699 | done |
|
|
700 | |
| 689 | kde4-base_src_install |
701 | kde4-base_src_install |
| 690 | } |
702 | } |
| 691 | |
703 | |
| 692 | # @FUNCTION: kde4-meta_src_make_doc |
704 | # @FUNCTION: kde4-meta_pkg_preinst |
| 693 | # @DESCRIPTION: |
705 | # @DESCRIPTION: |
| 694 | # This function searches in ${S}/${KMMODULE}, |
706 | # Invoke its equivalent in kde4-base.eclass. |
| 695 | # and tries to install "AUTHORS ChangeLog* README* NEWS TODO" if these files exist. |
707 | kde4-meta_pkg_preinst() { |
| 696 | kde4-meta_src_make_doc() { |
|
|
| 697 | debug-print-function ${FUNCNAME} "$@" |
708 | debug-print-function ${FUNCNAME} "$@" |
| 698 | |
709 | |
| 699 | local doc |
710 | kde4-base_pkg_preinst |
| 700 | for doc in AUTHORS ChangeLog* README* NEWS TODO; do |
|
|
| 701 | [[ -s ${KMMODULE}/${doc} ]] && newdoc "${KMMODULE}/${doc}" "${doc}.${KMMODULE##*/}" |
|
|
| 702 | done |
|
|
| 703 | |
|
|
| 704 | kde4-base_src_make_doc |
|
|
| 705 | } |
711 | } |
| 706 | |
712 | |
| 707 | # @FUNCTION: kde4-meta_pkg_postinst |
713 | # @FUNCTION: kde4-meta_pkg_postinst |
| 708 | # @DESCRIPTION: |
714 | # @DESCRIPTION: |
| 709 | # Invoke kbuildsycoca4. |
715 | # Invoke kbuildsycoca4. |