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