| 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.12 2009/02/10 20:07:24 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.25 2009/10/06 18:02:12 alexxy Exp $ |
|
|
4 | |
|
|
5 | inherit versionator |
|
|
6 | |
|
|
7 | # Prefix compat: |
|
|
8 | : ${EROOT:=${ROOT}} |
|
|
9 | # Append missing trailing slash character |
|
|
10 | [[ ${EROOT} = */ ]] || EROOT+="/" |
| 4 | |
11 | |
| 5 | # @ECLASS: kde4-functions.eclass |
12 | # @ECLASS: kde4-functions.eclass |
| 6 | # @MAINTAINER: |
13 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
14 | # kde@gentoo.org |
| 8 | # @BLURB: Common ebuild functions for KDE 4 packages |
15 | # @BLURB: Common ebuild functions for KDE 4 packages |
| … | |
… | |
| 10 | # This eclass contains all functions shared by the different eclasses, |
17 | # This eclass contains all functions shared by the different eclasses, |
| 11 | # for KDE 4 ebuilds. |
18 | # for KDE 4 ebuilds. |
| 12 | |
19 | |
| 13 | # @ECLASS-VARIABLE: EAPI |
20 | # @ECLASS-VARIABLE: EAPI |
| 14 | # @DESCRIPTION: |
21 | # @DESCRIPTION: |
| 15 | # By default kde eclass wants eapi 2 which might be redefinable. |
22 | # By default kde4 eclasses want EAPI 2 which might be redefinable to newer |
|
|
23 | # versions. |
| 16 | case ${EAPI} in |
24 | case ${EAPI:-0} in |
| 17 | 2) : ;; |
25 | 2) : ;; |
| 18 | *) die "No way! EAPI older than 2 is not supported." ;; |
26 | *) DEPEND="EAPI-TOO-OLD" ;; |
| 19 | esac |
27 | esac |
| 20 | |
28 | |
| 21 | # @ECLASS-VARIABLE: KDEBASE |
29 | # @ECLASS-VARIABLE: KDEBASE |
| 22 | # @DESCRIPTION: |
30 | # @DESCRIPTION: |
| 23 | # This gets set to a non-zero value when a package is considered a kde or |
31 | # This gets set to a non-zero value when a package is considered a kde or |
| 24 | # koffice ebuild. |
32 | # koffice ebuild. |
| 25 | |
33 | |
| 26 | if [[ $CATEGORY = kde-base ]]; then |
34 | if [[ ${CATEGORY} = kde-base ]]; then |
| 27 | debug-print "${ECLASS}: KDEBASE ebuild recognized" |
35 | debug-print "${ECLASS}: KDEBASE ebuild recognized" |
| 28 | KDEBASE=kde-base |
36 | KDEBASE=kde-base |
| 29 | fi |
37 | fi |
| 30 | |
38 | |
| 31 | # is this a koffice ebuild? |
39 | # is this a koffice ebuild? |
| 32 | if [[ $KMNAME = koffice || $PN = koffice ]]; then |
40 | if [[ ${KMNAME} = koffice || ${PN} = koffice ]]; then |
| 33 | debug-print "${ECLASS}: KOFFICE ebuild recognized" |
41 | debug-print "${ECLASS}: KOFFICE ebuild recognized" |
| 34 | KDEBASE=koffice |
42 | KDEBASE=koffice |
| 35 | fi |
43 | fi |
| 36 | |
44 | |
| 37 | # @ECLASS-VARIABLE: KDE_SLOTS |
45 | # @ECLASS-VARIABLE: KDE_SLOTS |
| 38 | # @DESCRIPTION: |
46 | # @DESCRIPTION: |
| 39 | # The slots used by all KDE versions later than 4.0. The live-ebuilds use |
47 | # The slots used by all KDE versions later than 4.0. The live KDE releases use |
| 40 | # KDE_LIVE_SLOTS instead. |
48 | # KDE_LIVE_SLOTS instead. Values should be ordered. |
| 41 | KDE_SLOTS=( kde-4 4.1 4.2 ) |
49 | KDE_SLOTS=( "4.1" "4.2" "4.3" "4.4" ) |
| 42 | |
50 | |
| 43 | # @ECLASS-VARIABLE: KDE_LIVE_SLOTS |
51 | # @ECLASS-VARIABLE: KDE_LIVE_SLOTS |
| 44 | # @DESCRIPTION: |
52 | # @DESCRIPTION: |
| 45 | # The slots used by all KDE live versions. |
53 | # The slots used by KDE live versions. Values should be ordered. |
| 46 | KDE_LIVE_SLOTS=( live ) |
54 | KDE_LIVE_SLOTS=( "live" ) |
|
|
55 | |
|
|
56 | # @FUNCTION: slot_is_at_least |
|
|
57 | # @USAGE: <want> <have> |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # Version aware slot comparator. |
|
|
60 | # Current implementation relies on the fact, that slots can be compared like |
|
|
61 | # string literals (and let's keep it this way). |
|
|
62 | slot_is_at_least() { |
|
|
63 | [[ "${2}" > "${1}" || "${2}" = "${1}" ]] |
|
|
64 | } |
| 47 | |
65 | |
| 48 | # @FUNCTION: buildsycoca |
66 | # @FUNCTION: buildsycoca |
| 49 | # @DESCRIPTION: |
67 | # @DESCRIPTION: |
| 50 | # Function to rebuild the KDE System Configuration Cache. |
68 | # Function to rebuild the KDE System Configuration Cache. |
| 51 | # All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
69 | # All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
| 52 | # |
|
|
| 53 | # Note that kde4-base.eclass already does this. |
|
|
| 54 | buildsycoca() { |
70 | buildsycoca() { |
| 55 | debug-print-function ${FUNCNAME} "$@" |
71 | debug-print-function ${FUNCNAME} "$@" |
| 56 | |
72 | |
|
|
73 | local KDE3DIR="${EROOT}usr/kde/3.5" |
| 57 | if [[ -z ${ROOT%%/} && -x ${KDEDIR}/bin/kbuildsycoca4 ]]; then |
74 | if [[ -z ${EROOT%%/} && -x "${KDE3DIR}"/bin/kbuildsycoca ]]; then |
| 58 | # Make sure tha cache file exists, or kbuildsycoca4 will fail |
75 | # Since KDE3 is aware of shortcuts in /usr, rebuild database |
|
|
76 | # for KDE3 as well. |
| 59 | touch "${KDEDIR}/share/kde4/services/ksycoca4" |
77 | touch "${KDE3DIR}"/share/services/ksycoca |
|
|
78 | chmod 644 "${KDE3DIR}"/share/services/ksycoca |
| 60 | |
79 | |
| 61 | # We have to unset DISPLAY and DBUS_SESSION_BUS_ADDRESS, the ones |
|
|
| 62 | # in the user's environment (through su [without '-']) may cause |
|
|
| 63 | # kbuildsycoca4 to hang. |
|
|
| 64 | |
|
|
| 65 | ebegin "Running kbuildsycoca4 to build global database" |
80 | ebegin "Running kbuildsycoca to build global database" |
| 66 | # This is needed because we support multiple kde versions installed together. |
81 | XDG_DATA_DIRS="${EROOT}usr/local/share:${KDE3DIR}/share:${EROOT}usr/share" \ |
| 67 | XDG_DATA_DIRS="/usr/share:${KDEDIRS//:/\/share:}/share:/usr/local/share" \ |
82 | DISPLAY="" \ |
| 68 | DISPLAY="" DBUS_SESSION_BUS_ADDRESS="" \ |
|
|
| 69 | ${KDEDIR}/bin/kbuildsycoca4 --global --noincremental &> /dev/null |
83 | "${KDE3DIR}"/bin/kbuildsycoca --global --noincremental &> /dev/null |
| 70 | eend $? |
84 | eend $? |
| 71 | fi |
85 | fi |
|
|
86 | |
|
|
87 | # We no longer need to run kbuildsycoca4, as kded does that automatically, as needed |
|
|
88 | |
|
|
89 | # fix permission for some directories |
|
|
90 | for x in share/{config,kde4}; do |
|
|
91 | [[ ${KDEDIR} = ${EROOT}usr ]] && DIRS=${EROOT}usr || DIRS="${EROOT}usr ${KDEDIR}" |
|
|
92 | for y in ${DIRS}; do |
|
|
93 | [[ -d "${y}/${x}" ]] || break # nothing to do if directory does not exist |
|
|
94 | if [[ $(stat --format=%a "${y}/${x}") != 755 ]]; then |
|
|
95 | ewarn "QA Notice:" |
|
|
96 | ewarn "Package ${PN} is breaking ${y}/${x} permissions." |
|
|
97 | ewarn "Please report this issue to gentoo bugzilla." |
|
|
98 | einfo "Permissions will get adjusted automatically now." |
|
|
99 | find "${y}/${x}" -type d -print0 | xargs -0 chmod 755 |
|
|
100 | fi |
|
|
101 | done |
|
|
102 | done |
| 72 | } |
103 | } |
| 73 | |
104 | |
| 74 | # @FUNCTION: comment_all_add_subdirectory |
105 | # @FUNCTION: comment_all_add_subdirectory |
| 75 | # @USAGE: [list of directory names] |
106 | # @USAGE: [list of directory names] |
| 76 | # @DESCRIPTION: |
107 | # @DESCRIPTION: |
| 77 | # Recursively comment all add_subdirectory instructions in listed directories, |
108 | # Recursively comment all add_subdirectory instructions in listed directories, |
| 78 | # except those in cmake/. |
109 | # except those in cmake/. |
| 79 | comment_all_add_subdirectory() { |
110 | comment_all_add_subdirectory() { |
| 80 | find "$@" -name CMakeLists.txt -print0 | grep -vFzZ "./cmake" | \ |
111 | find "$@" -name CMakeLists.txt -print0 | grep -vFzZ "./cmake" | \ |
| 81 | xargs -0 sed -i -e '/add_subdirectory/s/^/#DONOTCOMPILE /' -e '/ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' || \ |
112 | xargs -0 sed -i \ |
|
|
113 | -e '/^[[:space:]]*add_subdirectory/s/^/#DONOTCOMPILE /' \ |
|
|
114 | -e '/^[[:space:]]*ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' \ |
|
|
115 | -e '/^[[:space:]]*macro_optional_add_subdirectory/s/^/#DONOTCOMPILE /' \ |
|
|
116 | -e '/^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' \ |
| 82 | die "${LINENO}: Initial sed died" |
117 | || die "${LINENO}: Initial sed died" |
| 83 | } |
118 | } |
| 84 | |
119 | |
| 85 | # @ECLASS-VARIABLE: KDE_LINGUAS |
120 | # @ECLASS-VARIABLE: KDE_LINGUAS |
| 86 | # @DESCRIPTION: |
121 | # @DESCRIPTION: |
| 87 | # This is a whitespace-separated list of translations this ebuild supports. |
122 | # This is a whitespace-separated list of translations this ebuild supports. |
| 88 | # These translations are automatically added to IUSE. Therefore ebuilds must set |
123 | # These translations are automatically added to IUSE. Therefore ebuilds must set |
| 89 | # this variable before inheriting any eclasses. To enable only selected |
124 | # this variable before inheriting any eclasses. To enable only selected |
| 90 | # translations, ebuilds must call enable_selected_linguas(). kde4-base.eclass does |
125 | # translations, ebuilds must call enable_selected_linguas(). kde4-{base,meta}.eclass does |
| 91 | # this for you. |
126 | # this for you. |
| 92 | # |
127 | # |
| 93 | # Example: KDE_LINGUAS="en_GB de nl" |
128 | # Example: KDE_LINGUAS="en_GB de nl" |
| 94 | for _lingua in ${KDE_LINGUAS}; do |
129 | for _lingua in ${KDE_LINGUAS}; do |
| 95 | IUSE="${IUSE} linguas_${_lingua}" |
130 | IUSE="${IUSE} linguas_${_lingua}" |
| … | |
… | |
| 99 | # @DESCRIPTION: |
134 | # @DESCRIPTION: |
| 100 | # Enable translations based on LINGUAS settings and translations supported by |
135 | # Enable translations based on LINGUAS settings and translations supported by |
| 101 | # the package (see KDE_LINGUAS). By default, translations are found in "${S}"/po |
136 | # the package (see KDE_LINGUAS). By default, translations are found in "${S}"/po |
| 102 | # but this default can be overridden by defining KDE_LINGUAS_DIR. |
137 | # but this default can be overridden by defining KDE_LINGUAS_DIR. |
| 103 | enable_selected_linguas() { |
138 | enable_selected_linguas() { |
|
|
139 | debug-print-function ${FUNCNAME} "$@" |
|
|
140 | |
| 104 | local lingua sr_mess wp |
141 | local lingua linguas sr_mess wp |
| 105 | # inform user about kde-l10n for full translation. |
|
|
| 106 | if ! has_version kde-base/kde-l10n; then |
|
|
| 107 | echo |
|
|
| 108 | elog "For fully translated application you should also emerge" |
|
|
| 109 | elog "kde-base/kde-l10n package which ships translated kde core" |
|
|
| 110 | elog "strings." |
|
|
| 111 | echo |
|
|
| 112 | fi |
|
|
| 113 | |
142 | |
| 114 | # ebuild overridable linguas directory definition |
143 | # if there is no linguas defined we enable everything |
|
|
144 | if ! $(env | grep -q "^LINGUAS="); then |
|
|
145 | return 0 |
|
|
146 | fi |
|
|
147 | |
|
|
148 | # @ECLASS-VARIABLE: KDE_LINGUAS_DIR |
|
|
149 | # @DESCRIPTION: |
|
|
150 | # Specified folder where application translations are located. |
| 115 | KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:=${S}/po} |
151 | KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:="po"} |
| 116 | cd "$KDE_LINGUAS_DIR" || die "wrong linguas dir specified" |
152 | [[ -d "${KDE_LINGUAS_DIR}" ]] || die "wrong linguas dir specified" |
|
|
153 | comment_all_add_subdirectory "${KDE_LINGUAS_DIR}" |
|
|
154 | pushd "${KDE_LINGUAS_DIR}" > /dev/null |
| 117 | |
155 | |
| 118 | # fix all various crazy sr@Latn variations |
156 | # fix all various crazy sr@Latn variations |
| 119 | # this part is only ease for ebuilds, so there wont be any die when this |
157 | # this part is only ease for ebuilds, so there wont be any die when this |
| 120 | # fail at any point |
158 | # fail at any point |
| 121 | sr_mess="sr@latn sr@latin sr@Latin" |
159 | sr_mess="sr@latn sr@latin sr@Latin" |
| 122 | for wp in ${sr_mess}; do |
160 | for wp in ${sr_mess}; do |
| 123 | [[ -e "$wp.po" ]] && mv "$wp.po" "sr@Latn.po" |
161 | [[ -e "${wp}.po" ]] && mv "${wp}.po" "sr@Latn.po" |
| 124 | if [[ -d "$wp" ]]; then |
162 | if [[ -d "${wp}" ]]; then |
| 125 | # move dir and fix cmakelists |
163 | # move dir and fix cmakelists |
| 126 | mv "$wp" "sr@Latn" |
164 | mv "${wp}" "sr@Latn" |
| 127 | sed -i \ |
165 | sed -i \ |
| 128 | -e "s:$wp:sr@Latin:g" \ |
166 | -e "s:${wp}:sr@Latin:g" \ |
| 129 | CMakeLists.txt |
167 | CMakeLists.txt |
| 130 | fi |
168 | fi |
| 131 | done |
169 | done |
| 132 | |
170 | |
| 133 | for lingua in ${KDE_LINGUAS}; do |
171 | for lingua in ${KDE_LINGUAS}; do |
| 134 | if [[ -e "$lingua.po" ]]; then |
172 | if [[ -e "${lingua}.po" ]]; then |
| 135 | mv "$lingua.po" "$lingua.po.old" |
173 | mv "${lingua}.po" "${lingua}.po.old" |
| 136 | fi |
174 | fi |
| 137 | done |
175 | done |
| 138 | comment_all_add_subdirectory "${KDE_LINGUAS_DIR}" |
176 | |
| 139 | for lingua in ${LINGUAS}; do |
177 | for lingua in ${KDE_LINGUAS}; do |
| 140 | ebegin "Enabling LANGUAGE: ${lingua}" |
178 | if use linguas_${lingua} ; then |
| 141 | if [[ -d "$lingua" ]]; then |
179 | if [[ -d "${lingua}" ]]; then |
|
|
180 | linguas="${linguas} ${lingua}" |
| 142 | sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
181 | sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
| 143 | -e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
182 | -e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
| 144 | -i CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
183 | -i CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
| 145 | fi |
184 | fi |
| 146 | if [[ -e "$lingua.po.old" ]]; then |
185 | if [[ -e "${lingua}.po.old" ]]; then |
|
|
186 | linguas="${linguas} ${lingua}" |
| 147 | mv "$lingua.po.old" "$lingua.po" |
187 | mv "${lingua}.po.old" "${lingua}.po" |
| 148 | fi |
188 | fi |
| 149 | eend $? |
189 | fi |
| 150 | done |
190 | done |
| 151 | } |
191 | [[ -n "${linguas}" ]] && einfo "Enabling languages: ${linguas}" |
| 152 | |
192 | |
| 153 | # @FUNCTION: koffice_fix_libraries |
193 | popd > /dev/null |
|
|
194 | } |
|
|
195 | |
|
|
196 | # @FUNCTION: enable_selected_doc_linguas |
|
|
197 | # @DESCRIPTION: |
|
|
198 | # Enable only selected linguas enabled doc folders. |
|
|
199 | enable_selected_doc_linguas() { |
|
|
200 | debug-print-function ${FUNCNAME} "$@" |
|
|
201 | |
|
|
202 | # if there is no linguas defined we enable everything |
|
|
203 | if ! $(env | grep -q "^LINGUAS="); then |
|
|
204 | return 0 |
|
|
205 | fi |
|
|
206 | |
|
|
207 | # @ECLASS-VARIABLE: KDE_DOC_DIRS |
| 154 | # @DESCRIPTION: |
208 | # @DESCRIPTION: |
| 155 | # replace the weird koffice lib search with hardcoded one, so it |
209 | # Variable specifying whitespace separated patterns for documentation locations. |
| 156 | # actually builds and works. |
210 | # Default is "doc/%lingua" |
| 157 | koffice_fix_libraries() { |
211 | KDE_DOC_DIRS=${KDE_DOC_DIRS:='doc/%lingua'} |
| 158 | local LIB_ARRAY R_QT_kostore R_BAS_kostore R_BAS_koodf R_KROSS_kokross R_QT_komain |
212 | local linguas |
| 159 | local R_CMS_pigmentcms R_BAS_pigmentcms R_BAS_koresources R_BAS_flake R_BAS_koguiutils |
213 | for pattern in ${KDE_DOC_DIRS}; do |
| 160 | local R_BAS_kopageapp R_BAS_kotext R_BAS_kowmf libname R |
214 | |
| 161 | case ${PN} in |
215 | local handbookdir=`dirname ${pattern}` |
| 162 | koffice-data|koffice-libs) |
216 | local translationdir=`basename ${pattern}` |
| 163 | ;; |
217 | # Do filename pattern supplied, treat as directory |
| 164 | *) |
218 | [[ "${handbookdir}" = '.' ]] && handbookdir=${translationdir} && translationdir= |
| 165 | ### basic array |
219 | [[ -d "${handbookdir}" ]] || die 'wrong doc dir specified' |
| 166 | LIB_ARRAY="kostore koodf kokross komain pigmentcms koresources flake koguiutils kopageapp kotext kowmf" |
220 | |
| 167 | ### dep array |
221 | if ! use handbook; then |
| 168 | R_QT_kostore="\"/usr/$(get_libdir)/qt4/libQtCore.so\" |
222 | # Disable whole directory |
| 169 | \"/usr/$(get_libdir)/qt4/libQtXml.so\" |
223 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
| 170 | \"${KDEDIR}/$(get_libdir)/libkdecore.so\"" |
224 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
| 171 | R_BAS_kostore="libkostore ${R_QT_kostore}" |
225 | -i CMakeLists.txt || die 'failed to comment out all handbooks' |
| 172 | R_BAS_koodf="libkoodf ${R_BAS_kostore}" |
|
|
| 173 | R_KROSS_kokross=" |
|
|
| 174 | \"${KDEDIR}/$(get_libdir)/libkrossui.so\" |
|
|
| 175 | \"${KDEDIR}/$(get_libdir)/libkrosscore.so\"" |
|
|
| 176 | R_BAS_kokross="libkokross ${R_BAS_koodf} ${R_KROSS_kokross}" |
|
|
| 177 | R_QT_komain="\"/usr/$(get_libdir)/qt4/libQtGui.so\"" |
|
|
| 178 | R_BAS_komain="libkomain ${R_BAS_koodf} ${R_QT_komain}" |
|
|
| 179 | R_CMS_pigmentcms="\"/usr/$(get_libdir)/liblcms.so\"" |
|
|
| 180 | R_BAS_pigmentcms="libpigmentcms ${R_BAS_komain} ${R_CMS_pigmentcms}" |
|
|
| 181 | R_BAS_koresources="libkoresources ${R_BAS_pigmentcms}" |
|
|
| 182 | R_BAS_flake="libflake ${R_BAS_pigmentcms}" |
|
|
| 183 | R_BAS_koguiutils="libkoguiutils libkoresources libflake ${R_BAS_pigmentcms}" |
|
|
| 184 | R_BAS_kopageapp="libkopageapp ${R_BAS_koguitls}" |
|
|
| 185 | R_BAS_kotext="libkotext libkoresources libflake ${R_BAS_pigmentcms}" |
|
|
| 186 | ### additional unmentioned stuff |
|
|
| 187 | R_BAS_kowmf="libkowmf" |
|
|
| 188 | for libname in ${LIB_ARRAY}; do |
|
|
| 189 | ebegin "Fixing library ${libname} with hardcoded path" |
|
|
| 190 | for libpath in $(eval "echo \$R_BAS_${libname}"); do |
|
|
| 191 | if [[ "${libpath}" != "\"/usr/"* ]]; then |
|
|
| 192 | R="${R} \"${KDEDIR}/$(get_libdir)/${libpath}.so\"" |
|
|
| 193 | else |
226 | else |
| 194 | R="${R} ${libpath}" |
227 | # Disable subdirectories recursively |
|
|
228 | comment_all_add_subdirectory "${handbookdir}" |
|
|
229 | # Add requested translations |
|
|
230 | local lingua |
|
|
231 | for lingua in en ${KDE_LINGUAS}; do |
|
|
232 | if [[ ${lingua} = 'en' ]] || use linguas_${lingua}; then |
|
|
233 | if [[ -d "${handbookdir}/${translationdir//%lingua/${lingua}}" ]]; then |
|
|
234 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
|
|
235 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
|
|
236 | -i "${handbookdir}"/CMakeLists.txt && ! has ${lingua} ${linguas} && linguas="${linguas} ${lingua}" |
| 195 | fi |
237 | fi |
| 196 | done |
238 | fi |
| 197 | find "${S}" -name CMakeLists.txt -print| xargs -i \ |
|
|
| 198 | sed -i \ |
|
|
| 199 | -e "s: ${libname} : ${R} :g" \ |
|
|
| 200 | -e "s: ${libname}): ${R}):g" \ |
|
|
| 201 | -e "s:(${libname} :(${R} :g" \ |
|
|
| 202 | -e "s:(${libname}):(${R}):g" \ |
|
|
| 203 | -e "s: ${libname}$: ${R}:g" \ |
|
|
| 204 | {} || die "Fixing library names failed." |
|
|
| 205 | eend $? |
|
|
| 206 | done |
239 | done |
| 207 | ;; |
240 | fi |
| 208 | esac |
241 | |
|
|
242 | done |
|
|
243 | [[ -n "${linguas}" ]] && einfo "Enabling handbook translations:${linguas}" |
| 209 | } |
244 | } |
|
|
245 | |
| 210 | # @FUNCTION: get_build_type |
246 | # @FUNCTION: get_build_type |
| 211 | # @DESCRIPTION: |
247 | # @DESCRIPTION: |
| 212 | # Determine whether we are using live ebuild or tbzs. |
248 | # Determine whether we are using live ebuild or tbzs. |
| 213 | get_build_type() { |
249 | get_build_type() { |
| 214 | if [[ $SLOT = live || $PV = 9999* ]]; then |
250 | if [[ ${SLOT} = live || ${PV} = *9999* ]]; then |
| 215 | BUILD_TYPE="live" |
251 | BUILD_TYPE="live" |
| 216 | else |
252 | else |
| 217 | BUILD_TYPE="release" |
253 | BUILD_TYPE="release" |
| 218 | fi |
254 | fi |
| 219 | export BUILD_TYPE |
255 | export BUILD_TYPE |
| 220 | } |
256 | } |
| 221 | |
257 | |
| 222 | # @FUNCTION: get_latest_kdedir |
|
|
| 223 | # @DESCRIPTION: |
|
|
| 224 | # We set up KDEDIR according to the latest KDE version installed; installing our |
|
|
| 225 | # package for all available installs is just insane. |
|
|
| 226 | # We can check for kdelibs because it is the most basic package; no KDE package |
|
|
| 227 | # working without it. This might be changed in future. |
|
|
| 228 | get_latest_kdedir() { |
|
|
| 229 | case ${KDE_WANTED} in |
|
|
| 230 | # note this will need to be updated as stable moves and so on |
|
|
| 231 | live) |
|
|
| 232 | _versions="9999 4.1.69 4.1.0" |
|
|
| 233 | ;; |
|
|
| 234 | snapshot) |
|
|
| 235 | _versions="4.1.69 4.1.0 9999" |
|
|
| 236 | ;; |
|
|
| 237 | testing) |
|
|
| 238 | _versions="4.1.0 4.1.69 9999" |
|
|
| 239 | ;; |
|
|
| 240 | stable) |
|
|
| 241 | _versions="4.1.0 4.1.69 9999" |
|
|
| 242 | ;; |
|
|
| 243 | *) die "KDE_WANTED=${KDE_WANTED} not supported here." ;; |
|
|
| 244 | esac |
|
|
| 245 | # check if exists and fallback as we go |
|
|
| 246 | for X in ${_versions}; do |
|
|
| 247 | if has_version ">=kde-base/kdelibs-${X}"; then |
|
|
| 248 | # figure out which X we are in and set it into _kdedir |
|
|
| 249 | case ${X} in |
|
|
| 250 | # also keep track here same for kde_wanted |
|
|
| 251 | 9999) |
|
|
| 252 | _kdedir="live" |
|
|
| 253 | break |
|
|
| 254 | ;; |
|
|
| 255 | 4.1.69) |
|
|
| 256 | _kdedir="4.2" |
|
|
| 257 | break |
|
|
| 258 | ;; |
|
|
| 259 | 4.1.0) |
|
|
| 260 | _kdedir="4.1" |
|
|
| 261 | break |
|
|
| 262 | ;; |
|
|
| 263 | esac |
|
|
| 264 | fi |
|
|
| 265 | done |
|
|
| 266 | } |
|
|
| 267 | |
|
|
| 268 | # @FUNCTION: migrate_store_dir |
258 | # @FUNCTION: migrate_store_dir |
| 269 | # @DESCRIPTION: |
259 | # @DESCRIPTION: |
| 270 | # Migrate the remnants of ${ESVN_STORE_DIR}/KDE/ to ${ESVN_STORE_DIR}/. |
260 | # Universal store dir migration |
| 271 | # Perform experimental split of kdebase to kdebase-apps. |
261 | # * performs split of kdebase to kdebase-apps when needed |
|
|
262 | # * moves playground/extragear kde4-base-style to toplevel dir |
| 272 | migrate_store_dir() { |
263 | migrate_store_dir() { |
| 273 | local cleandir |
|
|
| 274 | cleandir="${ESVN_STORE_DIR}/KDE" |
264 | local cleandir="${ESVN_STORE_DIR}/KDE" |
| 275 | if [[ -d "${cleandir}" ]]; then |
265 | if [[ -d "${cleandir}" ]]; then |
| 276 | ewarn "'${cleandir}' has been found. Moving contents to new location." |
266 | ewarn "'${cleandir}' has been found. Moving contents to new location." |
| 277 | addwrite "${ESVN_STORE_DIR}" |
267 | addwrite "${ESVN_STORE_DIR}" |
| 278 | # Split kdebase |
268 | # Split kdebase |
| 279 | local module |
269 | local module |
| … | |
… | |
| 288 | die "Failed to remove ${cleandir}/kdebase. You need to remove it manually." |
278 | die "Failed to remove ${cleandir}/kdebase. You need to remove it manually." |
| 289 | fi |
279 | fi |
| 290 | # Move the rest |
280 | # Move the rest |
| 291 | local pkg |
281 | local pkg |
| 292 | for pkg in "${cleandir}"/*; do |
282 | for pkg in "${cleandir}"/*; do |
| 293 | mv -f "${pkg}" "${ESVN_STORE_DIR}"/ || eerror "failed to move ${pkg}" |
283 | mv -f "${pkg}" "${ESVN_STORE_DIR}"/ || eerror "Failed to move '${pkg}'" |
| 294 | done |
284 | done |
| 295 | 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." |
285 | 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." |
|
|
286 | fi |
|
|
287 | |
|
|
288 | if ! hasq kde4-meta ${INHERITED}; then |
|
|
289 | case ${KMNAME} in |
|
|
290 | extragear*|playground*) |
|
|
291 | local svnlocalpath="${ESVN_STORE_DIR}"/"${KMNAME}"/"${PN}" |
|
|
292 | if [[ -d "${svnlocalpath}" ]]; then |
|
|
293 | local destdir="${ESVN_STORE_DIR}"/"${ESVN_PROJECT}"/"`basename "${ESVN_REPO_URI}"`" |
|
|
294 | ewarn "'${svnlocalpath}' has been found." |
|
|
295 | ewarn "Moving contents to new location: ${destdir}" |
|
|
296 | addwrite "${ESVN_STORE_DIR}" |
|
|
297 | mkdir -p "${ESVN_STORE_DIR}"/"${ESVN_PROJECT}" && mv -f "${svnlocalpath}" "${destdir}" \ |
|
|
298 | || die "Failed to move to '${svnlocalpath}'" |
|
|
299 | # Try cleaning empty directories |
|
|
300 | rmdir "`dirname "${svnlocalpath}"`" 2> /dev/null |
|
|
301 | fi |
|
|
302 | ;; |
|
|
303 | esac |
| 296 | fi |
304 | fi |
| 297 | } |
305 | } |
| 298 | |
306 | |
| 299 | # Functions handling KMLOADLIBS and KMSAVELIBS |
307 | # Functions handling KMLOADLIBS and KMSAVELIBS |
| 300 | |
308 | |
| … | |
… | |
| 302 | # @DESCRIPTION: |
310 | # @DESCRIPTION: |
| 303 | # Add exporting CMake dependencies for current package |
311 | # Add exporting CMake dependencies for current package |
| 304 | save_library_dependencies() { |
312 | save_library_dependencies() { |
| 305 | local depsfile="${T}/${PN}:${SLOT}" |
313 | local depsfile="${T}/${PN}:${SLOT}" |
| 306 | |
314 | |
| 307 | ebegin "Saving library dependendencies in ${depsfile##*/}" |
315 | ebegin "Saving library dependencies in ${depsfile##*/}" |
| 308 | echo "EXPORT_LIBRARY_DEPENDENCIES(\"${depsfile}\")" >> "${S}/CMakeLists.txt" || \ |
316 | echo "EXPORT_LIBRARY_DEPENDENCIES(\"${depsfile}\")" >> "${S}/CMakeLists.txt" || \ |
| 309 | die "Failed to save the library dependencies." |
317 | die "Failed to save the library dependencies." |
| 310 | eend $? |
318 | eend $? |
| 311 | } |
319 | } |
| 312 | |
320 | |
| 313 | # @FUNCTION: install_library_dependencies |
321 | # @FUNCTION: install_library_dependencies |
| 314 | # @DESCRIPTION: |
322 | # @DESCRIPTION: |
| 315 | # Install generated CMake library dependencies to /var/lib/kde |
323 | # Install generated CMake library dependencies to /var/lib/kde |
| 316 | install_library_dependencies() { |
324 | install_library_dependencies() { |
| 317 | local depsfile="$T/$PN:$SLOT" |
325 | local depsfile="${T}/${PN}:${SLOT}" |
|
|
326 | |
| 318 | ebegin "Installing library dependendencies as ${depsfile##*/}" |
327 | ebegin "Installing library dependencies as ${depsfile##*/}" |
| 319 | insinto /var/lib/kde |
328 | insinto ${EROOT}var/lib/kde |
| 320 | doins "${depsfile}" || die "Failed to install library dependencies." |
329 | doins "${depsfile}" || die "Failed to install library dependencies." |
| 321 | eend $? |
330 | eend $? |
| 322 | } |
331 | } |
| 323 | |
332 | |
| 324 | # @FUNCTION: load_library_dependencies |
333 | # @FUNCTION: load_library_dependencies |
| 325 | # @DESCRIPTION: |
334 | # @DESCRIPTION: |
| 326 | # Inject specified library dependencies in current package |
335 | # Inject specified library dependencies in current package |
| 327 | load_library_dependencies() { |
336 | load_library_dependencies() { |
| 328 | local pn i depsfile |
337 | local pn i depsfile |
| 329 | ebegin "Injecting library dependendencies from '${KMLOADLIBS}'" |
338 | ebegin "Injecting library dependencies from '${KMLOADLIBS}'" |
| 330 | |
339 | |
| 331 | i=0 |
340 | i=0 |
| 332 | for pn in ${KMLOADLIBS} ; do |
341 | for pn in ${KMLOADLIBS} ; do |
| 333 | ((i++)) |
342 | ((i++)) |
| 334 | depsfile="/var/lib/kde/${pn}:${SLOT}" |
343 | depsfile="${EROOT}var/lib/kde/${pn}:${SLOT}" |
| 335 | [[ -r "${depsfile}" ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}." |
344 | [[ -r "${depsfile}" ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}." |
| 336 | sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \ |
345 | sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \ |
| 337 | die "Failed to include library dependencies for ${pn}" |
346 | die "Failed to include library dependencies for ${pn}" |
| 338 | done |
347 | done |
| 339 | eend $? |
348 | eend $? |
| 340 | } |
349 | } |
|
|
350 | |
|
|
351 | # @FUNCTION: block_other_slots |
|
|
352 | # @DESCRIPTION: |
|
|
353 | # Create blocks for the current package in other slots when |
|
|
354 | # installed with USE=-kdeprefix |
|
|
355 | block_other_slots() { |
|
|
356 | debug-print-function ${FUNCNAME} "$@" |
|
|
357 | |
|
|
358 | _do_blocker ${PN} 0:${SLOT} |
|
|
359 | } |
|
|
360 | |
|
|
361 | # @FUNCTION: add_blocker |
|
|
362 | # @DESCRIPTION: |
|
|
363 | # Create correct RDEPEND value for blocking correct package. |
|
|
364 | # Useful for file-collision blocks. |
|
|
365 | # Parameters are package and version(s) to block. |
|
|
366 | # add_blocker kdelibs 4.2.4 |
|
|
367 | # If no version is specified, then all versions will be blocked |
|
|
368 | # If any arguments (from 2 on) contain a ":", then different versions |
|
|
369 | # are blocked in different slots. (Unlisted slots get the version without |
|
|
370 | # a ":", if none, then all versions are blocked). The parameter is then of |
|
|
371 | # the form VERSION:SLOT. Any VERSION of 0 means that no blocker will be |
|
|
372 | # added for that slot (or, if no slot, then for any unlisted slot). |
|
|
373 | # A parameter of the form :SLOT means to block all versions from that slot. |
|
|
374 | # If VERSION begins with "<", then "!<foo" will be used instead of "!<=foo". |
|
|
375 | # As a special case, if a parameter with slot "3.5" is passed, then that slot |
|
|
376 | # may also be blocked. |
|
|
377 | # |
|
|
378 | # Versions that match "4.x.50" are equivalent to all slots up to (and including) |
|
|
379 | # "4.x", but nothing following slot "4.x" |
|
|
380 | # |
|
|
381 | # As an example, if SLOT=live, then |
|
|
382 | # add_blocker kdelibs 0 :4.3 '<4.3.96:4.4' 9999:live |
|
|
383 | # will add the following to RDEPEND: |
|
|
384 | # !kdeprefix? ( !kde-base/kdelibs:4.3[-kdeprefix] ) |
|
|
385 | # !kdeprefix? ( !<kde-base/kdelibs-4.3.96:4.4[-kdeprefix] ) |
|
|
386 | # !kdeprefix? ( !<=kde-base/kdelibs-9999:live[-kdeprefix] ) |
|
|
387 | # kdeprefix? ( !<=kde-base/kdelibs-9999:live[kdeprefix] ) |
|
|
388 | add_blocker() { |
|
|
389 | debug-print-function ${FUNCNAME} "$@" |
|
|
390 | |
|
|
391 | RDEPEND+=" $(_do_blocker "$@")" |
|
|
392 | } |
|
|
393 | |
|
|
394 | # _greater_max_in_slot ver slot |
|
|
395 | # slot must be 4.x or live |
|
|
396 | # returns true if ver is >= the maximum possibile version in slot |
|
|
397 | _greater_max_in_slot() { |
|
|
398 | local ver=$1 |
|
|
399 | local slot=$2 |
|
|
400 | # If slot is live, then return false |
|
|
401 | # (nothing is greater than the maximum live version) |
|
|
402 | [[ $slot == live ]] && return 1 |
|
|
403 | # Otherwise, for slot X.Y, test against X.Y.50 |
|
|
404 | local test=${slot}.50 |
|
|
405 | version_compare $1 ${test} |
|
|
406 | # 1 = '<', 2 = '=', 3 = '>' |
|
|
407 | [[ $? -ne 1 ]] |
|
|
408 | } |
|
|
409 | |
|
|
410 | # _less_min_in_slot ver slot |
|
|
411 | # slot must be 4.x or live |
|
|
412 | # returns true if ver is <= the minimum possibile version in slot |
|
|
413 | _less_min_in_slot() { |
|
|
414 | local ver=$1 |
|
|
415 | local slot=$2 |
|
|
416 | # If slot == live, then test with "9999_pre", so that 9999 tests false |
|
|
417 | local test=9999_pre |
|
|
418 | # If slot == X.Y, then test with X.(Y-1).50 |
|
|
419 | [[ $slot == live ]] || test=${slot%.*}.$((${slot#*.} - 1)).50 |
|
|
420 | version_compare $1 ${test} |
|
|
421 | # 1 = '<', 2 = '=', 3 = '>' |
|
|
422 | [[ $? -ne 3 ]] |
|
|
423 | } |
|
|
424 | |
|
|
425 | # Internal function used for add_blocker and block_other_slots |
|
|
426 | # This takes the same parameters as add_blocker, but echos to |
|
|
427 | # stdout instead of updating a variable. |
|
|
428 | _do_blocker() { |
|
|
429 | debug-print-function ${FUNCNAME} "$@" |
|
|
430 | |
|
|
431 | [[ -z ${1} ]] && die "Missing parameter" |
|
|
432 | local pkg=kde-base/$1 |
|
|
433 | shift |
|
|
434 | local param slot def="unset" var atom |
|
|
435 | # The following variables will hold parameters that contain ":" |
|
|
436 | # - block_3_5 |
|
|
437 | # - block_4_1 |
|
|
438 | # - block_4_2 |
|
|
439 | # - block_4_3 |
|
|
440 | # - block_4_4 |
|
|
441 | # - block_live |
|
|
442 | for slot in 3.5 ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
443 | local block_${slot//./_}="unset" |
|
|
444 | done |
|
|
445 | |
|
|
446 | # This construct goes through each parameter passed, and sets |
|
|
447 | # either def or block_* to the version passed |
|
|
448 | for param; do |
|
|
449 | # If the parameter does not have a ":" in it... |
|
|
450 | if [[ ${param/:} == ${param} ]]; then |
|
|
451 | def=${param} |
|
|
452 | else # the parameter *does* have a ":" in it |
|
|
453 | # so everythin after the : is the slot... |
|
|
454 | slot=${param#*:} |
|
|
455 | # ...and everything before the : is the version |
|
|
456 | local block_${slot//./_}=${param%:*} |
|
|
457 | fi |
|
|
458 | done |
|
|
459 | |
|
|
460 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
461 | # ${var} contains the name of the variable we care about for this slot |
|
|
462 | # ${!var} is it's value |
|
|
463 | var=block_${slot//./_} |
|
|
464 | # if we didn't pass *:${slot}, then use the unsloted value |
|
|
465 | [[ ${!var} == "unset" ]] && var=def |
|
|
466 | |
|
|
467 | # If the no version was passed, or the version is greater than the |
|
|
468 | # maximum possible version in this slot, block all versions in this |
|
|
469 | # slot |
|
|
470 | if [[ ${!var} == "unset" ]] || _greater_max_in_slot ${!var#<} ${slot}; then |
|
|
471 | atom=${pkg} |
|
|
472 | # If the version is "0" or less than the minimum possible version in |
|
|
473 | # this slot, do nothing |
|
|
474 | elif [[ ${!var} == "0" ]] || _less_min_in_slot ${!var#<} ${slot}; then |
|
|
475 | continue |
|
|
476 | # If the version passed begins with a "<", then use "<" instead of "<=" |
|
|
477 | elif [[ ${!var:0:1} == "<" ]]; then |
|
|
478 | # this also removes the first character of the version, which is a "<" |
|
|
479 | atom="<${pkg}-${!var:1}" |
|
|
480 | else |
|
|
481 | atom="<=${pkg}-${!var}" |
|
|
482 | fi |
|
|
483 | # on -kdeprefix we block every slot |
|
|
484 | echo " !kdeprefix? ( !${atom}:${slot}[-kdeprefix] )" |
|
|
485 | # on kdeprefix we block only our slot |
|
|
486 | if [[ ${SLOT} == ${slot} ]]; then |
|
|
487 | echo " kdeprefix? ( !${atom}:${SLOT}[kdeprefix] )" |
|
|
488 | fi |
|
|
489 | done |
|
|
490 | |
|
|
491 | # This is a special case block for :3.5; it does not use the |
|
|
492 | # default version passed, and no blocker is output *unless* a version |
|
|
493 | # is passed, or ":3.5" is passed to explicitly request a block on all |
|
|
494 | # 3.5 versions. |
|
|
495 | if [[ ${block_3_5} != "unset" && ${block_3_5} != "0" ]]; then |
|
|
496 | if [[ -z ${block_3_5} ]]; then |
|
|
497 | atom=${pkg} |
|
|
498 | elif [[ ${block_3_5:0:1} == "<" ]]; then |
|
|
499 | atom="<${pkg}-${block_3_5:1}" |
|
|
500 | else |
|
|
501 | atom="<=${pkg}-${block_3_5}" |
|
|
502 | fi |
|
|
503 | echo " !${atom}:3.5" |
|
|
504 | fi |
|
|
505 | } |
|
|
506 | |
|
|
507 | # @FUNCTION: add_kdebase_dep |
|
|
508 | # @DESCRIPTION: |
|
|
509 | # Create proper dependency for kde-base/ dependencies, |
|
|
510 | # adding SLOT when needed (and *only* when needed). |
|
|
511 | # This takes 1 or 2 arguments. The first being the package |
|
|
512 | # name, the optional second, is additional USE flags to append. |
|
|
513 | # The output of this should be added directly to DEPEND/RDEPEND, and |
|
|
514 | # may be wrapped in a USE conditional (but not an || conditional |
|
|
515 | # without an extra set of parentheses. |
|
|
516 | add_kdebase_dep() { |
|
|
517 | debug-print-function ${FUNCNAME} "$@" |
|
|
518 | |
|
|
519 | [[ -z ${1} ]] && die "Missing parameter" |
|
|
520 | |
|
|
521 | local use=${2:+,${2}} |
|
|
522 | |
|
|
523 | echo "!kdeprefix? ( >=kde-base/${1}-${PV}[-kdeprefix${use}] )" |
|
|
524 | echo "kdeprefix? ( >=kde-base/${1}-${PV}:${SLOT}[kdeprefix${use}] )" |
|
|
525 | } |