| 1 | # Copyright 1999-2010 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.37 2010/05/17 01:16:39 reavertm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.68 2012/09/04 14:08:24 johu 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 | |
| 21 | # Add dependencies that all packages in a certain module share. |
22 | # Add dependencies that all packages in a certain module share. |
| 22 | case ${KMNAME} in |
23 | case ${KMNAME} in |
| 23 | kdebase|kdebase-apps|kdebase-workspace|kdebase-runtime|kdegraphics) |
24 | kdebase|kdebase-apps|kde-baseapps|kdebase-workspace|kde-workspace|kdebase-runtime|kde-runtime|kdegraphics) |
| 24 | COMMONDEPEND+=" >=media-libs/qimageblitz-0.0.4" |
25 | COMMONDEPEND+=" >=media-libs/qimageblitz-0.0.4" |
| 25 | ;; |
26 | ;; |
| 26 | kdepim|kdepim-runtime) |
27 | kdepim|kdepim-runtime) |
| 27 | ! slot_is_at_least 4.4 ${SLOT} && COMMONDEPEND+=" $(add_kdebase_dep kdepimlibs)" |
|
|
| 28 | case ${PN} in |
28 | case ${PN} in |
| 29 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
29 | akregator|kaddressbook|kjots|kmail|knode|knotes|korganizer|ktimetracker) |
| 30 | IUSE+=" +kontact" |
30 | IUSE+=" +kontact" |
| 31 | RDEPEND+=" kontact? ( $(add_kdebase_dep kontact) )" |
31 | RDEPEND+=" kontact? ( $(add_kdebase_dep kontact) )" |
| 32 | ;; |
32 | ;; |
| … | |
… | |
| 35 | kdegames) |
35 | kdegames) |
| 36 | if [[ ${PN} != libkdegames ]]; then |
36 | if [[ ${PN} != libkdegames ]]; then |
| 37 | COMMONDEPEND+=" $(add_kdebase_dep libkdegames)" |
37 | COMMONDEPEND+=" $(add_kdebase_dep libkdegames)" |
| 38 | fi |
38 | fi |
| 39 | ;; |
39 | ;; |
| 40 | koffice) |
|
|
| 41 | [[ ${PN} != koffice-data ]] && IUSE+=" debug" |
|
|
| 42 | RDEPEND+=" |
|
|
| 43 | !app-office/${PN}:0 |
|
|
| 44 | !app-office/koffice:0 |
|
|
| 45 | !app-office/koffice-meta:0 |
|
|
| 46 | " |
|
|
| 47 | if has openexr ${IUSE//+}; then |
|
|
| 48 | COMMONDEPEND+=" media-gfx/imagemagick[openexr?]" |
|
|
| 49 | else |
|
|
| 50 | COMMONDEPEND+=" media-gfx/imagemagick" |
|
|
| 51 | fi |
|
|
| 52 | |
|
|
| 53 | COMMONDEPEND+=" |
|
|
| 54 | dev-cpp/eigen:2 |
|
|
| 55 | media-libs/fontconfig |
|
|
| 56 | media-libs/freetype:2 |
|
|
| 57 | " |
|
|
| 58 | if [[ ${PN} != koffice-libs && ${PN} != koffice-data ]]; then |
|
|
| 59 | COMMONDEPEND+=" >=app-office/koffice-libs-${PV}:${SLOT}" |
|
|
| 60 | fi |
|
|
| 61 | ;; |
|
|
| 62 | esac |
40 | esac |
| 63 | |
41 | |
| 64 | DEPEND+=" ${COMMONDEPEND}" |
42 | DEPEND+=" ${COMMONDEPEND}" |
| 65 | RDEPEND+=" ${COMMONDEPEND}" |
43 | RDEPEND+=" ${COMMONDEPEND}" |
| 66 | unset COMMONDEPEND |
44 | unset COMMONDEPEND |
| 67 | |
45 | |
| 68 | debug-print "line ${LINENO} ${ECLASS}: DEPEND ${DEPEND} - after metapackage-specific dependencies" |
46 | debug-print "line ${LINENO} ${ECLASS}: DEPEND ${DEPEND} - after metapackage-specific dependencies" |
| 69 | debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after metapackage-specific dependencies" |
47 | debug-print "line ${LINENO} ${ECLASS}: RDEPEND ${RDEPEND} - after metapackage-specific dependencies" |
| 70 | |
48 | |
| 71 | # Useful to build kde4-meta style stuff from extragear/playground (plasmoids etc) |
49 | # Useful to build kde4-meta style stuff from extragear/playground (plasmoids etc) |
| 72 | case ${BUILD_TYPE} in |
50 | case ${KDE_BUILD_TYPE} in |
| 73 | live) |
51 | live) |
|
|
52 | if [[ ${KDE_SCM} == svn ]]; then |
| 74 | case ${KMNAME} in |
53 | case ${KMNAME} in |
| 75 | extragear*|playground*) |
54 | extragear*|playground*) |
| 76 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
55 | ESVN_REPO_URI="${ESVN_MIRROR}/trunk/${KMNAME}" |
| 77 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
56 | ESVN_PROJECT="${KMNAME}${ESVN_PROJECT_SUFFIX}" |
| 78 | ;; |
57 | ;; |
| 79 | esac |
58 | esac |
|
|
59 | fi |
| 80 | ;; |
60 | ;; |
| 81 | esac |
61 | esac |
| 82 | |
62 | |
| 83 | # @ECLASS-VARIABLE: KMNAME |
63 | # @ECLASS-VARIABLE: KMNAME |
| 84 | # @DESCRIPTION: |
64 | # @DESCRIPTION: |
| … | |
… | |
| 99 | # If set to "true", $KMMODULE doesn't have to be defined. |
79 | # If set to "true", $KMMODULE doesn't have to be defined. |
| 100 | # |
80 | # |
| 101 | # Example usage: If you're installing subdirectories of a package, like plugins, |
81 | # Example usage: If you're installing subdirectories of a package, like plugins, |
| 102 | # you mark the top subdirectory (containing the package) as $KMEXTRACTONLY, and |
82 | # you mark the top subdirectory (containing the package) as $KMEXTRACTONLY, and |
| 103 | # set KMNOMODULE="true". |
83 | # set KMNOMODULE="true". |
| 104 | if [[ -z ${KMMODULE} && ${KMNOMODULE} != true ]]; then |
84 | if [[ -z ${KMMODULE} ]] && [[ ${KMNOMODULE} != true ]]; then |
| 105 | KMMODULE=${PN} |
85 | KMMODULE=${PN} |
| 106 | fi |
86 | fi |
| 107 | |
87 | |
| 108 | # @ECLASS-VARIABLE: KMEXTRA |
88 | # @ECLASS-VARIABLE: KMEXTRA |
| 109 | # @DESCRIPTION: |
89 | # @DESCRIPTION: |
| 110 | # All subdirectories listed here will be extracted, compiled & installed. |
90 | # All subdirectories listed here will be extracted, compiled & installed. |
| 111 | # $KMMODULE is always added to $KMEXTRA. |
91 | # $KMMODULE is always added to $KMEXTRA. |
| 112 | # If the handbook USE-flag is set, and if this directory exists, |
92 | # If KDE_HANDBOOK is 'always' or 'optional' and handbook USE-flag is set, and if this |
| 113 | # then "doc/$KMMODULE" is added to $KMEXTRA. In other cases, this should be |
93 | # directory exists, then "doc/$KMMODULE" is added to $KMEXTRA. If there's additional |
| 114 | # handled in the ebuild. |
|
|
| 115 | # If the documentation is in a different subdirectory, you should add it to KMEXTRA. |
94 | # documentation in different subdirectories, it should be added to KMEXTRA manually.. |
| 116 | |
95 | |
| 117 | # @ECLASS-VARIABLE: KMCOMPILEONLY |
96 | # @ECLASS-VARIABLE: KMCOMPILEONLY |
| 118 | # @DESCRIPTION: |
97 | # @DESCRIPTION: |
| 119 | # All subdirectories listed here will be extracted & compiled, but not installed. |
98 | # All subdirectories listed here will be extracted & compiled, but not installed. |
| 120 | |
99 | |
| … | |
… | |
| 129 | # Specify extra parameters to pass to tar, in kde4-meta_src_extract. |
108 | # Specify extra parameters to pass to tar, in kde4-meta_src_extract. |
| 130 | # '-xpf -j' are passed to tar by default. |
109 | # '-xpf -j' are passed to tar by default. |
| 131 | |
110 | |
| 132 | # @FUNCTION: kde4-meta_pkg_setup |
111 | # @FUNCTION: kde4-meta_pkg_setup |
| 133 | # @DESCRIPTION: |
112 | # @DESCRIPTION: |
| 134 | # Currently just calls its equivalent in kde4-base.eclass(5). Use this one in |
113 | # Currently calls its equivalent in kde4-base.eclass(5) and checks the gcc version. |
| 135 | # split ebuilds. |
114 | # Use this one in split ebuilds. |
| 136 | kde4-meta_pkg_setup() { |
115 | kde4-meta_pkg_setup() { |
| 137 | debug-print-function ${FUNCNAME} "$@" |
116 | debug-print-function ${FUNCNAME} "$@" |
| 138 | |
117 | |
| 139 | kde4-base_pkg_setup |
118 | kde4-base_pkg_setup |
| 140 | } |
119 | } |
| 141 | |
120 | |
| 142 | # @FUNCTION: kde4-meta_src_unpack |
121 | # @FUNCTION: kde4-meta_src_unpack |
| 143 | # @DESCRIPTION: |
122 | # @DESCRIPTION: |
| 144 | # This function unpacks the source for split ebuilds. See also |
123 | # This function unpacks the source for split ebuilds. |
| 145 | # kde4-meta-src_extract. |
124 | # Further more is processed in kde4-meta_src_extract |
| 146 | kde4-meta_src_unpack() { |
125 | kde4-meta_src_unpack() { |
| 147 | debug-print-function ${FUNCNAME} "$@" |
126 | debug-print-function ${FUNCNAME} "$@" |
| 148 | |
127 | |
| 149 | if [[ ${BUILD_TYPE} = live ]]; then |
128 | if [[ ${KDE_BUILD_TYPE} = live ]]; then |
|
|
129 | case "${KDE_SCM}" in |
|
|
130 | svn) |
| 150 | migrate_store_dir |
131 | migrate_store_dir |
| 151 | S="${WORKDIR}/${P}" |
132 | S="${WORKDIR}/${P}" |
| 152 | mkdir -p "${S}" |
133 | mkdir -p "${S}" |
| 153 | ESVN_RESTRICT="export" subversion_src_unpack |
134 | ESVN_RESTRICT="export" subversion_src_unpack |
| 154 | subversion_wc_info |
135 | subversion_wc_info |
| 155 | subversion_bootstrap |
136 | subversion_bootstrap |
|
|
137 | ;; |
|
|
138 | git) |
|
|
139 | git-2_src_unpack |
|
|
140 | ;; |
|
|
141 | esac |
|
|
142 | fi |
| 156 | kde4-meta_src_extract |
143 | kde4-meta_src_extract |
| 157 | else |
|
|
| 158 | kde4-meta_src_extract |
|
|
| 159 | fi |
|
|
| 160 | } |
144 | } |
| 161 | |
|
|
| 162 | # FIXME: the difference between kde4-meta_src_extract and kde4-meta_src_unpack? |
|
|
| 163 | |
145 | |
| 164 | # @FUNCTION: kde4-meta_src_extract |
146 | # @FUNCTION: kde4-meta_src_extract |
| 165 | # @DESCRIPTION: |
147 | # @DESCRIPTION: |
| 166 | # A function to unpack the source for a split KDE ebuild. |
148 | # A function to extract the source for a split KDE ebuild. |
| 167 | # Also see KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and |
149 | # Also see KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, KMEXTRACTONLY and |
| 168 | # KMTARPARAMS. |
150 | # KMTARPARAMS. |
| 169 | kde4-meta_src_extract() { |
151 | kde4-meta_src_extract() { |
| 170 | debug-print-function ${FUNCNAME} "$@" |
152 | debug-print-function ${FUNCNAME} "$@" |
| 171 | |
153 | |
| 172 | if [[ ${BUILD_TYPE} = live ]]; then |
154 | if [[ ${KDE_BUILD_TYPE} = live ]]; then |
| 173 | local rsync_options subdir kmnamedir targetdir |
|
|
| 174 | # Export working copy to ${S} |
155 | # Export working copy to ${S} |
| 175 | einfo "Exporting parts of working copy to ${S}" |
156 | einfo "Exporting parts of working copy to ${S}" |
| 176 | kde4-meta_create_extractlists |
157 | kde4-meta_create_extractlists |
| 177 | |
158 | |
|
|
159 | case ${KDE_SCM} in |
|
|
160 | svn) |
|
|
161 | local rsync_options subdir targetdir wc_path escm |
|
|
162 | |
| 178 | rsync_options="--group --links --owner --perms --quiet --exclude=.svn/" |
163 | rsync_options="--group --links --owner --perms --quiet --exclude=.svn/ --exclude=.git/" |
|
|
164 | wc_path="${ESVN_WC_PATH}" |
|
|
165 | escm="{ESVN}" |
| 179 | |
166 | |
| 180 | # Copy ${KMNAME} non-recursively (toplevel files) |
167 | # Copy ${KMNAME} non-recursively (toplevel files) |
| 181 | rsync ${rsync_options} "${ESVN_WC_PATH}"/${kmnamedir}* "${S}" \ |
168 | rsync ${rsync_options} "${wc_path}"/* "${S}" \ |
| 182 | || die "${ESVN}: can't export toplevel files to '${S}'." |
169 | || die "${escm}: can't export toplevel files to '${S}'." |
| 183 | # Copy cmake directory |
170 | # Copy cmake directory |
| 184 | if [[ -d "${ESVN_WC_PATH}/${kmnamedir}cmake" ]]; then |
171 | if [[ -d "${wc_path}/cmake" ]]; then |
| 185 | rsync --recursive ${rsync_options} "${ESVN_WC_PATH}/${kmnamedir}cmake" "${S}" \ |
172 | rsync --recursive ${rsync_options} "${wc_path}/cmake" "${S}" \ |
| 186 | || die "${ESVN}: can't export cmake files to '${S}'." |
173 | || die "${escm}: can't export cmake files to '${S}'." |
| 187 | fi |
174 | fi |
| 188 | # Copy all subdirectories |
175 | # Copy all subdirectories |
| 189 | for subdir in $(__list_needed_subdirectories); do |
176 | for subdir in $(__list_needed_subdirectories); do |
| 190 | targetdir="" |
177 | targetdir="" |
| 191 | if [[ $subdir = doc/* && ! -e "$ESVN_WC_PATH/$kmnamedir$subdir" ]]; then |
178 | if [[ $subdir = doc/* && ! -e "$wc_path/$subdir" ]]; then |
| 192 | continue |
179 | continue |
| 193 | fi |
180 | fi |
| 194 | |
181 | |
| 195 | [[ ${subdir%/} = */* ]] && targetdir=${subdir%/} && targetdir=${targetdir%/*} && mkdir -p "${S}/${targetdir}" |
182 | [[ ${subdir%/} = */* ]] && targetdir=${subdir%/} && targetdir=${targetdir%/*} && mkdir -p "${S}/${targetdir}" |
| 196 | rsync --recursive ${rsync_options} "${ESVN_WC_PATH}/${kmnamedir}${subdir%/}" "${S}/${targetdir}" \ |
183 | rsync --recursive ${rsync_options} "${wc_path}/${subdir%/}" "${S}/${targetdir}" \ |
| 197 | || die "${ESVN}: can't export subdirectory '${subdir}' to '${S}/${targetdir}'." |
184 | || die "${escm}: can't export subdirectory '${subdir}' to '${S}/${targetdir}'." |
| 198 | done |
185 | done |
| 199 | |
|
|
| 200 | if [[ ${KMNAME} = kdebase-runtime && ${PN} != kdebase-data ]]; then |
|
|
| 201 | sed -i -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
|
|
| 202 | "${S}"/CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
|
|
| 203 | fi |
|
|
| 204 | else |
|
|
| 205 | local abort tarball tarfile f extractlist moduleprefix postfix |
|
|
| 206 | case ${PV} in |
|
|
| 207 | 4.[34].8[05] | 4.[34].9[0568]) |
|
|
| 208 | # block for normally packed upstream unstable snapshots |
|
|
| 209 | KMTARPARAMS+=" --bzip2" # bz2 |
|
|
| 210 | postfix="bz2" |
|
|
| 211 | ;; |
|
|
| 212 | 4.[34].[6-9]*) |
|
|
| 213 | # Not passing --xz, as it doesn't work with stable tar |
|
|
| 214 | KMTARPARAMS+=" --use-compress-program=xz" # xz |
|
|
| 215 | postfix="xz" |
|
|
| 216 | ;; |
|
|
| 217 | *) |
|
|
| 218 | KMTARPARAMS+=" --bzip2" # bz2 |
|
|
| 219 | postfix="bz2" |
|
|
| 220 | ;; |
186 | ;; |
| 221 | esac |
187 | esac |
|
|
188 | else |
|
|
189 | local abort tarball tarfile f extractlist postfix |
|
|
190 | |
|
|
191 | if [[ ${PV} =~ 4.[47].[12345] ]]; then |
|
|
192 | postfix="bz2" |
|
|
193 | KMTARPARAMS+=" --bzip2" |
|
|
194 | else |
|
|
195 | postfix="xz" |
|
|
196 | KMTARPARAMS+=" --xz" |
|
|
197 | fi |
|
|
198 | |
| 222 | case ${KMNAME} in |
199 | case ${KMNAME} in |
| 223 | kdebase-apps) |
200 | kdebase-apps) |
| 224 | # kdebase/apps -> kdebase-apps |
201 | # kdebase/apps -> kdebase-apps |
| 225 | tarball="kdebase-${PV}.tar.${postfix}" |
202 | tarball="kdebase-${PV}.tar.${postfix}" |
| 226 | # Go one level deeper for kdebase-apps in tarballs |
|
|
| 227 | moduleprefix=apps/ |
|
|
| 228 | KMTARPARAMS+=" --transform=s|apps/||" |
|
|
| 229 | ;; |
203 | ;; |
| 230 | *) |
204 | *) |
| 231 | # Create tarball name from module name (this is the default) |
205 | # Create tarball name from module name (this is the default) |
| 232 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
206 | tarball="${KMNAME}-${PV}.tar.${postfix}" |
| 233 | ;; |
207 | ;; |
| … | |
… | |
| 242 | |
216 | |
| 243 | ebegin "Unpacking parts of ${tarball} to ${WORKDIR}" |
217 | ebegin "Unpacking parts of ${tarball} to ${WORKDIR}" |
| 244 | |
218 | |
| 245 | kde4-meta_create_extractlists |
219 | kde4-meta_create_extractlists |
| 246 | |
220 | |
| 247 | for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake \ |
221 | for f in cmake/ CMakeLists.txt ConfigureChecks.cmake config.h.cmake |
| 248 | AUTHORS COPYING INSTALL README NEWS ChangeLog |
|
|
| 249 | do |
222 | do |
| 250 | extractlist+=" ${topdir}${moduleprefix}${f}" |
223 | extractlist+=" ${topdir}${f}" |
| 251 | done |
224 | done |
| 252 | extractlist+=" $(__list_needed_subdirectories)" |
225 | extractlist+=" $(__list_needed_subdirectories)" |
| 253 | |
226 | |
| 254 | pushd "${WORKDIR}" > /dev/null |
227 | pushd "${WORKDIR}" > /dev/null |
|
|
228 | |
|
|
229 | # @ECLASS-VARIABLE: KDE4_STRICTER |
|
|
230 | # @DESCRIPTION: |
|
|
231 | # Print out all issues found executing tar / kmextract files |
|
|
232 | # Set on if you want to find issues in kde-base ebuild unpack sequences |
| 255 | [[ -n ${KDE4_STRICTER} ]] && echo tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} >&2 |
233 | [[ -n ${KDE4_STRICTER} ]] && echo 'tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist}' |
| 256 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null |
234 | tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null || echo "tar extract command failed at least partially - continuing anyway" |
| 257 | |
235 | |
| 258 | # Default $S is based on $P; rename the extracted directory to match $S if necessary |
236 | # Default $S is based on $P; rename the extracted directory to match $S if necessary |
|
|
237 | if [[ ${KMNAME} != ${PN} ]]; then |
| 259 | mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
238 | mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\"" |
|
|
239 | fi |
| 260 | |
240 | |
| 261 | popd > /dev/null |
241 | popd > /dev/null |
| 262 | |
242 | |
| 263 | eend $? |
243 | eend $? |
| 264 | |
|
|
| 265 | # We need to clear it here to make verification below work |
|
|
| 266 | unset moduleprefix |
|
|
| 267 | |
244 | |
| 268 | if [[ -n ${KDE4_STRICTER} ]]; then |
245 | if [[ -n ${KDE4_STRICTER} ]]; then |
| 269 | for f in $(__list_needed_subdirectories fatal); do |
246 | for f in $(__list_needed_subdirectories fatal); do |
| 270 | if [[ ! -e "${S}/${f#*/}" ]]; then |
247 | if [[ ! -e ${S}/${f#*/} ]]; then |
| 271 | eerror "'${f#*/}' is missing" |
248 | eerror "'${f#*/}' is missing" |
| 272 | abort=true |
249 | abort=true |
| 273 | fi |
250 | fi |
| 274 | done |
251 | done |
| 275 | [[ -n ${abort} ]] && die "There were missing files." |
252 | [[ -n ${abort} ]] && die "There were missing files." |
| … | |
… | |
| 286 | # Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
263 | # Also see descriptions of KMMODULE, KMNOMODULE, KMEXTRA, KMCOMPILEONLY, |
| 287 | # KMEXTRACTONLY and KMTARPARAMS. |
264 | # KMEXTRACTONLY and KMTARPARAMS. |
| 288 | kde4-meta_create_extractlists() { |
265 | kde4-meta_create_extractlists() { |
| 289 | debug-print-function ${FUNCNAME} "$@" |
266 | debug-print-function ${FUNCNAME} "$@" |
| 290 | |
267 | |
| 291 | # TODO change to KMEXTRA for more strict check |
268 | # Add default handbook locations |
| 292 | if has handbook ${IUSE//+} && use handbook && [[ -n ${KMMODULE} ]]; then |
269 | # FIXME - legacy code - remove when 4.4.5 is gone or preferrably port 4.4.5. |
|
|
270 | if [[ $(get_kde_version) < 4.5 ]] && use_if_iuse handbook && [[ -z ${KMNOMODULE} ]]; then |
| 293 | # We use the basename of $KMMODULE because $KMMODULE can contain |
271 | # We use the basename of $KMMODULE because $KMMODULE can contain |
| 294 | # the path to the module subdirectory. |
272 | # the path to the module subdirectory. |
| 295 | KMEXTRA_NONFATAL+=" |
273 | KMEXTRA_NONFATAL+=" |
| 296 | doc/${KMMODULE##*/}" |
274 | doc/${KMMODULE##*/}" |
| 297 | fi |
275 | fi |
| 298 | |
276 | |
|
|
277 | # Add default handbook locations |
|
|
278 | if [[ -z ${KMNOMODULE} ]] && ( [[ ${KDE_HANDBOOK} == always ]] || ( [[ ${KDE_HANDBOOK} == optional ]] && use handbook ) ); then |
|
|
279 | KMEXTRA_NONFATAL+=" doc/${KMMODULE##*/}" |
|
|
280 | fi |
|
|
281 | |
| 299 | # Add some CMake-files to KMEXTRACTONLY. |
282 | # Add some CMake-files to KMEXTRACTONLY. |
| 300 | # Note that this actually doesn't include KMEXTRA handling. |
283 | # Note that this actually doesn't include KMEXTRA handling. |
| 301 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
284 | # In those cases you should care to add the relevant files to KMEXTRACTONLY |
| 302 | case ${KMNAME} in |
285 | case ${KMNAME} in |
| 303 | kdebase) |
286 | kdebase | kdebase-apps | kde-baseapps) |
| 304 | KMEXTRACTONLY+=" |
|
|
| 305 | apps/config-apps.h.cmake |
|
|
| 306 | apps/ConfigureChecks.cmake" |
|
|
| 307 | ;; |
|
|
| 308 | kdebase-apps) |
|
|
| 309 | KMEXTRACTONLY+=" |
287 | KMEXTRACTONLY+=" |
| 310 | config-apps.h.cmake |
288 | config-apps.h.cmake |
| 311 | ConfigureChecks.cmake" |
289 | ConfigureChecks.cmake" |
| 312 | ;; |
290 | ;; |
| 313 | kdebase-runtime) |
291 | kdebase-runtime | kde-runtime) |
| 314 | KMEXTRACTONLY+=" |
292 | KMEXTRACTONLY+=" |
|
|
293 | CTestConfig.cmake |
| 315 | config-runtime.h.cmake" |
294 | config-runtime.h.cmake" |
| 316 | ;; |
295 | ;; |
| 317 | kdebase-workspace) |
296 | kdebase-workspace | kde-workspace) |
| 318 | KMEXTRACTONLY+=" |
297 | KMEXTRACTONLY+=" |
| 319 | config-unix.h.cmake |
298 | config-unix.h.cmake |
| 320 | ConfigureChecks.cmake |
299 | ConfigureChecks.cmake |
| 321 | config-workspace.h.cmake |
300 | config-workspace.h.cmake |
| 322 | config-X11.h.cmake |
301 | config-X11.h.cmake |
| … | |
… | |
| 336 | libkdepim/" |
315 | libkdepim/" |
| 337 | fi |
316 | fi |
| 338 | KMEXTRACTONLY+=" |
317 | KMEXTRACTONLY+=" |
| 339 | config-enterprise.h.cmake |
318 | config-enterprise.h.cmake |
| 340 | kleopatra/ConfigureChecks.cmake" |
319 | kleopatra/ConfigureChecks.cmake" |
| 341 | if slot_is_at_least 4.5 ${SLOT}; then |
320 | if ! [[ $(get_kde_version) < 4.5 ]]; then |
| 342 | KMEXTRACTONLY+=" |
321 | KMEXTRACTONLY+=" |
| 343 | CTestCustom.cmake |
322 | CTestCustom.cmake |
| 344 | kdepim-version.h.cmake" |
323 | kdepim-version.h.cmake" |
| 345 | else |
324 | else |
| 346 | KMEXTRACTONLY+=" |
325 | KMEXTRACTONLY+=" |
| 347 | kdepim-version.h" |
326 | kdepim-version.h" |
| 348 | fi |
327 | fi |
| 349 | if has kontact ${IUSE//+} && use kontact; then |
328 | if use_if_iuse kontact; then |
| 350 | KMEXTRA+=" |
329 | KMEXTRA+=" |
| 351 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
330 | kontact/plugins/${PLUGINNAME:-${PN}}/" |
| 352 | if ! slot_is_at_least 4.4 ${SLOT}; then |
|
|
| 353 | KMEXTRACTONLY+=" |
|
|
| 354 | kontactinterfaces/" |
|
|
| 355 | fi |
|
|
| 356 | fi |
331 | fi |
| 357 | ;; |
332 | ;; |
| 358 | kdeutils) |
333 | kdeutils) |
| 359 | KMEXTRACTONLY+=" |
334 | KMEXTRACTONLY+=" |
| 360 | kdeutils-version.h" |
335 | kdeutils-version.h" |
| 361 | ;; |
336 | ;; |
| 362 | koffice) |
|
|
| 363 | KMEXTRACTONLY+=" |
|
|
| 364 | config-endian.h.cmake |
|
|
| 365 | filters/config-filters.h.cmake |
|
|
| 366 | config-openexr.h.cmake |
|
|
| 367 | config-opengl.h.cmake |
|
|
| 368 | config-prefix.h.cmake |
|
|
| 369 | " |
|
|
| 370 | case ${PV} in |
|
|
| 371 | 2.0.*) |
|
|
| 372 | KMEXTRACTONLY+=" |
|
|
| 373 | config-openctl.h.cmake" |
|
|
| 374 | ;; |
|
|
| 375 | esac |
|
|
| 376 | ;; |
|
|
| 377 | esac |
337 | esac |
| 378 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
338 | # Don't install cmake modules for split ebuilds, to avoid collisions. |
|
|
339 | # note: kdegraphics >= 4.6.2 does not even have code to do that, so we |
|
|
340 | # should not try in that case |
|
|
341 | # note2: kdeedu 4.6.4 does not have a cmake/modules/ subdir anymore :( |
|
|
342 | # it may be possible to formulate this shorter, but it should also |
|
|
343 | # still be understandable... |
|
|
344 | if [[ ${KMNAME} != kdegraphics || ( ( $(get_kde_version) != 4.6 || ${PV} < 4.6.2 ) && $(get_kde_version) < 4.7 ) ]] \ |
|
|
345 | && ! [[ ${KMNAME} == kdeedu && ( ${PV} == 4.6.4 || ${PV} == 4.6.5 ) ]] \ |
|
|
346 | && ! [[ ${KMNAME} == kdegames && ${PV} > 4.9.0 ]]; then |
| 379 | case ${KMNAME} in |
347 | case ${KMNAME} in |
| 380 | kdebase-runtime|kdebase-workspace|kdeedu|kdegames|kdegraphics) |
348 | kdebase-runtime|kde-runtime|kdebase-workspace|kde-workspace|kdeedu|kdegames|kdegraphics) |
| 381 | case ${PN} in |
|
|
| 382 | libkdegames|libkdeedu|libkworkspace) |
|
|
| 383 | KMEXTRA+=" |
349 | KMEXTRACTONLY+=" |
| 384 | cmake/modules/" |
350 | cmake/modules/" |
| 385 | ;; |
351 | ;; |
| 386 | *) |
|
|
| 387 | KMCOMPILEONLY+=" |
|
|
| 388 | cmake/modules/" |
|
|
| 389 | ;; |
|
|
| 390 | esac |
352 | esac |
| 391 | ;; |
353 | fi |
| 392 | esac |
|
|
| 393 | |
354 | |
| 394 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}" |
355 | debug-print "line ${LINENO} ${ECLASS} ${FUNCNAME}: KMEXTRACTONLY ${KMEXTRACTONLY}" |
| 395 | } |
356 | } |
| 396 | |
357 | |
| 397 | __list_needed_subdirectories() { |
358 | __list_needed_subdirectories() { |
| … | |
… | |
| 436 | # Create final list of stuff to extract |
397 | # Create final list of stuff to extract |
| 437 | # We append topdir only when specified (usually for tarballs) |
398 | # We append topdir only when specified (usually for tarballs) |
| 438 | for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \ |
399 | for i in ${kmmodule_expanded} ${kmextra_expanded} ${kmcompileonly_expanded} \ |
| 439 | ${KMEXTRACTONLY} |
400 | ${KMEXTRACTONLY} |
| 440 | do |
401 | do |
| 441 | extractlist+=" ${topdir}${moduleprefix}${i}" |
402 | extractlist+=" ${topdir}${i}" |
| 442 | done |
403 | done |
| 443 | |
404 | |
| 444 | echo ${extractlist} |
405 | echo ${extractlist} |
| 445 | } |
406 | } |
| 446 | |
407 | |
| … | |
… | |
| 452 | |
413 | |
| 453 | kde4-meta_change_cmakelists |
414 | kde4-meta_change_cmakelists |
| 454 | kde4-base_src_prepare |
415 | kde4-base_src_prepare |
| 455 | } |
416 | } |
| 456 | |
417 | |
| 457 | # FIXME: no comment here? |
418 | # @FUNCTION: _change_cmakelists_parent_dirs |
|
|
419 | # @DESCRIPTION: |
|
|
420 | # Adjust CMakeLists.txt to shadow subdirectories |
|
|
421 | # that are not required for the build. |
| 458 | _change_cmakelists_parent_dirs() { |
422 | _change_cmakelists_parent_dirs() { |
| 459 | debug-print-function ${FUNCNAME} "$@" |
423 | debug-print-function ${FUNCNAME} "$@" |
| 460 | |
424 | |
| 461 | local _olddir _dir |
425 | local _olddir _dir |
| 462 | _dir="${S}"/${1} |
426 | _dir="${S}"/${1} |
| 463 | until [[ ${_dir} == "${S}" ]]; do |
427 | until [[ ${_dir} == ${S} ]]; do |
| 464 | _olddir=$(basename "${_dir}") |
428 | _olddir=$(basename "${_dir}") |
| 465 | _dir=$(dirname "${_dir}") |
429 | _dir=$(dirname "${_dir}") |
| 466 | debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}" |
430 | debug-print "${LINENO}: processing ${_dir} CMakeLists.txt searching for ${_olddir}" |
| 467 | if [[ -f ${_dir}/CMakeLists.txt ]]; then |
431 | if [[ -f ${_dir}/CMakeLists.txt ]]; then |
| 468 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
432 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${_olddir}[[:space:]]*)/s/#DONOTCOMPILE //g" \ |
| … | |
… | |
| 484 | |
448 | |
| 485 | # Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt |
449 | # Restore "add_subdirectory( cmake )" in ${S}/CMakeLists.txt |
| 486 | if [[ -f CMakeLists.txt ]]; then |
450 | if [[ -f CMakeLists.txt ]]; then |
| 487 | sed -e '/add_subdirectory[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
451 | sed -e '/add_subdirectory[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
| 488 | -e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
452 | -e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*cmake[[:space:]]*)/s/^#DONOTCOMPILE //' \ |
|
|
453 | -i CMakeLists.txt || die "${LINENO}: cmake sed died" |
|
|
454 | fi |
|
|
455 | |
|
|
456 | # Restore "add_subdirectory( ${ ..." (this is done in kdesdk) |
|
|
457 | if [[ -f CMakeLists.txt ]]; then |
|
|
458 | sed -e '/add_subdirectory[[:space:]]*([[:space:]]*\${/s/^#DONOTCOMPILE //' \ |
|
|
459 | -e '/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*\${/s/^#DONOTCOMPILE //' \ |
| 489 | -i CMakeLists.txt || die "${LINENO}: cmake sed died" |
460 | -i CMakeLists.txt || die "${LINENO}: cmake sed died" |
| 490 | fi |
461 | fi |
| 491 | |
462 | |
| 492 | if [[ -z ${KMNOMODULE} ]]; then |
463 | if [[ -z ${KMNOMODULE} ]]; then |
| 493 | # Restore "add_subdirectory" in $KMMODULE subdirectories |
464 | # Restore "add_subdirectory" in $KMMODULE subdirectories |
| … | |
… | |
| 539 | _change_cmakelists_parent_dirs ${i} |
510 | _change_cmakelists_parent_dirs ${i} |
| 540 | fi |
511 | fi |
| 541 | done |
512 | done |
| 542 | |
513 | |
| 543 | case ${KMNAME} in |
514 | case ${KMNAME} in |
| 544 | kdebase-workspace) |
515 | kdebase-workspace | kde-workspace) |
| 545 | # COLLISION PROTECT section |
516 | # COLLISION PROTECT section |
| 546 | # Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
517 | # Install the startkde script just once, as a part of kde-base/kdebase-startkde, |
| 547 | # not as a part of every package. |
518 | # not as a part of every package. |
| 548 | if [[ ${PN} != kdebase-startkde && -f CMakeLists.txt ]]; then |
519 | if [[ ${PN} != kdebase-startkde && -f CMakeLists.txt ]]; then |
| 549 | # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
520 | # The startkde script moved to kdebase-workspace for KDE4 versions > 3.93.0. |
| 550 | sed -e '/startkde/s/^/#DONOTINSTALL /' \ |
521 | sed -e '/startkde/s/^/#DONOTINSTALL /' \ |
| 551 | -i CMakeLists.txt || die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
522 | -i CMakeLists.txt || die "${LINENO}: sed died in the kdebase-startkde collision prevention section" |
| 552 | fi |
523 | fi |
|
|
524 | # Remove workspace target prefix in order to get direct linking to workspace libs |
|
|
525 | sed -e '/set(KDE4WORKSPACE_TARGET_PREFIX/s/^/#OVERRIDE /' \ |
|
|
526 | -i CMakeLists.txt || die "${LINENO}: sed died in KDE4WORKSPACE_TARGET_PREFIX removal section" |
| 553 | # Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
527 | # Strip EXPORT feature section from workspace for KDE4 versions > 4.1.82 |
| 554 | if [[ ${PN} != libkworkspace ]]; then |
528 | if [[ ${PN} != libkworkspace ]]; then |
| 555 | sed -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
529 | sed -e '/install(FILES ${CMAKE_CURRENT_BINARY_DIR}\/KDE4WorkspaceConfig.cmake/,/^[[:space:]]*FILE KDE4WorkspaceLibraryTargets.cmake )[[:space:]]*^/d' \ |
| 556 | -i CMakeLists.txt || die "${LINENO}: sed died in kdebase-workspace strip config install and fix EXPORT section" |
530 | -i CMakeLists.txt || die "${LINENO}: sed died in kde-workspace strip config install and fix EXPORT section" |
| 557 | fi |
531 | fi |
|
|
532 | if [[ ${PN} != plasma-workspace ]]; then |
|
|
533 | sed -e '/KActivities/s/REQUIRED//' \ |
|
|
534 | -i CMakeLists.txt || die "${LINENO}: sed died in kde-workspace dep reduction section" |
|
|
535 | fi |
|
|
536 | if [[ "${PN}" != "kwin" ]]; then |
|
|
537 | sed -i -e "/^ macro_log_feature(OPENGL_OR_ES_FOUND/s/TRUE/FALSE/" \ |
|
|
538 | "${S}"/CMakeLists.txt || die "${LINENO}: sed died removing kde-workspace opengl dependency" |
|
|
539 | fi |
| 558 | ;; |
540 | ;; |
| 559 | kdebase-runtime) |
541 | kdebase-runtime | kde-runtime) |
| 560 | # COLLISION PROTECT section |
542 | # COLLISION PROTECT section |
| 561 | # Only install the kde4 script as part of kde-base/kdebase-data |
543 | # Only install the kde4 script as part of kde-base/kdebase-data |
| 562 | if [[ ${PN} != kdebase-data && -f CMakeLists.txt ]]; then |
544 | if [[ ${PN} != kdebase-data && -f CMakeLists.txt ]]; then |
| 563 | sed -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
545 | sed -e '/^install(PROGRAMS[[:space:]]*[^[:space:]]*\/kde4[[:space:]]/s/^/#DONOTINSTALL /' \ |
| 564 | -i CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
546 | -i CMakeLists.txt || die "Sed to exclude bin/kde4 failed" |
| … | |
… | |
| 572 | kdepim) |
554 | kdepim) |
| 573 | # Disable hardcoded checks |
555 | # Disable hardcoded checks |
| 574 | sed -r -e '/find_package\(KdepimLibs/s/REQUIRED//' \ |
556 | sed -r -e '/find_package\(KdepimLibs/s/REQUIRED//' \ |
| 575 | -e '/find_package\((KdepimLibs|Boost|QGpgme|Akonadi|ZLIB|Strigi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \ |
557 | -e '/find_package\((KdepimLibs|Boost|QGpgme|Akonadi|ZLIB|Strigi|SharedDesktopOntologies|Soprano|Nepomuk)/{/macro_optional_/!s/find/macro_optional_&/}' \ |
| 576 | -e '/macro_log_feature\((Boost|QGPGME|Akonadi|ZLIB|STRIGI|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \ |
558 | -e '/macro_log_feature\((Boost|QGPGME|Akonadi|ZLIB|STRIGI|SHAREDDESKTOPONTOLOGIES|Soprano|Nepomuk)_FOUND/s/ TRUE / FALSE /' \ |
| 577 | -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
559 | -e 's/if[[:space:]]*([[:space:]]*BUILD_.*)[[:space:]]*/if(1) # &/' \ |
| 578 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
560 | -e 's/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)[[:space:]]*$/if(1) # &/' \ |
| 579 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
561 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 580 | # Disable broken or redundant build logic |
562 | # Disable broken or redundant build logic |
| 581 | if ( has kontact ${IUSE//+} && use kontact ) || [[ ${PN} = kontact ]]; then |
563 | if use_if_iuse kontact || [[ ${PN} = kontact ]]; then |
| 582 | sed -e '/if[[:space:]]*([[:space:]]*BUILD_.*)/s/^/#OVERRIDE /' \ |
564 | sed -e 's/if[[:space:]]*([[:space:]]*BUILD_.*)[[:space:]]*$/if(1) # &/' \ |
| 583 | -e '/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)/s/^/#OVERRIDE /' \ |
565 | -e 's/if[[:space:]]*([[:space:]]*[[:alnum:]]*_FOUND[[:space:]]*)[[:space:]]*$/if(1) # &/' \ |
| 584 | -i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
566 | -i kontact/plugins/CMakeLists.txt || die 'failed to override build logic' |
| 585 | fi |
567 | fi |
| 586 | if ! slot_is_at_least 4.5 ${SLOT}; then |
568 | if [[ $(get_kde_version) < 4.5 ]]; then |
| 587 | case ${PN} in |
569 | case ${PN} in |
| 588 | kalarm|kmailcvt|kontact|korganizer|korn) |
570 | kalarm|kmailcvt|kontact|korganizer|korn) |
| 589 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
571 | sed -n -e '/qt4_generate_dbus_interface(.*org\.kde\.kmail\.\(kmail\|mailcomposer\)\.xml/p' \ |
| 590 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
572 | -e '/add_custom_target(kmail_xml /,/)/p' \ |
| 591 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
573 | -i kmail/CMakeLists.txt || die "uncommenting xml failed" |
| … | |
… | |
| 600 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
582 | -e 's/find_package(LibXml2 REQUIRED)/macro_optional_find_package(LibXml2)/' \ |
| 601 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
583 | -e 's/find_package(LibXslt REQUIRED)/macro_optional_find_package(LibXslt)/' \ |
| 602 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
584 | -e 's/find_package(Boost REQUIRED)/macro_optional_find_package(Boost)/' \ |
| 603 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
585 | -i CMakeLists.txt || die "failed to disable hardcoded checks" |
| 604 | ;; |
586 | ;; |
| 605 | koffice) |
|
|
| 606 | # Prevent collisions |
|
|
| 607 | if [[ ${PN} != koffice-data ]]; then |
|
|
| 608 | sed -e '/install(.*FindKOfficeLibs.cmake/,/)/ d' \ |
|
|
| 609 | -i cmake/modules/CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
|
|
| 610 | sed -e '/install(.\+config-openexr\.h.\+)/d' \ |
|
|
| 611 | -i CMakeLists.txt || die "${LINENO}: sed died in collision prevention section" |
|
|
| 612 | fi |
|
|
| 613 | # koffice 2.0 |
|
|
| 614 | case ${PV} in |
|
|
| 615 | 2.0.[1-9]) |
|
|
| 616 | sed -i -n -e '1h;1!H;${g;s/install(.\+config-openexr.h.\+)//;p}' \ |
|
|
| 617 | "${S}"/CMakeLists.txt || \ |
|
|
| 618 | die "${LINENO}: sed died in collision prevention section" |
|
|
| 619 | ;; |
|
|
| 620 | *) ;; |
|
|
| 621 | esac |
|
|
| 622 | # koffice 2.1.[8-9][0-9] and 9999 |
|
|
| 623 | case ${PV} in |
|
|
| 624 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
| 625 | sed -e '/^option(BUILD/s/ON/OFF/' \ |
|
|
| 626 | -e '/^if(NOT BUILD_kchart/,/^endif(NOT BUILD_kchart/d' \ |
|
|
| 627 | -e '/^if(BUILD_koreport/,/^endif(BUILD_koreport/d' \ |
|
|
| 628 | -e 's/set(SHOULD_BUILD_F_OFFICE TRUE)/set(SHOULD_BUILD_F_OFFICE FALSE)/' \ |
|
|
| 629 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
| 630 | if [[ ${PN} != koffice-data ]] && [[ ${PV} == 9999 ]]; then |
|
|
| 631 | sed -e '/config-opengl.h/d' \ |
|
|
| 632 | -i "${S}"/CMakeLists.txt || die "sed died while fixing cmakelists" |
|
|
| 633 | |
|
|
| 634 | fi |
|
|
| 635 | ;; |
|
|
| 636 | *) ;; |
|
|
| 637 | esac |
|
|
| 638 | esac |
587 | esac |
| 639 | |
588 | |
| 640 | popd > /dev/null |
589 | popd > /dev/null |
| 641 | } |
590 | } |
| 642 | |
591 | |
| … | |
… | |
| 662 | -DWITH_Boost=OFF |
611 | -DWITH_Boost=OFF |
| 663 | -DWITH_LibTidy=OFF |
612 | -DWITH_LibTidy=OFF |
| 664 | "${mycmakeargs[@]}" |
613 | "${mycmakeargs[@]}" |
| 665 | ) |
614 | ) |
| 666 | ;; |
615 | ;; |
| 667 | koffice) |
|
|
| 668 | case ${PV} in |
|
|
| 669 | 2.1.8[0-9]|2.1.9[0-9]|9999) |
|
|
| 670 | if [[ ${PN} != "kchart" ]]; then |
|
|
| 671 | mycmakeargs=( |
|
|
| 672 | -DBUILD_koreport=OFF |
|
|
| 673 | "${mycmakeargs[@]}" |
|
|
| 674 | ) |
|
|
| 675 | fi |
|
|
| 676 | ;; |
|
|
| 677 | esac |
|
|
| 678 | ;; |
|
|
| 679 | esac |
616 | esac |
| 680 | |
617 | |
| 681 | kde4-base_src_configure |
618 | kde4-base_src_configure |
| 682 | } |
619 | } |
| 683 | |
620 | |
| … | |
… | |
| 712 | debug-print-function $FUNCNAME "$@" |
649 | debug-print-function $FUNCNAME "$@" |
| 713 | |
650 | |
| 714 | # Search ${S}/${KMMODULE} and install common documentation files found |
651 | # Search ${S}/${KMMODULE} and install common documentation files found |
| 715 | local doc |
652 | local doc |
| 716 | for doc in "${S}/${KMMODULE}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
653 | for doc in "${S}/${KMMODULE}"/{AUTHORS,CHANGELOG,ChangeLog*,README*,NEWS,TODO,HACKING}; do |
| 717 | [[ -s "${doc}" ]] && dodoc "${doc}" |
654 | [[ -f "${doc}" ]] && [[ -s "${doc}" ]] && dodoc "${doc}" |
| 718 | done |
655 | done |
| 719 | |
656 | |
| 720 | kde4-base_src_install |
657 | kde4-base_src_install |
|
|
658 | } |
|
|
659 | |
|
|
660 | # @FUNCTION: kde4-meta_pkg_preinst |
|
|
661 | # @DESCRIPTION: |
|
|
662 | # Invoke its equivalent in kde4-base.eclass. |
|
|
663 | kde4-meta_pkg_preinst() { |
|
|
664 | debug-print-function ${FUNCNAME} "$@" |
|
|
665 | |
|
|
666 | kde4-base_pkg_preinst |
| 721 | } |
667 | } |
| 722 | |
668 | |
| 723 | # @FUNCTION: kde4-meta_pkg_postinst |
669 | # @FUNCTION: kde4-meta_pkg_postinst |
| 724 | # @DESCRIPTION: |
670 | # @DESCRIPTION: |
| 725 | # Invoke kbuildsycoca4. |
671 | # Invoke kbuildsycoca4. |