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