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