| 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.23 2009/08/20 09:18:01 scarabeus Exp $ |
|
|
4 | |
|
|
5 | # Prefix compat: |
|
|
6 | : ${EROOT:=${ROOT}} |
|
|
7 | # Append missing trailing slash character |
|
|
8 | [[ ${EROOT} = */ ]] || EROOT+="/" |
| 4 | |
9 | |
| 5 | # @ECLASS: kde4-functions.eclass |
10 | # @ECLASS: kde4-functions.eclass |
| 6 | # @MAINTAINER: |
11 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
12 | # kde@gentoo.org |
| 8 | # @BLURB: Common ebuild functions for KDE 4 packages |
13 | # @BLURB: Common ebuild functions for KDE 4 packages |
| … | |
… | |
| 10 | # This eclass contains all functions shared by the different eclasses, |
15 | # This eclass contains all functions shared by the different eclasses, |
| 11 | # for KDE 4 ebuilds. |
16 | # for KDE 4 ebuilds. |
| 12 | |
17 | |
| 13 | # @ECLASS-VARIABLE: EAPI |
18 | # @ECLASS-VARIABLE: EAPI |
| 14 | # @DESCRIPTION: |
19 | # @DESCRIPTION: |
| 15 | # By default kde eclass wants eapi 2 which might be redefinable. |
20 | # By default kde4 eclasses want EAPI 2 which might be redefinable to newer |
|
|
21 | # versions. |
| 16 | case ${EAPI} in |
22 | case ${EAPI:-0} in |
| 17 | 2) : ;; |
23 | 2) : ;; |
| 18 | *) die "No way! EAPI older than 2 is not supported." ;; |
24 | *) DEPEND="EAPI-TOO-OLD" ;; |
| 19 | esac |
25 | esac |
| 20 | |
26 | |
| 21 | # @ECLASS-VARIABLE: KDEBASE |
27 | # @ECLASS-VARIABLE: KDEBASE |
| 22 | # @DESCRIPTION: |
28 | # @DESCRIPTION: |
| 23 | # This gets set to a non-zero value when a package is considered a kde or |
29 | # This gets set to a non-zero value when a package is considered a kde or |
| 24 | # koffice ebuild. |
30 | # koffice ebuild. |
| 25 | |
31 | |
| 26 | if [[ $CATEGORY = kde-base ]]; then |
32 | if [[ ${CATEGORY} = kde-base ]]; then |
| 27 | debug-print "${ECLASS}: KDEBASE ebuild recognized" |
33 | debug-print "${ECLASS}: KDEBASE ebuild recognized" |
| 28 | KDEBASE=kde-base |
34 | KDEBASE=kde-base |
| 29 | fi |
35 | fi |
| 30 | |
36 | |
| 31 | # is this a koffice ebuild? |
37 | # is this a koffice ebuild? |
| 32 | if [[ $KMNAME = koffice || $PN = koffice ]]; then |
38 | if [[ ${KMNAME} = koffice || ${PN} = koffice ]]; then |
| 33 | debug-print "${ECLASS}: KOFFICE ebuild recognized" |
39 | debug-print "${ECLASS}: KOFFICE ebuild recognized" |
| 34 | KDEBASE=koffice |
40 | KDEBASE=koffice |
| 35 | fi |
41 | fi |
| 36 | |
42 | |
| 37 | # @ECLASS-VARIABLE: KDE_SLOTS |
43 | # @ECLASS-VARIABLE: KDE_SLOTS |
| 38 | # @DESCRIPTION: |
44 | # @DESCRIPTION: |
| 39 | # The slots used by all KDE versions later than 4.0. The live-ebuilds use |
45 | # The slots used by all KDE versions later than 4.0. The live KDE releases use |
| 40 | # KDE_LIVE_SLOTS instead. |
46 | # KDE_LIVE_SLOTS instead. Values should be ordered. |
| 41 | KDE_SLOTS=( kde-4 4.1 4.2 ) |
47 | KDE_SLOTS=( "kde-4" "4.1" "4.2" "4.3" "4.4" ) |
| 42 | |
48 | |
| 43 | # @ECLASS-VARIABLE: KDE_LIVE_SLOTS |
49 | # @ECLASS-VARIABLE: KDE_LIVE_SLOTS |
| 44 | # @DESCRIPTION: |
50 | # @DESCRIPTION: |
| 45 | # The slots used by all KDE live versions. |
51 | # The slots used by KDE live versions. Values should be ordered. |
| 46 | KDE_LIVE_SLOTS=( live ) |
52 | KDE_LIVE_SLOTS=( "live" ) |
| 47 | |
53 | |
| 48 | # @FUNCTION: buildsycoca |
54 | # @FUNCTION: buildsycoca |
| 49 | # @DESCRIPTION: |
55 | # @DESCRIPTION: |
| 50 | # Function to rebuild the KDE System Configuration Cache. |
56 | # Function to rebuild the KDE System Configuration Cache. |
| 51 | # All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
57 | # All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
| 52 | # |
|
|
| 53 | # Note that kde4-base.eclass already does this. |
|
|
| 54 | buildsycoca() { |
58 | buildsycoca() { |
| 55 | debug-print-function ${FUNCNAME} "$@" |
59 | debug-print-function ${FUNCNAME} "$@" |
| 56 | |
60 | |
|
|
61 | local KDE3DIR="${EROOT}usr/kde/3.5" |
|
|
62 | if [[ -z ${EROOT%%/} && -x "${KDE3DIR}"/bin/kbuildsycoca ]]; then |
|
|
63 | # Since KDE3 is aware of shortcuts in /usr, rebuild database |
|
|
64 | # for KDE3 as well. |
|
|
65 | touch "${KDE3DIR}"/share/services/ksycoca |
|
|
66 | chmod 644 "${KDE3DIR}"/share/services/ksycoca |
|
|
67 | |
|
|
68 | ebegin "Running kbuildsycoca to build global database" |
|
|
69 | XDG_DATA_DIRS="${EROOT}usr/local/share:${KDE3DIR}/share:${EROOT}usr/share" \ |
|
|
70 | DISPLAY="" \ |
|
|
71 | "${KDE3DIR}"/bin/kbuildsycoca --global --noincremental &> /dev/null |
|
|
72 | eend $? |
|
|
73 | fi |
|
|
74 | |
| 57 | if [[ -z ${ROOT%%/} && -x ${KDEDIR}/bin/kbuildsycoca4 ]]; then |
75 | if [[ -z ${EROOT%%/} && -x "${KDEDIR}"/bin/kbuildsycoca4 ]]; then |
| 58 | # Make sure tha cache file exists, or kbuildsycoca4 will fail |
76 | # Make sure tha cache file exists, writable by root and readable by |
|
|
77 | # others. Otherwise kbuildsycoca4 will fail. |
| 59 | touch "${KDEDIR}/share/kde4/services/ksycoca4" |
78 | touch "${KDEDIR}/share/kde4/services/ksycoca4" |
|
|
79 | chmod 644 "${KDEDIR}/share/kde4/services/ksycoca4" |
| 60 | |
80 | |
| 61 | # We have to unset DISPLAY and DBUS_SESSION_BUS_ADDRESS, the ones |
81 | # We have to unset DISPLAY and DBUS_SESSION_BUS_ADDRESS, the ones |
| 62 | # in the user's environment (through su [without '-']) may cause |
82 | # in the user's environment (through su [without '-']) may cause |
| 63 | # kbuildsycoca4 to hang. |
83 | # kbuildsycoca4 to hang. |
| 64 | |
84 | |
| 65 | ebegin "Running kbuildsycoca4 to build global database" |
85 | ebegin "Running kbuildsycoca4 to build global database" |
| 66 | # This is needed because we support multiple kde versions installed together. |
86 | # This is needed because we support multiple kde versions installed together. |
| 67 | XDG_DATA_DIRS="/usr/share:${KDEDIRS//:/\/share:}/share:/usr/local/share" \ |
87 | # Lookup in order - local, KDEDIR, /usr, do not duplicate entries btw. |
|
|
88 | local KDEDIRS="${EROOT}usr/share" |
|
|
89 | [[ ${KDEDIR} != "${EROOT}usr" ]] && KDEDIRS="${KDEDIR}/share:${KDEDIRS}" |
|
|
90 | XDG_DATA_DIRS="${EROOT}usr/local/share:${KDEDIRS}" \ |
| 68 | DISPLAY="" DBUS_SESSION_BUS_ADDRESS="" \ |
91 | DISPLAY="" DBUS_SESSION_BUS_ADDRESS="" \ |
| 69 | ${KDEDIR}/bin/kbuildsycoca4 --global --noincremental &> /dev/null |
92 | "${KDEDIR}"/bin/kbuildsycoca4 --global --noincremental &> /dev/null |
| 70 | eend $? |
93 | eend $? |
| 71 | fi |
94 | fi |
|
|
95 | |
|
|
96 | # fix permission for some directories |
|
|
97 | for x in share/{config,kde4}; do |
|
|
98 | [[ ${KDEDIR} = ${EROOT}usr ]] && DIRS=${EROOT}usr || DIRS="${EROOT}usr ${KDEDIR}" |
|
|
99 | for y in ${DIRS}; do |
|
|
100 | [[ -d "${y}/${x}" ]] || break # nothing to do if directory does not exist |
|
|
101 | if [[ $(stat --format=%a "${y}/${x}") != 755 ]]; then |
|
|
102 | ewarn "QA Notice:" |
|
|
103 | ewarn "Package ${PN} is breaking ${y}/${x} permissions." |
|
|
104 | ewarn "Please report this issue to gentoo bugzilla." |
|
|
105 | einfo "Permissions will get adjusted automatically now." |
|
|
106 | find "${y}/${x}" -type d -print0 | xargs -0 chmod 755 |
|
|
107 | fi |
|
|
108 | done |
|
|
109 | done |
| 72 | } |
110 | } |
| 73 | |
111 | |
| 74 | # @FUNCTION: comment_all_add_subdirectory |
112 | # @FUNCTION: comment_all_add_subdirectory |
| 75 | # @USAGE: [list of directory names] |
113 | # @USAGE: [list of directory names] |
| 76 | # @DESCRIPTION: |
114 | # @DESCRIPTION: |
| 77 | # Recursively comment all add_subdirectory instructions in listed directories, |
115 | # Recursively comment all add_subdirectory instructions in listed directories, |
| 78 | # except those in cmake/. |
116 | # except those in cmake/. |
| 79 | comment_all_add_subdirectory() { |
117 | comment_all_add_subdirectory() { |
| 80 | find "$@" -name CMakeLists.txt -print0 | grep -vFzZ "./cmake" | \ |
118 | find "$@" -name CMakeLists.txt -print0 | grep -vFzZ "./cmake" | \ |
| 81 | xargs -0 sed -i -e '/add_subdirectory/s/^/#DONOTCOMPILE /' -e '/ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' || \ |
119 | xargs -0 sed -i \ |
|
|
120 | -e '/^[[:space:]]*add_subdirectory/s/^/#DONOTCOMPILE /' \ |
|
|
121 | -e '/^[[:space:]]*ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' \ |
|
|
122 | -e '/^[[:space:]]*macro_optional_add_subdirectory/s/^/#DONOTCOMPILE /' \ |
|
|
123 | -e '/^[[:space:]]*MACRO_OPTIONAL_ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' \ |
| 82 | die "${LINENO}: Initial sed died" |
124 | || die "${LINENO}: Initial sed died" |
| 83 | } |
125 | } |
| 84 | |
126 | |
| 85 | # @ECLASS-VARIABLE: KDE_LINGUAS |
127 | # @ECLASS-VARIABLE: KDE_LINGUAS |
| 86 | # @DESCRIPTION: |
128 | # @DESCRIPTION: |
| 87 | # This is a whitespace-separated list of translations this ebuild supports. |
129 | # This is a whitespace-separated list of translations this ebuild supports. |
| 88 | # These translations are automatically added to IUSE. Therefore ebuilds must set |
130 | # These translations are automatically added to IUSE. Therefore ebuilds must set |
| 89 | # this variable before inheriting any eclasses. To enable only selected |
131 | # this variable before inheriting any eclasses. To enable only selected |
| 90 | # translations, ebuilds must call enable_selected_linguas(). kde4-base.eclass does |
132 | # translations, ebuilds must call enable_selected_linguas(). kde4-{base,meta}.eclass does |
| 91 | # this for you. |
133 | # this for you. |
| 92 | # |
134 | # |
| 93 | # Example: KDE_LINGUAS="en_GB de nl" |
135 | # Example: KDE_LINGUAS="en_GB de nl" |
| 94 | for _lingua in ${KDE_LINGUAS}; do |
136 | for _lingua in ${KDE_LINGUAS}; do |
| 95 | IUSE="${IUSE} linguas_${_lingua}" |
137 | IUSE="${IUSE} linguas_${_lingua}" |
| … | |
… | |
| 99 | # @DESCRIPTION: |
141 | # @DESCRIPTION: |
| 100 | # Enable translations based on LINGUAS settings and translations supported by |
142 | # Enable translations based on LINGUAS settings and translations supported by |
| 101 | # the package (see KDE_LINGUAS). By default, translations are found in "${S}"/po |
143 | # 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. |
144 | # but this default can be overridden by defining KDE_LINGUAS_DIR. |
| 103 | enable_selected_linguas() { |
145 | enable_selected_linguas() { |
|
|
146 | debug-print-function ${FUNCNAME} "$@" |
|
|
147 | |
| 104 | local lingua sr_mess wp |
148 | 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 | |
149 | |
| 114 | # ebuild overridable linguas directory definition |
150 | # if there is no linguas defined we enable everything |
|
|
151 | if ! $(env | grep -q "^LINGUAS="); then |
|
|
152 | return 0 |
|
|
153 | fi |
|
|
154 | |
|
|
155 | # @ECLASS-VARIABLE: KDE_LINGUAS_DIR |
|
|
156 | # @DESCRIPTION: |
|
|
157 | # Specified folder where application translations are located. |
| 115 | KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:=${S}/po} |
158 | KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:="po"} |
| 116 | cd "$KDE_LINGUAS_DIR" || die "wrong linguas dir specified" |
159 | [[ -d "${KDE_LINGUAS_DIR}" ]] || die "wrong linguas dir specified" |
|
|
160 | comment_all_add_subdirectory "${KDE_LINGUAS_DIR}" |
|
|
161 | pushd "${KDE_LINGUAS_DIR}" > /dev/null |
| 117 | |
162 | |
| 118 | # fix all various crazy sr@Latn variations |
163 | # fix all various crazy sr@Latn variations |
| 119 | # this part is only ease for ebuilds, so there wont be any die when this |
164 | # this part is only ease for ebuilds, so there wont be any die when this |
| 120 | # fail at any point |
165 | # fail at any point |
| 121 | sr_mess="sr@latn sr@latin sr@Latin" |
166 | sr_mess="sr@latn sr@latin sr@Latin" |
| 122 | for wp in ${sr_mess}; do |
167 | for wp in ${sr_mess}; do |
| 123 | [[ -e "$wp.po" ]] && mv "$wp.po" "sr@Latn.po" |
168 | [[ -e "${wp}.po" ]] && mv "${wp}.po" "sr@Latn.po" |
| 124 | if [[ -d "$wp" ]]; then |
169 | if [[ -d "${wp}" ]]; then |
| 125 | # move dir and fix cmakelists |
170 | # move dir and fix cmakelists |
| 126 | mv "$wp" "sr@Latn" |
171 | mv "${wp}" "sr@Latn" |
| 127 | sed -i \ |
172 | sed -i \ |
| 128 | -e "s:$wp:sr@Latin:g" \ |
173 | -e "s:${wp}:sr@Latin:g" \ |
| 129 | CMakeLists.txt |
174 | CMakeLists.txt |
| 130 | fi |
175 | fi |
| 131 | done |
176 | done |
| 132 | |
177 | |
| 133 | for lingua in ${KDE_LINGUAS}; do |
178 | for lingua in ${KDE_LINGUAS}; do |
| 134 | if [[ -e "$lingua.po" ]]; then |
179 | if [[ -e "${lingua}.po" ]]; then |
| 135 | mv "$lingua.po" "$lingua.po.old" |
180 | mv "${lingua}.po" "${lingua}.po.old" |
| 136 | fi |
181 | fi |
| 137 | done |
182 | done |
| 138 | comment_all_add_subdirectory "${KDE_LINGUAS_DIR}" |
183 | |
| 139 | for lingua in ${LINGUAS}; do |
184 | for lingua in ${KDE_LINGUAS}; do |
| 140 | ebegin "Enabling LANGUAGE: ${lingua}" |
185 | if use linguas_${lingua} ; then |
| 141 | if [[ -d "$lingua" ]]; then |
186 | if [[ -d "${lingua}" ]]; then |
|
|
187 | linguas="${linguas} ${lingua}" |
| 142 | sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
188 | sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
| 143 | -e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
189 | -e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
| 144 | -i CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
190 | -i CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
| 145 | fi |
191 | fi |
| 146 | if [[ -e "$lingua.po.old" ]]; then |
192 | if [[ -e "${lingua}.po.old" ]]; then |
|
|
193 | linguas="${linguas} ${lingua}" |
| 147 | mv "$lingua.po.old" "$lingua.po" |
194 | mv "${lingua}.po.old" "${lingua}.po" |
| 148 | fi |
195 | fi |
| 149 | eend $? |
196 | fi |
| 150 | done |
197 | done |
| 151 | } |
198 | [[ -n "${linguas}" ]] && einfo "Enabling languages: ${linguas}" |
| 152 | |
199 | |
| 153 | # @FUNCTION: koffice_fix_libraries |
200 | popd > /dev/null |
|
|
201 | } |
|
|
202 | |
|
|
203 | # @FUNCTION: enable_selected_doc_linguas |
|
|
204 | # @DESCRIPTION: |
|
|
205 | # Enable only selected linguas enabled doc folders. |
|
|
206 | enable_selected_doc_linguas() { |
|
|
207 | debug-print-function ${FUNCNAME} "$@" |
|
|
208 | |
|
|
209 | # if there is no linguas defined we enable everything |
|
|
210 | if ! $(env | grep -q "^LINGUAS="); then |
|
|
211 | return 0 |
|
|
212 | fi |
|
|
213 | |
|
|
214 | # @ECLASS-VARIABLE: KDE_DOC_DIRS |
| 154 | # @DESCRIPTION: |
215 | # @DESCRIPTION: |
| 155 | # replace the weird koffice lib search with hardcoded one, so it |
216 | # Variable specifying whitespace separated patterns for documentation locations. |
| 156 | # actually builds and works. |
217 | # Default is "doc/%lingua" |
| 157 | koffice_fix_libraries() { |
218 | 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 |
219 | local linguas |
| 159 | local R_CMS_pigmentcms R_BAS_pigmentcms R_BAS_koresources R_BAS_flake R_BAS_koguiutils |
220 | for pattern in ${KDE_DOC_DIRS}; do |
| 160 | local R_BAS_kopageapp R_BAS_kotext R_BAS_kowmf libname R |
221 | |
| 161 | case ${PN} in |
222 | local handbookdir=`dirname ${pattern}` |
| 162 | koffice-data|koffice-libs) |
223 | local translationdir=`basename ${pattern}` |
| 163 | ;; |
224 | # Do filename pattern supplied, treat as directory |
| 164 | *) |
225 | [[ "${handbookdir}" = '.' ]] && handbookdir=${translationdir} && translationdir= |
| 165 | ### basic array |
226 | [[ -d "${handbookdir}" ]] || die 'wrong doc dir specified' |
| 166 | LIB_ARRAY="kostore koodf kokross komain pigmentcms koresources flake koguiutils kopageapp kotext kowmf" |
227 | |
| 167 | ### dep array |
228 | if ! use handbook; then |
| 168 | R_QT_kostore="\"/usr/$(get_libdir)/qt4/libQtCore.so\" |
229 | # Disable whole directory |
| 169 | \"/usr/$(get_libdir)/qt4/libQtXml.so\" |
230 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
| 170 | \"${KDEDIR}/$(get_libdir)/libkdecore.so\"" |
231 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${handbookdir}[[:space:]]*)/s/^/#DONOTCOMPILE /" \ |
| 171 | R_BAS_kostore="libkostore ${R_QT_kostore}" |
232 | -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 |
233 | else |
| 194 | R="${R} ${libpath}" |
234 | # Disable subdirectories recursively |
|
|
235 | comment_all_add_subdirectory "${handbookdir}" |
|
|
236 | # Add requested translations |
|
|
237 | local lingua |
|
|
238 | for lingua in en ${KDE_LINGUAS}; do |
|
|
239 | if [[ ${lingua} = 'en' ]] || use linguas_${lingua}; then |
|
|
240 | if [[ -d "${handbookdir}/${translationdir//%lingua/${lingua}}" ]]; then |
|
|
241 | sed -e "/add_subdirectory[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
|
|
242 | -e "/ADD_SUBDIRECTORY[[:space:]]*([[:space:]]*${translationdir//%lingua/${lingua}}/s/^#DONOTCOMPILE //" \ |
|
|
243 | -i "${handbookdir}"/CMakeLists.txt && ! has ${lingua} ${linguas} && linguas="${linguas} ${lingua}" |
| 195 | fi |
244 | fi |
| 196 | done |
245 | 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 |
246 | done |
| 207 | ;; |
247 | fi |
| 208 | esac |
248 | |
|
|
249 | done |
|
|
250 | [[ -n "${linguas}" ]] && einfo "Enabling handbook translations:${linguas}" |
| 209 | } |
251 | } |
|
|
252 | |
| 210 | # @FUNCTION: get_build_type |
253 | # @FUNCTION: get_build_type |
| 211 | # @DESCRIPTION: |
254 | # @DESCRIPTION: |
| 212 | # Determine whether we are using live ebuild or tbzs. |
255 | # Determine whether we are using live ebuild or tbzs. |
| 213 | get_build_type() { |
256 | get_build_type() { |
| 214 | if [[ $SLOT = live || $PV = 9999* ]]; then |
257 | if [[ ${SLOT} = live || ${PV} = *9999* ]]; then |
| 215 | BUILD_TYPE="live" |
258 | BUILD_TYPE="live" |
| 216 | else |
259 | else |
| 217 | BUILD_TYPE="release" |
260 | BUILD_TYPE="release" |
| 218 | fi |
261 | fi |
| 219 | export BUILD_TYPE |
262 | export BUILD_TYPE |
| 220 | } |
263 | } |
| 221 | |
264 | |
| 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 |
265 | # @FUNCTION: migrate_store_dir |
| 269 | # @DESCRIPTION: |
266 | # @DESCRIPTION: |
| 270 | # Migrate the remnants of ${ESVN_STORE_DIR}/KDE/ to ${ESVN_STORE_DIR}/. |
267 | # Universal store dir migration |
| 271 | # Perform experimental split of kdebase to kdebase-apps. |
268 | # * performs split of kdebase to kdebase-apps when needed |
|
|
269 | # * moves playground/extragear kde4-base-style to toplevel dir |
| 272 | migrate_store_dir() { |
270 | migrate_store_dir() { |
| 273 | local cleandir |
|
|
| 274 | cleandir="${ESVN_STORE_DIR}/KDE" |
271 | local cleandir="${ESVN_STORE_DIR}/KDE" |
| 275 | if [[ -d "${cleandir}" ]]; then |
272 | if [[ -d "${cleandir}" ]]; then |
| 276 | ewarn "'${cleandir}' has been found. Moving contents to new location." |
273 | ewarn "'${cleandir}' has been found. Moving contents to new location." |
| 277 | addwrite "${ESVN_STORE_DIR}" |
274 | addwrite "${ESVN_STORE_DIR}" |
| 278 | # Split kdebase |
275 | # Split kdebase |
| 279 | local module |
276 | local module |
| … | |
… | |
| 288 | die "Failed to remove ${cleandir}/kdebase. You need to remove it manually." |
285 | die "Failed to remove ${cleandir}/kdebase. You need to remove it manually." |
| 289 | fi |
286 | fi |
| 290 | # Move the rest |
287 | # Move the rest |
| 291 | local pkg |
288 | local pkg |
| 292 | for pkg in "${cleandir}"/*; do |
289 | for pkg in "${cleandir}"/*; do |
| 293 | mv -f "${pkg}" "${ESVN_STORE_DIR}"/ || eerror "failed to move ${pkg}" |
290 | mv -f "${pkg}" "${ESVN_STORE_DIR}"/ || eerror "Failed to move '${pkg}'" |
| 294 | done |
291 | 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." |
292 | 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." |
|
|
293 | fi |
|
|
294 | |
|
|
295 | if ! hasq kde4-meta ${INHERITED}; then |
|
|
296 | case ${KMNAME} in |
|
|
297 | extragear*|playground*) |
|
|
298 | local svnlocalpath="${ESVN_STORE_DIR}"/"${KMNAME}"/"${PN}" |
|
|
299 | if [[ -d "${svnlocalpath}" ]]; then |
|
|
300 | local destdir="${ESVN_STORE_DIR}"/"${ESVN_PROJECT}"/"`basename "${ESVN_REPO_URI}"`" |
|
|
301 | ewarn "'${svnlocalpath}' has been found." |
|
|
302 | ewarn "Moving contents to new location: ${destdir}" |
|
|
303 | addwrite "${ESVN_STORE_DIR}" |
|
|
304 | mkdir -p "${ESVN_STORE_DIR}"/"${ESVN_PROJECT}" && mv -f "${svnlocalpath}" "${destdir}" \ |
|
|
305 | || die "Failed to move to '${svnlocalpath}'" |
|
|
306 | # Try cleaning empty directories |
|
|
307 | rmdir "`dirname "${svnlocalpath}"`" 2> /dev/null |
|
|
308 | fi |
|
|
309 | ;; |
|
|
310 | esac |
| 296 | fi |
311 | fi |
| 297 | } |
312 | } |
| 298 | |
313 | |
| 299 | # Functions handling KMLOADLIBS and KMSAVELIBS |
314 | # Functions handling KMLOADLIBS and KMSAVELIBS |
| 300 | |
315 | |
| … | |
… | |
| 302 | # @DESCRIPTION: |
317 | # @DESCRIPTION: |
| 303 | # Add exporting CMake dependencies for current package |
318 | # Add exporting CMake dependencies for current package |
| 304 | save_library_dependencies() { |
319 | save_library_dependencies() { |
| 305 | local depsfile="${T}/${PN}:${SLOT}" |
320 | local depsfile="${T}/${PN}:${SLOT}" |
| 306 | |
321 | |
| 307 | ebegin "Saving library dependendencies in ${depsfile##*/}" |
322 | ebegin "Saving library dependencies in ${depsfile##*/}" |
| 308 | echo "EXPORT_LIBRARY_DEPENDENCIES(\"${depsfile}\")" >> "${S}/CMakeLists.txt" || \ |
323 | echo "EXPORT_LIBRARY_DEPENDENCIES(\"${depsfile}\")" >> "${S}/CMakeLists.txt" || \ |
| 309 | die "Failed to save the library dependencies." |
324 | die "Failed to save the library dependencies." |
| 310 | eend $? |
325 | eend $? |
| 311 | } |
326 | } |
| 312 | |
327 | |
| 313 | # @FUNCTION: install_library_dependencies |
328 | # @FUNCTION: install_library_dependencies |
| 314 | # @DESCRIPTION: |
329 | # @DESCRIPTION: |
| 315 | # Install generated CMake library dependencies to /var/lib/kde |
330 | # Install generated CMake library dependencies to /var/lib/kde |
| 316 | install_library_dependencies() { |
331 | install_library_dependencies() { |
| 317 | local depsfile="$T/$PN:$SLOT" |
332 | local depsfile="${T}/${PN}:${SLOT}" |
|
|
333 | |
| 318 | ebegin "Installing library dependendencies as ${depsfile##*/}" |
334 | ebegin "Installing library dependencies as ${depsfile##*/}" |
| 319 | insinto /var/lib/kde |
335 | insinto ${EROOT}var/lib/kde |
| 320 | doins "${depsfile}" || die "Failed to install library dependencies." |
336 | doins "${depsfile}" || die "Failed to install library dependencies." |
| 321 | eend $? |
337 | eend $? |
| 322 | } |
338 | } |
| 323 | |
339 | |
| 324 | # @FUNCTION: load_library_dependencies |
340 | # @FUNCTION: load_library_dependencies |
| 325 | # @DESCRIPTION: |
341 | # @DESCRIPTION: |
| 326 | # Inject specified library dependencies in current package |
342 | # Inject specified library dependencies in current package |
| 327 | load_library_dependencies() { |
343 | load_library_dependencies() { |
| 328 | local pn i depsfile |
344 | local pn i depsfile |
| 329 | ebegin "Injecting library dependendencies from '${KMLOADLIBS}'" |
345 | ebegin "Injecting library dependencies from '${KMLOADLIBS}'" |
| 330 | |
346 | |
| 331 | i=0 |
347 | i=0 |
| 332 | for pn in ${KMLOADLIBS} ; do |
348 | for pn in ${KMLOADLIBS} ; do |
| 333 | ((i++)) |
349 | ((i++)) |
| 334 | depsfile="/var/lib/kde/${pn}:${SLOT}" |
350 | depsfile="${EROOT}var/lib/kde/${pn}:${SLOT}" |
| 335 | [[ -r "${depsfile}" ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}." |
351 | [[ -r "${depsfile}" ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}." |
| 336 | sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \ |
352 | sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \ |
| 337 | die "Failed to include library dependencies for ${pn}" |
353 | die "Failed to include library dependencies for ${pn}" |
| 338 | done |
354 | done |
| 339 | eend $? |
355 | eend $? |
| 340 | } |
356 | } |
|
|
357 | |
|
|
358 | # @FUNCTION: block_other_slots |
|
|
359 | # @DESCRIPTION: |
|
|
360 | # Create blocks for the current package in other slots when |
|
|
361 | # installed with USE=-kdeprefix |
|
|
362 | block_other_slots() { |
|
|
363 | local slot |
|
|
364 | |
|
|
365 | debug-print-function ${FUNCNAME} "$@" |
|
|
366 | |
|
|
367 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
368 | # Block non kdeprefix ${PN} on other slots |
|
|
369 | if [[ ${SLOT} != ${slot} ]]; then |
|
|
370 | echo "!kdeprefix? ( !kde-base/${PN}:${slot}[-kdeprefix] )" |
|
|
371 | fi |
|
|
372 | done |
|
|
373 | } |
|
|
374 | |
|
|
375 | # @FUNCTION: add_blocker |
|
|
376 | # @DESCRIPTION: |
|
|
377 | # Create correct RDEPEND value for blocking correct package. |
|
|
378 | # Usefull for file-collision blocks. |
|
|
379 | # Parameters are package and version to block. |
|
|
380 | # add_blocker kde-base/kdelibs 4.2.4 |
|
|
381 | add_blocker() { |
|
|
382 | local slot |
|
|
383 | |
|
|
384 | debug-print-function ${FUNCNAME} "$@" |
|
|
385 | |
|
|
386 | [[ ${1} = "" || ${2} = "" ]] && die "Missing parameter" |
|
|
387 | for slot in ${KDE_SLOTS[@]} ${KDE_LIVE_SLOTS[@]}; do |
|
|
388 | # on -kdeprefix we block every slot |
|
|
389 | RDEPEND+=" !kdeprefix? ( !<=${1}-${2}:${slot}[-kdeprefix] )" |
|
|
390 | done |
|
|
391 | # on kdeprefix we block only our slot |
|
|
392 | RDEPEND+=" kdeprefix? ( !<=${1}-${2}:${SLOT}[kdeprefix] )" |
|
|
393 | } |