| 1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2013 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/gnome2.eclass,v 1.97 2011/07/08 11:35:01 ssuominen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.119 2013/01/16 22:52:37 eva Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: gnome2.eclass |
5 | # @ECLASS: gnome2.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # gnome@gentoo.org |
7 | # gnome@gentoo.org |
| 8 | # @BLURB: |
8 | # @BLURB: Provides phases for Gnome/Gtk+ based packages. |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # Exports portage base functions used by ebuilds written for packages using the |
10 | # Exports portage base functions used by ebuilds written for packages using the |
| 11 | # GNOME framework. For additional functions, see gnome2-utils.eclass. |
11 | # GNOME framework. For additional functions, see gnome2-utils.eclass. |
| 12 | |
12 | |
| 13 | inherit fdo-mime libtool gnome.org gnome2-utils |
13 | inherit eutils fdo-mime libtool gnome.org gnome2-utils |
| 14 | |
14 | |
| 15 | case "${EAPI:-0}" in |
15 | case "${EAPI:-0}" in |
| 16 | 0|1) |
16 | 0|1) |
| 17 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
17 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 18 | ;; |
18 | ;; |
| 19 | 2|3|4) |
19 | 2|3|4|5) |
| 20 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
20 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 21 | ;; |
21 | ;; |
| 22 | *) die "EAPI=${EAPI} is not supported" ;; |
22 | *) die "EAPI=${EAPI} is not supported" ;; |
| 23 | esac |
23 | esac |
| 24 | |
24 | |
| 25 | # @ECLASS-VARIABLE: G2CONF |
25 | # @ECLASS-VARIABLE: G2CONF |
| 26 | # @DEFAULT-UNSET |
26 | # @DEFAULT_UNSET |
| 27 | # @DESCRIPTION: |
27 | # @DESCRIPTION: |
| 28 | # Extra configure opts passed to econf |
28 | # Extra configure opts passed to econf |
| 29 | G2CONF=${G2CONF:-""} |
29 | G2CONF=${G2CONF:-""} |
| 30 | |
30 | |
| 31 | # @ECLASS-VARIABLE: GNOME2_LA_PUNT |
31 | # @ECLASS-VARIABLE: GNOME2_LA_PUNT |
| 32 | # @DESCRIPTION: |
32 | # @DESCRIPTION: |
| 33 | # Should we delete all the .la files? |
33 | # Should we delete ALL the .la files? |
| 34 | # NOT to be used without due consideration. |
34 | # NOT to be used without due consideration. |
|
|
35 | if has ${EAPI:-0} 0 1 2 3 4; then |
| 35 | GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-"no"} |
36 | GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-"no"} |
|
|
37 | else |
|
|
38 | GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-""} |
|
|
39 | fi |
| 36 | |
40 | |
| 37 | # @ECLASS-VARIABLE: ELTCONF |
41 | # @ECLASS-VARIABLE: ELTCONF |
| 38 | # @DEFAULT-UNSET |
42 | # @DEFAULT_UNSET |
| 39 | # @DESCRIPTION: |
43 | # @DESCRIPTION: |
| 40 | # Extra options passed to elibtoolize |
44 | # Extra options passed to elibtoolize |
| 41 | ELTCONF=${ELTCONF:-""} |
45 | ELTCONF=${ELTCONF:-""} |
| 42 | |
46 | |
| 43 | # @ECLASS-VARIABLE: USE_EINSTALL |
47 | # @ECLASS-VARIABLE: USE_EINSTALL |
| 44 | # @DEFAULT-UNSET |
48 | # @DEFAULT_UNSET |
| 45 | # @DEPRECATED |
|
|
| 46 | # @DESCRIPTION: |
49 | # @DESCRIPTION: |
| 47 | # Should we use EINSTALL instead of DESTDIR |
50 | # Should we use EINSTALL instead of DESTDIR. DEPRECATED |
| 48 | USE_EINSTALL=${USE_EINSTALL:-""} |
51 | USE_EINSTALL=${USE_EINSTALL:-""} |
| 49 | |
52 | |
| 50 | # @ECLASS-VARIABLE: SCROLLKEEPER_UPDATE |
53 | # @ECLASS-VARIABLE: SCROLLKEEPER_UPDATE |
| 51 | # @DEPRECATED |
|
|
| 52 | # @DESCRIPTION: |
54 | # @DESCRIPTION: |
| 53 | # Whether to run scrollkeeper for this package or not. |
55 | # Whether to run scrollkeeper for this package or not. DEPRECATED |
| 54 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
56 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
| 55 | |
57 | |
| 56 | # @ECLASS-VARIABLE: DOCS |
58 | # @ECLASS-VARIABLE: DOCS |
| 57 | # @DEFAULT-UNSET |
59 | # @DEFAULT_UNSET |
| 58 | # @DESCRIPTION: |
60 | # @DESCRIPTION: |
| 59 | # String containing documents passed to dodoc command. |
61 | # String containing documents passed to dodoc command. |
| 60 | |
62 | |
| 61 | # @ECLASS-VARIABLE: GCONF_DEBUG |
63 | # @ECLASS-VARIABLE: GCONF_DEBUG |
| 62 | # @DEFAULT_UNSET |
64 | # @DEFAULT_UNSET |
| … | |
… | |
| 83 | has ${EAPI:-0} 0 1 && gnome2_src_prepare |
85 | has ${EAPI:-0} 0 1 && gnome2_src_prepare |
| 84 | } |
86 | } |
| 85 | |
87 | |
| 86 | # @FUNCTION: gnome2_src_prepare |
88 | # @FUNCTION: gnome2_src_prepare |
| 87 | # @DESCRIPTION: |
89 | # @DESCRIPTION: |
| 88 | # Fix build of scrollkeeper documentation and run elibtoolize. |
90 | # Prepare environment for build, fix build of scrollkeeper documentation, |
|
|
91 | # run elibtoolize. |
| 89 | gnome2_src_prepare() { |
92 | gnome2_src_prepare() { |
|
|
93 | # Prevent assorted access violations and test failures |
|
|
94 | gnome2_environment_reset |
|
|
95 | |
| 90 | # Prevent scrollkeeper access violations |
96 | # Prevent scrollkeeper access violations |
| 91 | gnome2_omf_fix |
97 | gnome2_omf_fix |
|
|
98 | |
|
|
99 | # Disable all deprecation warnings |
|
|
100 | gnome2_disable_deprecation_warning |
| 92 | |
101 | |
| 93 | # Run libtoolize |
102 | # Run libtoolize |
| 94 | if has ${EAPI:-0} 0 1 2 3; then |
103 | if has ${EAPI:-0} 0 1 2 3; then |
| 95 | elibtoolize ${ELTCONF} |
104 | elibtoolize ${ELTCONF} |
| 96 | else |
105 | else |
| … | |
… | |
| 105 | # Gnome specific configure handling |
114 | # Gnome specific configure handling |
| 106 | gnome2_src_configure() { |
115 | gnome2_src_configure() { |
| 107 | # Update the GNOME configuration options |
116 | # Update the GNOME configuration options |
| 108 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
117 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
| 109 | if use debug ; then |
118 | if use debug ; then |
| 110 | G2CONF="${G2CONF} --enable-debug=yes" |
119 | G2CONF="--enable-debug=yes ${G2CONF}" |
| 111 | fi |
|
|
| 112 | fi |
120 | fi |
|
|
121 | fi |
| 113 | |
122 | |
| 114 | # Prevent a QA warning |
123 | # Starting with EAPI=5, we consider packages installing gtk-doc to be |
| 115 | if has doc ${IUSE} ; then |
124 | # handled by adding DEPEND="dev-util/gtk-doc-am" which provides tools to |
|
|
125 | # relink URLs in documentation to already installed documentation. |
|
|
126 | # This decision also greatly helps with constantly broken doc generation. |
|
|
127 | # Remember to drop 'doc' USE flag from your package if it was only used to |
|
|
128 | # rebuild docs. |
|
|
129 | # Preserve old behavior for older EAPI. |
|
|
130 | if grep -q "enable-gtk-doc" ${ECONF_SOURCE:-.}/configure ; then |
|
|
131 | if has ${EAPI:-0} 0 1 2 3 4 && has doc ${IUSE} ; then |
| 116 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
132 | G2CONF="$(use_enable doc gtk-doc) ${G2CONF}" |
|
|
133 | else |
|
|
134 | G2CONF="--disable-gtk-doc ${G2CONF}" |
| 117 | fi |
135 | fi |
|
|
136 | fi |
| 118 | |
137 | |
| 119 | # Avoid sandbox violations caused by misbehaving packages (bug #128289) |
138 | # Pass --disable-maintainer-mode when needed |
| 120 | addwrite "/root/.gnome2" |
139 | if grep -q "^[[:space:]]*AM_MAINTAINER_MODE(\[enable\])" \ |
|
|
140 | ${ECONF_SOURCE:-.}/configure.*; then |
|
|
141 | G2CONF="--disable-maintainer-mode ${G2CONF}" |
|
|
142 | fi |
| 121 | |
143 | |
| 122 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
144 | # Pass --disable-scrollkeeper when possible |
| 123 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} |
145 | if grep -q "disable-scrollkeeper" ${ECONF_SOURCE:-.}/configure; then |
|
|
146 | G2CONF="--disable-scrollkeeper ${G2CONF}" |
|
|
147 | fi |
|
|
148 | |
|
|
149 | # Pass --disable-silent-rules when possible (not needed for eapi5), bug #429308 |
|
|
150 | if has ${EAPI:-0} 0 1 2 3 4; then |
|
|
151 | if grep -q "disable-silent-rules" ${ECONF_SOURCE:-.}/configure; then |
|
|
152 | G2CONF="--disable-silent-rules ${G2CONF}" |
|
|
153 | fi |
|
|
154 | fi |
|
|
155 | |
|
|
156 | # Pass --disable-schemas-install when possible |
|
|
157 | if grep -q "disable-schemas-install" ${ECONF_SOURCE:-.}/configure; then |
|
|
158 | G2CONF="--disable-schemas-install ${G2CONF}" |
|
|
159 | fi |
|
|
160 | |
|
|
161 | # Pass --disable-schemas-compile when possible |
|
|
162 | if grep -q "disable-schemas-compile" ${ECONF_SOURCE:-.}/configure; then |
|
|
163 | G2CONF="--disable-schemas-compile ${G2CONF}" |
|
|
164 | fi |
|
|
165 | |
|
|
166 | # Avoid sandbox violations caused by gnome-vfs (bug #128289 and #345659) |
|
|
167 | addwrite "$(unset HOME; echo ~)/.gnome2" |
|
|
168 | |
|
|
169 | econf ${G2CONF} "$@" |
| 124 | } |
170 | } |
| 125 | |
171 | |
| 126 | # @FUNCTION: gnome2_src_compile |
172 | # @FUNCTION: gnome2_src_compile |
| 127 | # @DESCRIPTION: |
173 | # @DESCRIPTION: |
| 128 | # Stub function for old EAPI. |
174 | # Stub function for old EAPI. |
| … | |
… | |
| 153 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
199 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 154 | fi |
200 | fi |
| 155 | |
201 | |
| 156 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
202 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 157 | |
203 | |
|
|
204 | # Handle documentation as 'default' for eapi5 and newer, bug #373131 |
|
|
205 | if has ${EAPI:-0} 0 1 2 3 4; then |
| 158 | # Manual document installation |
206 | # Manual document installation |
| 159 | if [[ -n "${DOCS}" ]]; then |
207 | if [[ -n "${DOCS}" ]]; then |
| 160 | dodoc ${DOCS} || die "dodoc failed" |
208 | dodoc ${DOCS} || die "dodoc failed" |
|
|
209 | fi |
|
|
210 | else |
|
|
211 | if ! declare -p DOCS >/dev/null 2>&1 ; then |
|
|
212 | local d |
|
|
213 | for d in README* ChangeLog AUTHORS NEWS TODO CHANGES THANKS BUGS \ |
|
|
214 | FAQ CREDITS CHANGELOG ; do |
|
|
215 | [[ -s "${d}" ]] && dodoc "${d}" |
|
|
216 | done |
|
|
217 | elif declare -p DOCS | grep -q '^declare -a' ; then |
|
|
218 | dodoc "${DOCS[@]}" |
|
|
219 | else |
|
|
220 | dodoc ${DOCS} |
|
|
221 | fi |
| 161 | fi |
222 | fi |
| 162 | |
223 | |
| 163 | # Do not keep /var/lib/scrollkeeper because: |
224 | # Do not keep /var/lib/scrollkeeper because: |
| 164 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
225 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
| 165 | # 2. ${ED}/var/lib/scrollkeeper contains only indexes for the current pkg |
226 | # 2. ${ED}/var/lib/scrollkeeper contains only indexes for the current pkg |
| 166 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
227 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
| 167 | if [[ -z "$(find "${D}" -name '*.omf')" ]]; then |
|
|
| 168 | export SCROLLKEEPER_UPDATE="0" |
|
|
| 169 | fi |
|
|
| 170 | rm -rf "${ED}${sk_tmp_dir}" |
228 | rm -rf "${ED}${sk_tmp_dir}" |
|
|
229 | rmdir "${ED}/var/lib" 2>/dev/null |
|
|
230 | rmdir "${ED}/var" 2>/dev/null |
| 171 | |
231 | |
| 172 | # Make sure this one doesn't get in the portage db |
232 | # Make sure this one doesn't get in the portage db |
| 173 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
233 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
| 174 | |
234 | |
| 175 | # Delete all .la files |
235 | # Delete all .la files |
|
|
236 | if has ${EAPI:-0} 0 1 2 3 4; then |
| 176 | if [[ "${GNOME2_LA_PUNT}" != "no" ]]; then |
237 | if [[ "${GNOME2_LA_PUNT}" != "no" ]]; then |
| 177 | ebegin "Removing .la files" |
238 | ebegin "Removing .la files" |
|
|
239 | if ! { has static-libs ${IUSE//+} && use static-libs; }; then |
| 178 | find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" |
240 | find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" |
|
|
241 | fi |
| 179 | eend |
242 | eend |
|
|
243 | fi |
|
|
244 | else |
|
|
245 | case "${GNOME2_LA_PUNT}" in |
|
|
246 | yes) prune_libtool_files --modules;; |
|
|
247 | no) ;; |
|
|
248 | *) prune_libtool_files;; |
|
|
249 | esac |
| 180 | fi |
250 | fi |
| 181 | } |
251 | } |
| 182 | |
252 | |
| 183 | # @FUNCTION: gnome2_pkg_preinst |
253 | # @FUNCTION: gnome2_pkg_preinst |
| 184 | # @DESCRIPTION: |
254 | # @DESCRIPTION: |
| 185 | # Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
255 | # Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
| 186 | gnome2_pkg_preinst() { |
256 | gnome2_pkg_preinst() { |
| 187 | gnome2_gconf_savelist |
257 | gnome2_gconf_savelist |
| 188 | gnome2_icon_savelist |
258 | gnome2_icon_savelist |
| 189 | gnome2_schemas_savelist |
259 | gnome2_schemas_savelist |
|
|
260 | gnome2_scrollkeeper_savelist |
| 190 | } |
261 | } |
| 191 | |
262 | |
| 192 | # @FUNCTION: gnome2_pkg_postinst |
263 | # @FUNCTION: gnome2_pkg_postinst |
| 193 | # @DESCRIPTION: |
264 | # @DESCRIPTION: |
| 194 | # Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
265 | # Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
| … | |
… | |
| 197 | gnome2_gconf_install |
268 | gnome2_gconf_install |
| 198 | fdo-mime_desktop_database_update |
269 | fdo-mime_desktop_database_update |
| 199 | fdo-mime_mime_database_update |
270 | fdo-mime_mime_database_update |
| 200 | gnome2_icon_cache_update |
271 | gnome2_icon_cache_update |
| 201 | gnome2_schemas_update |
272 | gnome2_schemas_update |
| 202 | |
|
|
| 203 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
| 204 | gnome2_scrollkeeper_update |
273 | gnome2_scrollkeeper_update |
| 205 | fi |
|
|
| 206 | } |
274 | } |
| 207 | |
275 | |
| 208 | # @#FUNCTION: gnome2_pkg_prerm |
|
|
| 209 | # @#DESCRIPTION: |
|
|
| 210 | # # FIXME Handle GConf schemas removal |
276 | # # FIXME Handle GConf schemas removal |
| 211 | #gnome2_pkg_prerm() { |
277 | #gnome2_pkg_prerm() { |
| 212 | # gnome2_gconf_uninstall |
278 | # gnome2_gconf_uninstall |
| 213 | #} |
279 | #} |
| 214 | |
280 | |
| … | |
… | |
| 217 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
283 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
| 218 | gnome2_pkg_postrm() { |
284 | gnome2_pkg_postrm() { |
| 219 | fdo-mime_desktop_database_update |
285 | fdo-mime_desktop_database_update |
| 220 | fdo-mime_mime_database_update |
286 | fdo-mime_mime_database_update |
| 221 | gnome2_icon_cache_update |
287 | gnome2_icon_cache_update |
| 222 | gnome2_schemas_update --uninstall |
288 | gnome2_schemas_update |
| 223 | |
|
|
| 224 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
| 225 | gnome2_scrollkeeper_update |
289 | gnome2_scrollkeeper_update |
| 226 | fi |
|
|
| 227 | } |
290 | } |