| 1 | # Copyright 1999-2008 Gentoo Foundation |
1 | # Copyright 1999-2008 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-functions.eclass,v 1.6 2008/05/15 19:49:32 ingmar Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.22 2009/08/03 21:59:53 wired Exp $ |
|
|
4 | |
|
|
5 | # Prefix compat: |
|
|
6 | : ${EROOT:=${ROOT}} |
| 4 | |
7 | |
| 5 | # @ECLASS: kde4-functions.eclass |
8 | # @ECLASS: kde4-functions.eclass |
| 6 | # @MAINTAINER: |
9 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
10 | # kde@gentoo.org |
| 8 | # @BLURB: Common ebuild functions for monolithic and split KDE 4 packages |
11 | # @BLURB: Common ebuild functions for KDE 4 packages |
| 9 | # @DESCRIPTION: |
12 | # @DESCRIPTION: |
| 10 | # This eclass contains all functions shared by the different eclasses, |
13 | # This eclass contains all functions shared by the different eclasses, |
| 11 | # for KDE 4 monolithic and split ebuilds. |
14 | # for KDE 4 ebuilds. |
| 12 | # |
15 | |
| 13 | # NOTE: This eclass uses the SLOT dependencies from EAPI="1" or compatible, |
16 | # @ECLASS-VARIABLE: EAPI |
| 14 | # hence you must define EAPI="1" in the ebuild, before inheriting any eclasses. |
17 | # @DESCRIPTION: |
|
|
18 | # By default kde4 eclasses want EAPI 2 which might be redefinable to newer |
|
|
19 | # versions. |
|
|
20 | case ${EAPI:-0} in |
|
|
21 | 2) : ;; |
|
|
22 | *) DEPEND="EAPI-TOO-OLD" ;; |
|
|
23 | esac |
| 15 | |
24 | |
| 16 | # @ECLASS-VARIABLE: KDEBASE |
25 | # @ECLASS-VARIABLE: KDEBASE |
| 17 | # @DESCRIPTION: |
26 | # @DESCRIPTION: |
| 18 | # This gets set to a non-zero value when a package is considered a kde or |
27 | # This gets set to a non-zero value when a package is considered a kde or |
| 19 | # koffice ebuild. |
28 | # koffice ebuild. |
| 20 | |
29 | |
| 21 | if [[ "${CATEGORY}" == "kde-base" ]]; then |
30 | if [[ ${CATEGORY} = kde-base ]]; then |
| 22 | debug-print "${ECLASS}: KDEBASE ebuild recognized" |
31 | debug-print "${ECLASS}: KDEBASE ebuild recognized" |
| 23 | KDEBASE="kde-base" |
32 | KDEBASE=kde-base |
| 24 | fi |
33 | fi |
| 25 | |
34 | |
| 26 | # is this a koffice ebuild? |
35 | # is this a koffice ebuild? |
| 27 | if [[ "${KMNAME}" == "koffice" || "${PN}" == "koffice" ]]; then |
36 | if [[ ${KMNAME} = koffice || ${PN} = koffice ]]; then |
| 28 | debug-print "${ECLASS}: KOFFICE ebuild recognized" |
37 | debug-print "${ECLASS}: KOFFICE ebuild recognized" |
| 29 | KDEBASE="koffice" |
38 | KDEBASE=koffice |
| 30 | fi |
39 | fi |
| 31 | |
40 | |
|
|
41 | # @ECLASS-VARIABLE: KDE_SLOTS |
|
|
42 | # @DESCRIPTION: |
|
|
43 | # The slots used by all KDE versions later than 4.0. The live KDE releases use |
|
|
44 | # KDE_LIVE_SLOTS instead. Values should be ordered. |
|
|
45 | KDE_SLOTS=( "kde-4" "4.1" "4.2" "4.3" "4.4" ) |
|
|
46 | |
| 32 | # @ECLASS-VARIABLE: KDE_DERIVATION_MAP |
47 | # @ECLASS-VARIABLE: KDE_LIVE_SLOTS |
| 33 | # @DESCRIPTION: |
48 | # @DESCRIPTION: |
| 34 | # Map of the monolithic->split ebuild derivation. |
49 | # The slots used by KDE live versions. Values should be ordered. |
| 35 | # Used to build dependencies describing the relationships between them: |
50 | KDE_LIVE_SLOTS=( "live" ) |
| 36 | # Monolithic ebuilds block their split counterparts in the same slot, and vice versa. |
|
|
| 37 | # |
|
|
| 38 | # Also see get-parent-package(), get-child-packages(), is-parent-package() |
|
|
| 39 | KDE_DERIVATION_MAP=' |
|
|
| 40 | kde-base/kdeaccessibility kde-base/kdeaccessibility-colorschemes |
|
|
| 41 | kde-base/kdeaccessibility kde-base/kdeaccessibility-iconthemes |
|
|
| 42 | kde-base/kdeaccessibility kde-base/kmag |
|
|
| 43 | kde-base/kdeaccessibility kde-base/kmousetool |
|
|
| 44 | kde-base/kdeaccessibility kde-base/kmouth |
|
|
| 45 | kde-base/kdeaccessibility kde-base/kttsd |
|
|
| 46 | kde-base/kdeadmin kde-base/kcron |
|
|
| 47 | kde-base/kdeadmin kde-base/kdat |
|
|
| 48 | kde-base/kdeadmin kde-base/knetworkconf |
|
|
| 49 | kde-base/kdeadmin kde-base/ksysv |
|
|
| 50 | kde-base/kdeadmin kde-base/kuser |
|
|
| 51 | kde-base/kdeadmin kde-base/lilo-config |
|
|
| 52 | kde-base/kdeadmin kde-base/secpolicy |
|
|
| 53 | kde-base/kdeartwork kde-base/kdeartwork-colorschemes |
|
|
| 54 | kde-base/kdeartwork kde-base/kdeartwork-emoticons |
|
|
| 55 | kde-base/kdeartwork kde-base/kdeartwork-icewm-themes |
|
|
| 56 | kde-base/kdeartwork kde-base/kdeartwork-iconthemes |
|
|
| 57 | kde-base/kdeartwork kde-base/kdeartwork-kscreensaver |
|
|
| 58 | kde-base/kdeartwork kde-base/kdeartwork-kworldclock |
|
|
| 59 | kde-base/kdeartwork kde-base/kdeartwork-sounds |
|
|
| 60 | kde-base/kdeartwork kde-base/kdeartwork-styles |
|
|
| 61 | kde-base/kdeartwork kde-base/kdeartwork-wallpapers |
|
|
| 62 | kde-base/kdebase kde-base/dolphin |
|
|
| 63 | kde-base/kdebase kde-base/kappfinder |
|
|
| 64 | kde-base/kdebase kde-base/kdepasswd |
|
|
| 65 | kde-base/kdebase kde-base/kdialog |
|
|
| 66 | kde-base/kdebase kde-base/keditbookmarks |
|
|
| 67 | kde-base/kdebase kde-base/kfind |
|
|
| 68 | kde-base/kdebase kde-base/kinfocenter |
|
|
| 69 | kde-base/kdebase kde-base/konqueror |
|
|
| 70 | kde-base/kdebase kde-base/konsole |
|
|
| 71 | kde-base/kdebase kde-base/kwrite |
|
|
| 72 | kde-base/kdebase kde-base/libkonq |
|
|
| 73 | kde-base/kdebase kde-base/nsplugins |
|
|
| 74 | kde-base/kdebase kde-base/drkonqi |
|
|
| 75 | kde-base/kdebase kde-base/kcmshell |
|
|
| 76 | kde-base/kdebase kde-base/kcontrol |
|
|
| 77 | kde-base/kdebase kde-base/kdebase-data |
|
|
| 78 | kde-base/kdebase kde-base/kdebase-kioslaves |
|
|
| 79 | kde-base/kdebase kde-base/kdebugdialog |
|
|
| 80 | kde-base/kdebase kde-base/kde-menu |
|
|
| 81 | kde-base/kdebase kde-base/kdesu |
|
|
| 82 | kde-base/kdebase kde-base/kfile |
|
|
| 83 | kde-base/kdebase kde-base/khelpcenter |
|
|
| 84 | kde-base/kdebase kde-base/kiconfinder |
|
|
| 85 | kde-base/kdebase kde-base/kioclient |
|
|
| 86 | kde-base/kdebase kde-base/kmimetypefinder |
|
|
| 87 | kde-base/kdebase kde-base/knetattach |
|
|
| 88 | kde-base/kdebase kde-base/knewstuff |
|
|
| 89 | kde-base/kdebase kde-base/knotify |
|
|
| 90 | kde-base/kdebase kde-base/kpasswdserver |
|
|
| 91 | kde-base/kdebase kde-base/kquitapp |
|
|
| 92 | kde-base/kdebase kde-base/kreadconfig |
|
|
| 93 | kde-base/kdebase kde-base/kstart |
|
|
| 94 | kde-base/kdebase kde-base/kstyles |
|
|
| 95 | kde-base/kdebase kde-base/ktimezoned |
|
|
| 96 | kde-base/kdebase kde-base/ktraderclient |
|
|
| 97 | kde-base/kdebase kde-base/kuiserver |
|
|
| 98 | kde-base/kdebase kde-base/kurifilter-plugins |
|
|
| 99 | kde-base/kdebase kde-base/nepomuk |
|
|
| 100 | kde-base/kdebase kde-base/phonon |
|
|
| 101 | kde-base/kdebase kde-base/solid-hardware |
|
|
| 102 | kde-base/kdebase kde-base/soliduiserver |
|
|
| 103 | kde-base/kdebase kde-base/kcheckpass |
|
|
| 104 | kde-base/kdebase kde-base/kcminit |
|
|
| 105 | kde-base/kdebase kde-base/kdebase-startkde |
|
|
| 106 | kde-base/kdebase kde-base/kstartupconfig |
|
|
| 107 | kde-base/kdebase kde-base/kde-menu-icons |
|
|
| 108 | kde-base/kdebase kde-base/kde-wallpapers |
|
|
| 109 | kde-base/kdebase kde-base/kdm |
|
|
| 110 | kde-base/kdebase kde-base/khotkeys |
|
|
| 111 | kde-base/kdebase kde-base/klipper |
|
|
| 112 | kde-base/kdebase kde-base/kmenuedit |
|
|
| 113 | kde-base/kdebase kde-base/krunner |
|
|
| 114 | kde-base/kdebase kde-base/kscreensaver |
|
|
| 115 | kde-base/kdebase kde-base/ksmserver |
|
|
| 116 | kde-base/kdebase kde-base/ksplash |
|
|
| 117 | kde-base/kdebase kde-base/ksysguard |
|
|
| 118 | kde-base/kdebase kde-base/ksystraycmd |
|
|
| 119 | kde-base/kdebase kde-base/ktip |
|
|
| 120 | kde-base/kdebase kde-base/kwin |
|
|
| 121 | kde-base/kdebase kde-base/libkworkspace |
|
|
| 122 | kde-base/kdebase kde-base/libplasma |
|
|
| 123 | kde-base/kdebase kde-base/libtaskmanager |
|
|
| 124 | kde-base/kdebase kde-base/plasma |
|
|
| 125 | kde-base/kdebase kde-base/solid |
|
|
| 126 | kde-base/kdebase kde-base/systemsettings |
|
|
| 127 | kde-base/kdebindings kde-base/kalyptus |
|
|
| 128 | kde-base/kdebindings kde-base/kdejava |
|
|
| 129 | kde-base/kdebindings kde-base/kimono |
|
|
| 130 | kde-base/kdebindings kde-base/kjsembed |
|
|
| 131 | kde-base/kdebindings kde-base/korundum |
|
|
| 132 | kde-base/kdebindings kde-base/krosspython |
|
|
| 133 | kde-base/kdebindings kde-base/krossruby |
|
|
| 134 | kde-base/kdebindings kde-base/pykde4 |
|
|
| 135 | kde-base/kdebindings kde-base/qyoto |
|
|
| 136 | kde-base/kdebindings kde-base/qtjava |
|
|
| 137 | kde-base/kdebindings kde-base/qtruby |
|
|
| 138 | kde-base/kdebindings kde-base/qtsharp |
|
|
| 139 | kde-base/kdebindings kde-base/smoke |
|
|
| 140 | kde-base/kdebindings kde-base/xparts |
|
|
| 141 | kde-base/kdeedu kde-base/blinken |
|
|
| 142 | kde-base/kdeedu kde-base/kalgebra |
|
|
| 143 | kde-base/kdeedu kde-base/kalzium |
|
|
| 144 | kde-base/kdeedu kde-base/kanagram |
|
|
| 145 | kde-base/kdeedu kde-base/kbruch |
|
|
| 146 | kde-base/kdeedu kde-base/kgeography |
|
|
| 147 | kde-base/kdeedu kde-base/khangman |
|
|
| 148 | kde-base/kdeedu kde-base/kig |
|
|
| 149 | kde-base/kdeedu kde-base/kiten |
|
|
| 150 | kde-base/kdeedu kde-base/klettres |
|
|
| 151 | kde-base/kdeedu kde-base/kmplot |
|
|
| 152 | kde-base/kdeedu kde-base/kpercentage |
|
|
| 153 | kde-base/kdeedu kde-base/kstars |
|
|
| 154 | kde-base/kdeedu kde-base/ktouch |
|
|
| 155 | kde-base/kdeedu kde-base/kturtle |
|
|
| 156 | kde-base/kdeedu kde-base/kwordquiz |
|
|
| 157 | kde-base/kdeedu kde-base/libkdeedu |
|
|
| 158 | kde-base/kdeedu kde-base/marble |
|
|
| 159 | kde-base/kdeedu kde-base/parley |
|
|
| 160 | kde-base/kdeedu kde-base/step |
|
|
| 161 | kde-base/kdegames kde-base/bovo |
|
|
| 162 | kde-base/kdegames kde-base/katomic |
|
|
| 163 | kde-base/kdegames kde-base/kbattleship |
|
|
| 164 | kde-base/kdegames kde-base/kblackbox |
|
|
| 165 | kde-base/kdegames kde-base/kbounce |
|
|
| 166 | kde-base/kdegames kde-base/kdiamond |
|
|
| 167 | kde-base/kdegames kde-base/kfourinline |
|
|
| 168 | kde-base/kdegames kde-base/kgoldrunner |
|
|
| 169 | kde-base/kdegames kde-base/kiriki |
|
|
| 170 | kde-base/kdegames kde-base/kjumpingcube |
|
|
| 171 | kde-base/kdegames kde-base/klines |
|
|
| 172 | kde-base/kdegames kde-base/kmahjongg |
|
|
| 173 | kde-base/kdegames kde-base/kmines |
|
|
| 174 | kde-base/kdegames kde-base/knetwalk |
|
|
| 175 | kde-base/kdegames kde-base/kolf |
|
|
| 176 | kde-base/kdegames kde-base/kollision |
|
|
| 177 | kde-base/kdegames kde-base/konquest |
|
|
| 178 | kde-base/kdegames kde-base/kpat |
|
|
| 179 | kde-base/kdegames kde-base/kreversi |
|
|
| 180 | kde-base/kdegames kde-base/ksame |
|
|
| 181 | kde-base/kdegames kde-base/kshisen |
|
|
| 182 | kde-base/kdegames kde-base/kspaceduel |
|
|
| 183 | kde-base/kdegames kde-base/ksquares |
|
|
| 184 | kde-base/kdegames kde-base/ksudoku |
|
|
| 185 | kde-base/kdegames kde-base/ktuberling |
|
|
| 186 | kde-base/kdegames kde-base/kubrick |
|
|
| 187 | kde-base/kdegames kde-base/libkdegames |
|
|
| 188 | kde-base/kdegames kde-base/libkmahjongg |
|
|
| 189 | kde-base/kdegames kde-base/lskat |
|
|
| 190 | kde-base/kdegraphics kde-base/gwenview |
|
|
| 191 | kde-base/kdegraphics kde-base/kamera |
|
|
| 192 | kde-base/kdegraphics kde-base/kcolorchooser |
|
|
| 193 | kde-base/kdegraphics kde-base/kgamma |
|
|
| 194 | kde-base/kdegraphics kde-base/kghostview |
|
|
| 195 | kde-base/kdegraphics kde-base/kolourpaint |
|
|
| 196 | kde-base/kdegraphics kde-base/kruler |
|
|
| 197 | kde-base/kdegraphics kde-base/ksnapshot |
|
|
| 198 | kde-base/kdegraphics kde-base/libkscan |
|
|
| 199 | kde-base/kdegraphics kde-base/okular |
|
|
| 200 | kde-base/kdegraphics kde-base/svgpart |
|
|
| 201 | kde-base/kdemultimedia kde-base/dragonplayer |
|
|
| 202 | kde-base/kdemultimedia kde-base/juk |
|
|
| 203 | kde-base/kdemultimedia kde-base/kdemultimedia-kioslaves |
|
|
| 204 | kde-base/kdemultimedia kde-base/kmix |
|
|
| 205 | kde-base/kdemultimedia kde-base/kscd |
|
|
| 206 | kde-base/kdemultimedia kde-base/libkcddb |
|
|
| 207 | kde-base/kdemultimedia kde-base/libkcompactdisc |
|
|
| 208 | kde-base/kdenetwork kde-base/kdenetwork-filesharing |
|
|
| 209 | kde-base/kdenetwork kde-base/kdnssd |
|
|
| 210 | kde-base/kdenetwork kde-base/kget |
|
|
| 211 | kde-base/kdenetwork kde-base/knewsticker |
|
|
| 212 | kde-base/kdenetwork kde-base/kopete |
|
|
| 213 | kde-base/kdenetwork kde-base/kppp |
|
|
| 214 | kde-base/kdenetwork kde-base/krdc |
|
|
| 215 | kde-base/kdenetwork kde-base/krfb |
|
|
| 216 | kde-base/kdepim kde-base/akonadi |
|
|
| 217 | kde-base/kdepim kde-base/akregator |
|
|
| 218 | kde-base/kdepim kde-base/certmanager |
|
|
| 219 | kde-base/kdepim kde-base/kabc2mutt |
|
|
| 220 | kde-base/kdepim kde-base/kabcclient |
|
|
| 221 | kde-base/kdepim kde-base/kaddressbook |
|
|
| 222 | kde-base/kdepim kde-base/kalarm |
|
|
| 223 | kde-base/kdepim kde-base/kdemaildir |
|
|
| 224 | kde-base/kdepim kde-base/kdepim-kioslaves |
|
|
| 225 | kde-base/kdepim kde-base/kdepim-kresources |
|
|
| 226 | kde-base/kdepim kde-base/kdepim-wizards |
|
|
| 227 | kde-base/kdepim kde-base/kfeed |
|
|
| 228 | kde-base/kdepim kde-base/kitchensync |
|
|
| 229 | kde-base/kdepim kde-base/kleopatra |
|
|
| 230 | kde-base/kdepim kde-base/kmail |
|
|
| 231 | kde-base/kdepim kde-base/kmailcvt |
|
|
| 232 | kde-base/kdepim kde-base/kmobiletools |
|
|
| 233 | kde-base/kdepim kde-base/knode |
|
|
| 234 | kde-base/kdepim kde-base/knotes |
|
|
| 235 | kde-base/kdepim kde-base/kode |
|
|
| 236 | kde-base/kdepim kde-base/konsolekalendar |
|
|
| 237 | kde-base/kdepim kde-base/kontact |
|
|
| 238 | kde-base/kdepim kde-base/kontact-specialdates |
|
|
| 239 | kde-base/kdepim kde-base/korganizer |
|
|
| 240 | kde-base/kdepim kde-base/korn |
|
|
| 241 | kde-base/kdepim kde-base/kpilot |
|
|
| 242 | kde-base/kdepim kde-base/ktimetracker |
|
|
| 243 | kde-base/kdepim kde-base/ktnef |
|
|
| 244 | kde-base/kdepim kde-base/libkdepim |
|
|
| 245 | kde-base/kdepim kde-base/libkholidays |
|
|
| 246 | kde-base/kdepim kde-base/libkleo |
|
|
| 247 | kde-base/kdepim kde-base/libkpgp |
|
|
| 248 | kde-base/kdepim kde-base/libksieve |
|
|
| 249 | kde-base/kdepim kde-base/mailtransport |
|
|
| 250 | kde-base/kdepim kde-base/mimelib |
|
|
| 251 | kde-base/kdepim kde-base/networkstatus |
|
|
| 252 | kde-base/kdesdk kde-base/cervisia |
|
|
| 253 | kde-base/kdesdk kde-base/kdeaccounts-plugin |
|
|
| 254 | kde-base/kdesdk kde-base/kapptemplate |
|
|
| 255 | kde-base/kdesdk kde-base/kate |
|
|
| 256 | kde-base/kdesdk kde-base/kbabel |
|
|
| 257 | kde-base/kdesdk kde-base/kbugbuster |
|
|
| 258 | kde-base/kdesdk kde-base/kcachegrind |
|
|
| 259 | kde-base/kdesdk kde-base/kdesdk-kioslaves |
|
|
| 260 | kde-base/kdesdk kde-base/kdesdk-misc |
|
|
| 261 | kde-base/kdesdk kde-base/kdesdk-scripts |
|
|
| 262 | kde-base/kdesdk kde-base/kmtrace |
|
|
| 263 | kde-base/kdesdk kde-base/kompare |
|
|
| 264 | kde-base/kdesdk kde-base/kspy |
|
|
| 265 | kde-base/kdesdk kde-base/kstartperf |
|
|
| 266 | kde-base/kdesdk kde-base/strigi-analyzer |
|
|
| 267 | kde-base/kdesdk kde-base/kuiviewer |
|
|
| 268 | kde-base/kdesdk kde-base/poxml |
|
|
| 269 | kde-base/kdesdk kde-base/umbrello |
|
|
| 270 | kde-base/kdetoys kde-base/amor |
|
|
| 271 | kde-base/kdetoys kde-base/kteatime |
|
|
| 272 | kde-base/kdetoys kde-base/ktux |
|
|
| 273 | kde-base/kdetoys kde-base/kweather |
|
|
| 274 | kde-base/kdetoys kde-base/kworldclock |
|
|
| 275 | kde-base/kdeutils kde-base/ark |
|
|
| 276 | kde-base/kdeutils kde-base/kcalc |
|
|
| 277 | kde-base/kdeutils kde-base/kcharselect |
|
|
| 278 | kde-base/kdeutils kde-base/kdessh |
|
|
| 279 | kde-base/kdeutils kde-base/kdf |
|
|
| 280 | kde-base/kdeutils kde-base/kfloppy |
|
|
| 281 | kde-base/kdeutils kde-base/kgpg |
|
|
| 282 | kde-base/kdeutils kde-base/kjots |
|
|
| 283 | kde-base/kdeutils kde-base/kmilo |
|
|
| 284 | kde-base/kdeutils kde-base/kregexpeditor |
|
|
| 285 | kde-base/kdeutils kde-base/kdessh |
|
|
| 286 | kde-base/kdeutils kde-base/ktimer |
|
|
| 287 | kde-base/kdeutils kde-base/kwallet |
|
|
| 288 | kde-base/kdeutils kde-base/superkaramba |
|
|
| 289 | kde-base/kdeutils kde-base/sweeper |
|
|
| 290 | kde-base/kdewebdev kde-base/kfilereplace |
|
|
| 291 | kde-base/kdewebdev kde-base/kimagemapeditor |
|
|
| 292 | kde-base/kdewebdev kde-base/klinkstatus |
|
|
| 293 | kde-base/kdewebdev kde-base/kxsldbg |
|
|
| 294 | kde-base/kdewebdev kde-base/quanta |
|
|
| 295 | app-office/koffice app-office/karbon |
|
|
| 296 | app-office/koffice app-office/kchart |
|
|
| 297 | app-office/koffice app-office/kexi |
|
|
| 298 | app-office/koffice app-office/kformula |
|
|
| 299 | app-office/koffice app-office/kivio |
|
|
| 300 | app-office/koffice app-office/koffice-data |
|
|
| 301 | app-office/koffice app-office/koffice-libs |
|
|
| 302 | app-office/koffice app-office/koshell |
|
|
| 303 | app-office/koffice app-office/kplato |
|
|
| 304 | app-office/koffice app-office/kpresenter |
|
|
| 305 | app-office/koffice app-office/krita |
|
|
| 306 | app-office/koffice app-office/kspread |
|
|
| 307 | app-office/koffice app-office/kugar |
|
|
| 308 | app-office/koffice app-office/kword |
|
|
| 309 | ' |
|
|
| 310 | |
|
|
| 311 | # @FUNCTION: get-parent-package |
|
|
| 312 | # @USAGE: <split ebuild> |
|
|
| 313 | # @DESCRIPTION: |
|
|
| 314 | # Echoes the name of the monolithic package that a given split ebuild was derived from. |
|
|
| 315 | get-parent-package() { |
|
|
| 316 | local parent child |
|
|
| 317 | while read parent child; do |
|
|
| 318 | if [[ "${child}" == "$1" ]]; then |
|
|
| 319 | echo ${parent} |
|
|
| 320 | return 0 |
|
|
| 321 | fi |
|
|
| 322 | done <<< "$KDE_DERIVATION_MAP" |
|
|
| 323 | die "Package $target not found in KDE_DERIVATION_MAP, please report bug" |
|
|
| 324 | } |
|
|
| 325 | |
|
|
| 326 | # @FUNCTION: get-child-packages |
|
|
| 327 | # @USAGE: <monolithic ebuild> |
|
|
| 328 | # @DESCRIPTION: |
|
|
| 329 | # Echoes the names of all (split) ebuilds derived from a given monolithic ebuild. |
|
|
| 330 | get-child-packages() { |
|
|
| 331 | local parent child |
|
|
| 332 | while read parent child; do |
|
|
| 333 | [[ "${parent}" == "$1" ]] && echo -n "${child} " |
|
|
| 334 | done <<< "$KDE_DERIVATION_MAP" |
|
|
| 335 | } |
|
|
| 336 | |
|
|
| 337 | # @FUNCTION: is-parent-package |
|
|
| 338 | # @USAGE: <$CATEGORY/$PN> |
|
|
| 339 | # @DESCRIPTION: |
|
|
| 340 | # Returns zero exit-status if the given package is a parent (monolithic) ebuild. |
|
|
| 341 | # Returns non-zero exit-status if it's not. |
|
|
| 342 | is-parent-package() { |
|
|
| 343 | local parent child |
|
|
| 344 | while read parent child; do |
|
|
| 345 | [[ "${parent}" == "$1" ]] && return 0 |
|
|
| 346 | done <<< "$KDE_DERIVATION_MAP" |
|
|
| 347 | return 1 |
|
|
| 348 | } |
|
|
| 349 | |
51 | |
| 350 | # @FUNCTION: buildsycoca |
52 | # @FUNCTION: buildsycoca |
| 351 | # @DESCRIPTION: |
53 | # @DESCRIPTION: |
| 352 | # Function to rebuild the KDE System Configuration Cache. |
54 | # Function to rebuild the KDE System Configuration Cache. |
| 353 | # All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
55 | # All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
| 354 | # |
|
|
| 355 | # Note that kde4-base.eclass already does this. |
|
|
| 356 | buildsycoca() { |
56 | buildsycoca() { |
| 357 | debug-print-function ${FUNCNAME} "$@" |
57 | debug-print-function ${FUNCNAME} "$@" |
| 358 | |
58 | |
| 359 | if [[ -x ${KDEDIR}/bin/kbuildsycoca4 && -z "${ROOT%%/}" ]]; then |
59 | local KDE3DIR="${EROOT}usr/kde/3.5" |
| 360 | # First of all, make sure that the /usr/share/services directory exists |
60 | if [[ -z ${EROOT%%/} && -x "${KDE3DIR}"/bin/kbuildsycoca ]]; then |
| 361 | # and it has the right permissions |
61 | # Since KDE3 is aware of shortcuts in /usr, rebuild database |
| 362 | mkdir -p /usr/share/services |
62 | # for KDE3 as well. |
| 363 | chown root:0 /usr/share/services |
63 | touch "${KDE3DIR}"/share/services/ksycoca |
| 364 | chmod 0755 /usr/share/services |
64 | chmod 644 "${KDE3DIR}"/share/services/ksycoca |
| 365 | |
65 | |
| 366 | # kbuildsycoca4 needs a running dbus session to work correctly. |
66 | ebegin "Running kbuildsycoca to build global database" |
| 367 | # We have to start a new dbus session, because the DBUS_SESSION_BUS_ADDRESS in the environment |
67 | XDG_DATA_DIRS="${EROOT}usr/local/share:${KDE3DIR}/share:${EROOT}usr/share" \ |
| 368 | # could from from the user's environment (through su [without '-']), causing kbuildsycoca4 to hang. |
68 | DISPLAY="" \ |
|
|
69 | "${KDE3DIR}"/bin/kbuildsycoca --global --noincremental &> /dev/null |
|
|
70 | eend $? |
|
|
71 | fi |
| 369 | |
72 | |
| 370 | echo "Starting dbus session for kbuildsycoca4" |
73 | if [[ -z ${EROOT%%/} && -x "${KDEDIR}"/bin/kbuildsycoca4 ]]; then |
| 371 | local _i |
74 | # Make sure tha cache file exists, writable by root and readable by |
| 372 | for _i in $(dbus-launch); do |
75 | # others. Otherwise kbuildsycoca4 will fail. |
| 373 | # We export both the ADDRESS _and_ the PID. We need the latter only to kill our session. |
76 | touch "${KDEDIR}/share/kde4/services/ksycoca4" |
| 374 | debug-print "Exporting: ${_i}" |
77 | chmod 644 "${KDEDIR}/share/kde4/services/ksycoca4" |
| 375 | export "${_i}"; |
78 | |
| 376 | done |
79 | # We have to unset DISPLAY and DBUS_SESSION_BUS_ADDRESS, the ones |
| 377 | debug-print "kbuildsycoca4 is using ${DBUS_SESSION_BUS_ADDRESS}" |
80 | # in the user's environment (through su [without '-']) may cause |
|
|
81 | # kbuildsycoca4 to hang. |
| 378 | |
82 | |
| 379 | ebegin "Running kbuildsycoca4 to build global database" |
83 | ebegin "Running kbuildsycoca4 to build global database" |
| 380 | # This is needed because we support multiple kde versions installed together. |
84 | # This is needed because we support multiple kde versions installed together. |
| 381 | XDG_DATA_DIRS="/usr/share:${KDEDIRS//:/\/share:}/share:/usr/local/share" \ |
85 | # Lookup in order - local, KDEDIR, /usr, do not duplicate entries btw. |
|
|
86 | local KDEDIRS="${EROOT}usr/share" |
|
|
87 | [[ ${KDEDIR} != "${EROOT}usr" ]] && KDEDIRS="${KDEDIR}/share:${KDEDIRS}" |
|
|
88 | XDG_DATA_DIRS="${EROOT}usr/local/share:${KDEDIRS}" \ |
|
|
89 | DISPLAY="" DBUS_SESSION_BUS_ADDRESS="" \ |
| 382 | ${KDEDIR}/bin/kbuildsycoca4 --global --noincremental &> /dev/null |
90 | "${KDEDIR}"/bin/kbuildsycoca4 --global --noincremental &> /dev/null |
| 383 | eend $? |
91 | eend $? |
|
|
92 | fi |
| 384 | |
93 | |
| 385 | echo "Killing dbus session for kbuildsycoca4" |
94 | # fix permission for some directories |
| 386 | debug-print "ADDRESS ${DBUS_SESSION_BUS_ADDRESS}" |
95 | for x in share/{config,kde4}; do |
| 387 | debug-print "PID: ${DBUS_SESSION_BUS_PID}" |
96 | [[ ${KDEDIR} = ${EROOT}usr ]] && DIRS=${EROOT}usr || DIRS="${EROOT}usr ${KDEDIR}" |
| 388 | kill ${DBUS_SESSION_BUS_PID} |
97 | for y in ${DIRS}; do |
| 389 | eend $? |
98 | [[ -d "${y}/${x}" ]] || break # nothing to do if directory does not exist |
| 390 | unset DBUS_SESSION_BUS_ADDRESS DBUS_SESSION_BUS_PID |
99 | if [[ $(stat --format=%a "${y}/${x}") != 755 ]]; then |
| 391 | |
100 | ewarn "QA Notice:" |
| 392 | # For some reason this directory gets created with noone other than root |
101 | ewarn "Package ${PN} is breaking ${y}/${x} permissions." |
| 393 | # being able to read it. Hence we chmod it. |
102 | ewarn "Please report this issue to gentoo bugzilla." |
| 394 | chmod -R 0755 "${ROOT}"/usr/share/kde4 |
103 | einfo "Permissions will get adjusted automatically now." |
|
|
104 | find "${y}/${x}" -type d -print0 | xargs -0 chmod 755 |
| 395 | fi |
105 | fi |
|
|
106 | done |
|
|
107 | done |
| 396 | } |
108 | } |
| 397 | |
109 | |
| 398 | # @FUNCTION: comment_all_add_subdirectory |
110 | # @FUNCTION: comment_all_add_subdirectory |
| 399 | # @USAGE: [list of directory names] |
111 | # @USAGE: [list of directory names] |
| 400 | # @DESCRIPTION: |
112 | # @DESCRIPTION: |
| 401 | # recursively comment all add_subdirectory instructions in listed directories |
113 | # Recursively comment all add_subdirectory instructions in listed directories, |
| 402 | # except the ones in cmake/. |
114 | # except those in cmake/. |
| 403 | comment_all_add_subdirectory() { |
115 | comment_all_add_subdirectory() { |
| 404 | find "$@" -name CMakeLists.txt -print0 | grep -vFzZ "./cmake" | \ |
116 | find "$@" -name CMakeLists.txt -print0 | grep -vFzZ "./cmake" | \ |
| 405 | xargs -0 sed -i -e '/add_subdirectory/s/^/#DONOTCOMPILE /' -e '/ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' || \ |
117 | xargs -0 sed -i \ |
|
|
118 | -e '/^[[:space:]]*add_subdirectory/s/^/#DONOTCOMPILE /' \ |
|
|
119 | -e '/^[[:space:]]*ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' \ |
|
|
120 | -e '/^[[:space:]]*macro_optional_add_subdirectory/s/^/#DONOTCOMPILE /' \ |
|
|
121 | -e '/^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' \ |
| 406 | die "${LINENO}: Initial sed died" |
122 | || die "${LINENO}: Initial sed died" |
| 407 | } |
123 | } |
| 408 | |
124 | |
| 409 | # @ECLASS-VARIABLE: KDE_LINGUAS |
125 | # @ECLASS-VARIABLE: KDE_LINGUAS |
| 410 | # @DESCRIPTION: |
126 | # @DESCRIPTION: |
| 411 | # This is a whitespace-separated list of translations that this ebuild supports. |
127 | # This is a whitespace-separated list of translations this ebuild supports. |
| 412 | # These translations automatically get added to IUSE. Therefore ebuilds must set |
128 | # These translations are automatically added to IUSE. Therefore ebuilds must set |
| 413 | # this variable before inheriting any eclasses. To only enable selected |
129 | # this variable before inheriting any eclasses. To enable only selected |
| 414 | # translations ebuilds must call enable_selected_linguas(). kde4-base.eclass does |
130 | # translations, ebuilds must call enable_selected_linguas(). kde4-{base,meta}.eclass does |
| 415 | # this for you. |
131 | # this for you. |
| 416 | # |
132 | # |
| 417 | # Example: KDE_LINGUAS="en_GB de nl" |
133 | # Example: KDE_LINGUAS="en_GB de nl" |
| 418 | for _lingua in ${KDE_LINGUAS}; do |
134 | for _lingua in ${KDE_LINGUAS}; do |
| 419 | IUSE="${IUSE} linguas_${_lingua}" |
135 | IUSE="${IUSE} linguas_${_lingua}" |
| 420 | done |
136 | done |
| 421 | |
137 | |
| 422 | # @FUNCTION: enable_selected_linguas |
138 | # @FUNCTION: enable_selected_linguas |
| 423 | # @DESCRIPTION: |
139 | # @DESCRIPTION: |
| 424 | # Enable translations based on LINGUAS settings and what translations are |
140 | # Enable translations based on LINGUAS settings and translations supported by |
| 425 | # supported (see KDE_LINGUAS). By default translations are found in "${S}"/po |
141 | # the package (see KDE_LINGUAS). By default, translations are found in "${S}"/po |
| 426 | # but this default can be overridden by defining KDE_LINGUAS_DIR. |
142 | # but this default can be overridden by defining KDE_LINGUAS_DIR. |
| 427 | enable_selected_linguas() { |
143 | enable_selected_linguas() { |
| 428 | local lingua |
144 | debug-print-function ${FUNCNAME} "$@" |
|
|
145 | |
|
|
146 | local lingua linguas sr_mess wp |
|
|
147 | |
|
|
148 | # if there is no linguas defined we enable everything |
|
|
149 | if ! $(env | grep -q "^LINGUAS="); then |
|
|
150 | return 0 |
|
|
151 | fi |
|
|
152 | |
|
|
153 | # @ECLASS-VARIABLE: KDE_LINGUAS_DIR |
|
|
154 | # @DESCRIPTION: |
|
|
155 | # Specified folder where application translations are located. |
|
|
156 | KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:="po"} |
|
|
157 | [[ -d "${KDE_LINGUAS_DIR}" ]] || die "wrong linguas dir specified" |
| 429 | comment_all_add_subdirectory "${KDE_LINGUAS_DIR:-${S}/po}" |
158 | comment_all_add_subdirectory "${KDE_LINGUAS_DIR}" |
|
|
159 | pushd "${KDE_LINGUAS_DIR}" > /dev/null |
|
|
160 | |
|
|
161 | # fix all various crazy sr@Latn variations |
|
|
162 | # this part is only ease for ebuilds, so there wont be any die when this |
|
|
163 | # fail at any point |
|
|
164 | sr_mess="sr@latn sr@latin sr@Latin" |
|
|
165 | for wp in ${sr_mess}; do |
|
|
166 | [[ -e "${wp}.po" ]] && mv "${wp}.po" "sr@Latn.po" |
|
|
167 | if [[ -d "${wp}" ]]; then |
|
|
168 | # move dir and fix cmakelists |
|
|
169 | mv "${wp}" "sr@Latn" |
|
|
170 | sed -i \ |
|
|
171 | -e "s:${wp}:sr@Latin:g" \ |
|
|
172 | CMakeLists.txt |
|
|
173 | fi |
|
|
174 | done |
|
|
175 | |
| 430 | for lingua in ${KDE_LINGUAS}; do |
176 | for lingua in ${KDE_LINGUAS}; do |
|
|
177 | if [[ -e "${lingua}.po" ]]; then |
|
|
178 | mv "${lingua}.po" "${lingua}.po.old" |
|
|
179 | fi |
|
|
180 | done |
|
|
181 | |
|
|
182 | for lingua in ${KDE_LINGUAS}; do |
| 431 | if use linguas_${lingua}; then |
183 | if use linguas_${lingua} ; then |
|
|
184 | if [[ -d "${lingua}" ]]; then |
|
|
185 | linguas="${linguas} ${lingua}" |
| 432 | sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
186 | sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
| 433 | -e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
187 | -e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
| 434 | -i "${KDE_LINGUAS_DIR:-${S}/po}"/CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
188 | -i CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
| 435 | fi |
189 | fi |
|
|
190 | if [[ -e "${lingua}.po.old" ]]; then |
|
|
191 | linguas="${linguas} ${lingua}" |
|
|
192 | mv "${lingua}.po.old" "${lingua}.po" |
|
|
193 | fi |
|
|
194 | fi |
| 436 | done |
195 | done |
| 437 | } |
196 | [[ -n "${linguas}" ]] && einfo "Enabling languages: ${linguas}" |
| 438 | |
197 | |
| 439 | # @ECLASS-VARIABLE: QT4_BUILT_WITH_USE_CHECK |
198 | popd > /dev/null |
|
|
199 | } |
|
|
200 | |
|
|
201 | # @FUNCTION: enable_selected_doc_linguas |
|
|
202 | # @DESCRIPTION: |
|
|
203 | # Enable only selected linguas enabled doc folders. |
|
|
204 | enable_selected_doc_linguas() { |
|
|
205 | debug-print-function ${FUNCNAME} "$@" |
|
|
206 | |
|
|
207 | # if there is no linguas defined we enable everything |
|
|
208 | if ! $(env | grep -q "^LINGUAS="); then |
|
|
209 | return 0 |
|
|
210 | fi |
|
|
211 | |
|
|
212 | # @ECLASS-VARIABLE: KDE_DOC_DIRS |
| 440 | # @DESCRIPTION: |
213 | # @DESCRIPTION: |
| 441 | # A list of USE flags that x11-libs/qt:4 needs to be built with. |
214 | # Variable specifying whitespace separated patterns for documentation locations. |
| 442 | # |
215 | # Default is "doc/%lingua" |
| 443 | # This list is automatically appended to KDE4_BUILT_WITH_USE_CHECK, |
216 | KDE_DOC_DIRS=${KDE_DOC_DIRS:='doc/%lingua'} |
| 444 | # so don't call qt4_pkg_setup manually. |
217 | local linguas |
|
|
218 | for pattern in ${KDE_DOC_DIRS}; do |
| 445 | |
219 | |
| 446 | # @ECLASS-VARIABLE: KDE4_BUILT_WITH_USE_CHECK |
220 | local handbookdir=`dirname ${pattern}` |
| 447 | # @DESCRIPTION: |
221 | local translationdir=`basename ${pattern}` |
| 448 | # The contents of $KDE4_BUILT_WITH_USE_CHECK gets fed to built_with_use |
222 | # Do filename pattern supplied, treat as directory |
| 449 | # (eutils.eclass), line per line. |
223 | [[ "${handbookdir}" = '.' ]] && handbookdir=${translationdir} && translationdir= |
| 450 | # |
224 | [[ -d "${handbookdir}" ]] || die 'wrong doc dir specified' |
| 451 | # Example: |
|
|
| 452 | # @CODE |
|
|
| 453 | # pkg_setup() { |
|
|
| 454 | # KDE4_BUILT_WITH_USE_CHECK="--missing true sys-apps/dbus X" |
|
|
| 455 | # use alsa && KDE4_BUILT_WITH_USE_CHECK="${KDE4_BUILT_WITH_USE_CHECK} |
|
|
| 456 | # --missing true media-libs/alsa-lib midi" |
|
|
| 457 | # kde4-base_pkg_setup |
|
|
| 458 | # } |
|
|
| 459 | # @CODE |
|
|
| 460 | |
225 | |
| 461 | # run built_with_use on each flag and print appropriate error messages if any |
226 | if ! use handbook; then |
| 462 | # flags are missing |
227 | # Disable whole directory |
| 463 | _kde4-functions_built_with_use() { |
228 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
| 464 | local missing opt pkg flag flags |
229 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
| 465 | |
230 | -i CMakeLists.txt || die 'failed to comment out all handbooks' |
| 466 | if [[ ${1} = "--missing" ]]; then |
|
|
| 467 | missing="${1} ${2}" && shift 2 |
|
|
| 468 | fi |
|
|
| 469 | if [[ ${1:0:1} = "-" ]]; then |
|
|
| 470 | opt=${1} && shift |
|
|
| 471 | fi |
|
|
| 472 | |
|
|
| 473 | pkg=${1} && shift |
|
|
| 474 | |
|
|
| 475 | for flag in "${@}"; do |
|
|
| 476 | flags="${flags} ${flag}" |
|
|
| 477 | if ! built_with_use ${missing} ${opt} ${pkg} ${flag}; then |
|
|
| 478 | flags="${flags}*" |
|
|
| 479 | else |
231 | else |
| 480 | [[ ${opt} = "-o" ]] && return 0 |
232 | # Disable subdirectories recursively |
|
|
233 | comment_all_add_subdirectory "${handbookdir}" |
|
|
234 | # Add requested translations |
|
|
235 | local lingua |
|
|
236 | for lingua in en ${KDE_LINGUAS}; do |
|
|
237 | if [[ ${lingua} = 'en' ]] || use linguas_${lingua}; then |
|
|
238 | if [[ -d "${handbookdir}/${translationdir//%lingua/${lingua}}" ]]; then |
|
|
239 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
|
|
240 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
|
|
241 | -i "${handbookdir}"/CMakeLists.txt && ! has ${lingua} ${linguas} && linguas="${linguas} ${lingua}" |
|
|
242 | fi |
| 481 | fi |
243 | fi |
| 482 | done |
244 | done |
| 483 | if [[ "${flags# }" = "${@}" ]]; then |
|
|
| 484 | return 0 |
|
|
| 485 | fi |
245 | fi |
| 486 | if [[ ${opt} = "-o" ]]; then |
246 | |
| 487 | eerror "This package requires '${pkg}' to be built with any of the following USE flags: '$*'." |
247 | done |
|
|
248 | [[ -n "${linguas}" ]] && einfo "Enabling handbook translations:${linguas}" |
|
|
249 | } |
|
|
250 | |
|
|
251 | # @FUNCTION: get_build_type |
|
|
252 | # @DESCRIPTION: |
|
|
253 | # Determine whether we are using live ebuild or tbzs. |
|
|
254 | get_build_type() { |
|
|
255 | if [[ ${SLOT} = live || ${PV} = *9999* ]]; then |
|
|
256 | BUILD_TYPE="live" |
| 488 | else |
257 | else |
| 489 | eerror "This package requires '${pkg}' to be built with the following USE flags: '${flags# }'." |
258 | BUILD_TYPE="release" |
| 490 | fi |
259 | fi |
| 491 | return 1 |
260 | export BUILD_TYPE |
| 492 | } |
261 | } |
| 493 | |
262 | |
| 494 | # @FUNCTION: kde4-functions_check_use |
263 | # @FUNCTION: migrate_store_dir |
| 495 | # @DESCRIPTION: |
264 | # @DESCRIPTION: |
| 496 | # Check if the Qt4 libraries are built with the USE flags listed in |
265 | # Universal store dir migration |
| 497 | # $QT4_BUILT_WITH_USE_CHECK. |
266 | # * performs split of kdebase to kdebase-apps when needed |
| 498 | # |
267 | # * moves playground/extragear kde4-base-style to toplevel dir |
| 499 | # Check if a list of packages are built with certain USE flags, as listed in |
268 | migrate_store_dir() { |
| 500 | # $KDE4_BUILT_WITH_USE_CHECK. |
269 | local cleandir="${ESVN_STORE_DIR}/KDE" |
| 501 | # |
270 | if [[ -d "${cleandir}" ]]; then |
| 502 | # If any of the required USE flags are missing, an eerror will be printed for |
271 | ewarn "'${cleandir}' has been found. Moving contents to new location." |
| 503 | # each package with missing USE flags. |
272 | addwrite "${ESVN_STORE_DIR}" |
| 504 | kde4-functions_check_use() { |
273 | # Split kdebase |
| 505 | # I like to keep flags sorted |
274 | local module |
| 506 | QT4_BUILT_WITH_USE_CHECK=$(echo "${QT4_BUILT_WITH_USE_CHECK}" | \ |
275 | if pushd "${cleandir}"/kdebase/kdebase > /dev/null; then |
| 507 | tr '[:space:]' '\n' | sort | xargs) |
276 | for module in `find . -maxdepth 1 -type d -name [a-z0-9]\*`; do |
| 508 | |
277 | module="${module#./}" |
| 509 | local line missing |
278 | mkdir -p "${ESVN_STORE_DIR}/kdebase-${module}" && mv -f "${module}" "${ESVN_STORE_DIR}/kdebase-${module}" || \ |
| 510 | if [[ -n ${KDE4_BUILT_WITH_USE_CHECK[@]} && $(declare -p KDE4_BUILT_WITH_USE_CHECK) = 'declare -a '* ]]; then |
279 | die "Failed to move to '${ESVN_STORE_DIR}/kdebase-${module}'." |
| 511 | KDE4_BUILT_WITH_USE_CHECK=("x11-libs/qt:4 ${QT4_BUILT_WITH_USE_CHECK}" |
280 | done |
| 512 | "${KDE4_BUILT_WITH_USE_CHECK[@]}") |
281 | popd > /dev/null |
| 513 | |
282 | rm -fr "${cleandir}/kdebase" || \ |
| 514 | for line in "${KDE4_BUILT_WITH_USE_CHECK[@]}"; do |
283 | die "Failed to remove ${cleandir}/kdebase. You need to remove it manually." |
| 515 | [[ -z ${line} ]] && continue |
|
|
| 516 | if ! _kde4-functions_built_with_use ${line}; then |
|
|
| 517 | missing=true |
|
|
| 518 | fi |
284 | fi |
|
|
285 | # Move the rest |
|
|
286 | local pkg |
|
|
287 | for pkg in "${cleandir}"/*; do |
|
|
288 | mv -f "${pkg}" "${ESVN_STORE_DIR}"/ || eerror "Failed to move '${pkg}'" |
| 519 | done |
289 | done |
| 520 | else |
290 | rmdir "${cleandir}" || die "Could not move obsolete KDE store dir. Please move '${cleandir}' contents to appropriate location (possibly ${ESVN_STORE_DIR}) and manually remove '${cleandir}' in order to continue." |
| 521 | KDE4_BUILT_WITH_USE_CHECK="x11-libs/qt:4 ${QT4_BUILT_WITH_USE_CHECK} |
291 | fi |
| 522 | ${KDE4_BUILT_WITH_USE_CHECK}" |
|
|
| 523 | |
292 | |
| 524 | while read line; do |
293 | if ! hasq kde4-meta ${INHERITED}; then |
| 525 | [[ -z ${line} ]] && continue |
294 | case ${KMNAME} in |
| 526 | if ! _kde4-functions_built_with_use ${line}; then |
295 | extragear*|playground*) |
| 527 | missing=true |
296 | local svnlocalpath="${ESVN_STORE_DIR}"/"${KMNAME}"/"${PN}" |
|
|
297 | if [[ -d "${svnlocalpath}" ]]; then |
|
|
298 | local destdir="${ESVN_STORE_DIR}"/"${ESVN_PROJECT}"/"`basename "${ESVN_REPO_URI}"`" |
|
|
299 | ewarn "'${svnlocalpath}' has been found." |
|
|
300 | ewarn "Moving contents to new location: ${destdir}" |
|
|
301 | addwrite "${ESVN_STORE_DIR}" |
|
|
302 | mkdir -p "${ESVN_STORE_DIR}"/"${ESVN_PROJECT}" && mv -f "${svnlocalpath}" "${destdir}" \ |
|
|
303 | || die "Failed to move to '${svnlocalpath}'" |
|
|
304 | # Try cleaning empty directories |
|
|
305 | rmdir "`dirname "${svnlocalpath}"`" 2> /dev/null |
| 528 | fi |
306 | fi |
| 529 | done <<< "${KDE4_BUILT_WITH_USE_CHECK}" |
307 | ;; |
|
|
308 | esac |
| 530 | fi |
309 | fi |
| 531 | if [[ -n ${missing} ]]; then |
|
|
| 532 | echo |
|
|
| 533 | eerror "Flags marked with an * are missing." |
|
|
| 534 | die "Missing USE flags found" |
|
|
| 535 | fi |
|
|
| 536 | } |
310 | } |
|
|
311 | |
|
|
312 | # Functions handling KMLOADLIBS and KMSAVELIBS |
|
|
313 | |
|
|
314 | # @FUNCTION: save_library_dependencies |
|
|
315 | # @DESCRIPTION: |
|
|
316 | # Add exporting CMake dependencies for current package |
|
|
317 | save_library_dependencies() { |
|
|
318 | local depsfile="${T}/${PN}:${SLOT}" |
|
|
319 | |
|
|
320 | ebegin "Saving library dependencies in ${depsfile##*/}" |
|
|
321 | echo "EXPORT_LIBRARY_DEPENDENCIES(\"${depsfile}\")" >> "${S}/CMakeLists.txt" || \ |
|
|
322 | die "Failed to save the library dependencies." |
|
|
323 | eend $? |
|
|
324 | } |
|
|
325 | |
|
|
326 | # @FUNCTION: install_library_dependencies |
|
|
327 | # @DESCRIPTION: |
|
|
328 | # Install generated CMake library dependencies to /var/lib/kde |
|
|
329 | install_library_dependencies() { |
|
|
330 | local depsfile="${T}/${PN}:${SLOT}" |
|
|
331 | |
|
|
332 | ebegin "Installing library dependencies as ${depsfile##*/}" |
|
|
333 | insinto ${EROOT}var/lib/kde |
|
|
334 | doins "${depsfile}" || die "Failed to install library dependencies." |
|
|
335 | eend $? |
|
|
336 | } |
|
|
337 | |
|
|
338 | # @FUNCTION: load_library_dependencies |
|
|
339 | # @DESCRIPTION: |
|
|
340 | # Inject specified library dependencies in current package |
|
|
341 | load_library_dependencies() { |
|
|
342 | local pn i depsfile |
|
|
343 | ebegin "Injecting library dependencies from '${KMLOADLIBS}'" |
|
|
344 | |
|
|
345 | i=0 |
|
|
346 | for pn in ${KMLOADLIBS} ; do |
|
|
347 | ((i++)) |
|
|
348 | depsfile="${EROOT}var/lib/kde/${pn}:${SLOT}" |
|
|
349 | [[ -r "${depsfile}" ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}." |
|
|
350 | sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \ |
|
|
351 | die "Failed to include library dependencies for ${pn}" |
|
|
352 | done |
|
|
353 | eend $? |
|
|
354 | } |