| 1 | # Copyright 1999-2006 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.81 2007/02/05 05:39:14 compnerd Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.119 2013/01/16 22:52:37 eva Exp $ |
| 4 | |
4 | |
| 5 | # |
|
|
| 6 | # gnome2.eclass |
5 | # @ECLASS: gnome2.eclass |
| 7 | # |
6 | # @MAINTAINER: |
|
|
7 | # gnome@gentoo.org |
|
|
8 | # @BLURB: Provides phases for Gnome/Gtk+ based packages. |
|
|
9 | # @DESCRIPTION: |
| 8 | # 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 |
| 9 | # GNOME framework. For additional functions, see gnome2-utils.eclass. |
11 | # GNOME framework. For additional functions, see gnome2-utils.eclass. |
| 10 | # |
|
|
| 11 | # Maintained by Gentoo's GNOME herd <gnome@gentoo.org> |
|
|
| 12 | # |
|
|
| 13 | |
12 | |
| 14 | |
|
|
| 15 | inherit fdo-mime libtool gnome.org gnome2-utils |
13 | inherit eutils fdo-mime libtool gnome.org gnome2-utils |
| 16 | |
14 | |
|
|
15 | case "${EAPI:-0}" in |
|
|
16 | 0|1) |
|
|
17 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|
18 | ;; |
|
|
19 | 2|3|4|5) |
|
|
20 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|
21 | ;; |
|
|
22 | *) die "EAPI=${EAPI} is not supported" ;; |
|
|
23 | esac |
| 17 | |
24 | |
|
|
25 | # @ECLASS-VARIABLE: G2CONF |
|
|
26 | # @DEFAULT_UNSET |
|
|
27 | # @DESCRIPTION: |
| 18 | # Extra configure opts passed to econf |
28 | # Extra configure opts passed to econf |
| 19 | G2CONF=${G2CONF:-""} |
29 | G2CONF=${G2CONF:-""} |
| 20 | |
30 | |
|
|
31 | # @ECLASS-VARIABLE: GNOME2_LA_PUNT |
|
|
32 | # @DESCRIPTION: |
|
|
33 | # Should we delete ALL the .la files? |
|
|
34 | # NOT to be used without due consideration. |
|
|
35 | if has ${EAPI:-0} 0 1 2 3 4; then |
|
|
36 | GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-"no"} |
|
|
37 | else |
|
|
38 | GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-""} |
|
|
39 | fi |
|
|
40 | |
|
|
41 | # @ECLASS-VARIABLE: ELTCONF |
|
|
42 | # @DEFAULT_UNSET |
|
|
43 | # @DESCRIPTION: |
| 21 | # Extra options passed to elibtoolize |
44 | # Extra options passed to elibtoolize |
| 22 | ELTCONF=${ELTCONF:-""} |
45 | ELTCONF=${ELTCONF:-""} |
| 23 | |
46 | |
|
|
47 | # @ECLASS-VARIABLE: USE_EINSTALL |
|
|
48 | # @DEFAULT_UNSET |
|
|
49 | # @DESCRIPTION: |
| 24 | # Should we use EINSTALL instead of DESTDIR |
50 | # Should we use EINSTALL instead of DESTDIR. DEPRECATED |
| 25 | USE_EINSTALL=${USE_EINSTALL:-""} |
51 | USE_EINSTALL=${USE_EINSTALL:-""} |
| 26 | |
52 | |
| 27 | # Run scrollkeeper for this package? |
53 | # @ECLASS-VARIABLE: SCROLLKEEPER_UPDATE |
|
|
54 | # @DESCRIPTION: |
|
|
55 | # Whether to run scrollkeeper for this package or not. DEPRECATED |
| 28 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
56 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
| 29 | |
57 | |
|
|
58 | # @ECLASS-VARIABLE: DOCS |
|
|
59 | # @DEFAULT_UNSET |
|
|
60 | # @DESCRIPTION: |
|
|
61 | # String containing documents passed to dodoc command. |
|
|
62 | |
|
|
63 | # @ECLASS-VARIABLE: GCONF_DEBUG |
|
|
64 | # @DEFAULT_UNSET |
|
|
65 | # @DESCRIPTION: |
|
|
66 | # Whether to handle debug or not. |
|
|
67 | # Some gnome applications support various levels of debugging (yes, no, minimum, |
|
|
68 | # etc), but using --disable-debug also removes g_assert which makes debugging |
|
|
69 | # harder. This variable should be set to yes for such packages for the eclass |
|
|
70 | # to handle it properly. It will enable minimal debug with USE=-debug. |
|
|
71 | # Note that this is most commonly found in configure.ac as GNOME_DEBUG_CHECK. |
| 30 | |
72 | |
| 31 | |
73 | |
| 32 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
74 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
| 33 | IUSE="debug" |
75 | IUSE="debug" |
| 34 | fi |
76 | fi |
| 35 | |
77 | |
| 36 | |
78 | |
| 37 | |
79 | # @FUNCTION: gnome2_src_unpack |
|
|
80 | # @DESCRIPTION: |
|
|
81 | # Stub function for old EAPI. |
| 38 | gnome2_src_unpack() { |
82 | gnome2_src_unpack() { |
| 39 | unpack ${A} |
83 | unpack ${A} |
| 40 | cd ${S} |
84 | cd "${S}" |
|
|
85 | has ${EAPI:-0} 0 1 && gnome2_src_prepare |
|
|
86 | } |
|
|
87 | |
|
|
88 | # @FUNCTION: gnome2_src_prepare |
|
|
89 | # @DESCRIPTION: |
|
|
90 | # Prepare environment for build, fix build of scrollkeeper documentation, |
|
|
91 | # run elibtoolize. |
|
|
92 | gnome2_src_prepare() { |
|
|
93 | # Prevent assorted access violations and test failures |
|
|
94 | gnome2_environment_reset |
| 41 | |
95 | |
| 42 | # Prevent scrollkeeper access violations |
96 | # Prevent scrollkeeper access violations |
| 43 | gnome2_omf_fix |
97 | gnome2_omf_fix |
| 44 | |
98 | |
|
|
99 | # Disable all deprecation warnings |
|
|
100 | gnome2_disable_deprecation_warning |
|
|
101 | |
| 45 | # Run libtoolize |
102 | # Run libtoolize |
|
|
103 | if has ${EAPI:-0} 0 1 2 3; then |
| 46 | elibtoolize ${ELTCONF} |
104 | elibtoolize ${ELTCONF} |
| 47 | } |
105 | else |
|
|
106 | # Everything is fatal EAPI 4 onwards |
|
|
107 | nonfatal elibtoolize ${ELTCONF} |
|
|
108 | fi |
| 48 | |
109 | |
|
|
110 | } |
|
|
111 | |
|
|
112 | # @FUNCTION: gnome2_src_configure |
|
|
113 | # @DESCRIPTION: |
|
|
114 | # Gnome specific configure handling |
| 49 | gnome2_src_configure() { |
115 | gnome2_src_configure() { |
| 50 | # Update the GNOME configuration options |
116 | # Update the GNOME configuration options |
| 51 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
117 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
| 52 | if use debug ; then |
118 | if use debug ; then |
| 53 | G2CONF="${G2CONF} --enable-debug=yes" |
119 | G2CONF="--enable-debug=yes ${G2CONF}" |
| 54 | fi |
|
|
| 55 | fi |
120 | fi |
|
|
121 | fi |
| 56 | |
122 | |
| 57 | # Prevent a QA warning |
123 | # Starting with EAPI=5, we consider packages installing gtk-doc to be |
| 58 | if hasq 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 |
| 59 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
132 | G2CONF="$(use_enable doc gtk-doc) ${G2CONF}" |
|
|
133 | else |
|
|
134 | G2CONF="--disable-gtk-doc ${G2CONF}" |
| 60 | fi |
135 | fi |
|
|
136 | fi |
| 61 | |
137 | |
| 62 | # Avoid sandbox violations caused by misbehaving packages (bug #128289) |
138 | # Pass --disable-maintainer-mode when needed |
| 63 | addwrite "${ROOT}root/.gnome2" |
139 | if grep -q "^[[:space:]]*AM_MAINTAINER_MODE(\[enable\])" \ |
|
|
140 | ${ECONF_SOURCE:-.}/configure.*; then |
|
|
141 | G2CONF="--disable-maintainer-mode ${G2CONF}" |
|
|
142 | fi |
| 64 | |
143 | |
| 65 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
144 | # Pass --disable-scrollkeeper when possible |
| 66 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} || die "configure failed" |
145 | if grep -q "disable-scrollkeeper" ${ECONF_SOURCE:-.}/configure; then |
| 67 | } |
146 | G2CONF="--disable-scrollkeeper ${G2CONF}" |
|
|
147 | fi |
| 68 | |
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} "$@" |
|
|
170 | } |
|
|
171 | |
|
|
172 | # @FUNCTION: gnome2_src_compile |
|
|
173 | # @DESCRIPTION: |
|
|
174 | # Stub function for old EAPI. |
| 69 | gnome2_src_compile() { |
175 | gnome2_src_compile() { |
| 70 | gnome2_src_configure "$@" |
176 | has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
| 71 | emake || die "compile failure" |
177 | emake || die "compile failure" |
| 72 | } |
178 | } |
| 73 | |
179 | |
|
|
180 | # @FUNCTION: gnome2_src_install |
|
|
181 | # @DESCRIPTION: |
|
|
182 | # Gnome specific install. Handles typical GConf and scrollkeeper setup |
|
|
183 | # in packages and removal of .la files if requested |
| 74 | gnome2_src_install() { |
184 | gnome2_src_install() { |
|
|
185 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
| 75 | # if this is not present, scrollkeeper-update may segfault and |
186 | # if this is not present, scrollkeeper-update may segfault and |
| 76 | # create bogus directories in /var/lib/ |
187 | # create bogus directories in /var/lib/ |
| 77 | local sk_tmp_dir="/var/lib/scrollkeeper" |
188 | local sk_tmp_dir="/var/lib/scrollkeeper" |
| 78 | dodir "${sk_tmp_dir}" |
189 | dodir "${sk_tmp_dir}" || die "dodir failed" |
| 79 | |
190 | |
| 80 | # we must delay gconf schema installation due to sandbox |
191 | # we must delay gconf schema installation due to sandbox |
| 81 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
192 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 82 | |
193 | |
| 83 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
194 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 84 | debug-print "Installing with 'make install'" |
195 | debug-print "Installing with 'make install'" |
| 85 | make DESTDIR=${D} "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" install || die "install failed" |
196 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
| 86 | else |
197 | else |
| 87 | debug-print "Installing with 'einstall'" |
198 | debug-print "Installing with 'einstall'" |
| 88 | einstall "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" || die "einstall failed" |
199 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 89 | fi |
200 | fi |
| 90 | |
201 | |
| 91 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
202 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 92 | |
203 | |
|
|
204 | # Handle documentation as 'default' for eapi5 and newer, bug #373131 |
|
|
205 | if has ${EAPI:-0} 0 1 2 3 4; then |
| 93 | # Manual document installation |
206 | # Manual document installation |
|
|
207 | if [[ -n "${DOCS}" ]]; then |
|
|
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 |
| 94 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
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 |
|
|
222 | fi |
| 95 | |
223 | |
| 96 | # Do not keep /var/lib/scrollkeeper because: |
224 | # Do not keep /var/lib/scrollkeeper because: |
| 97 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
225 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
| 98 | # 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
226 | # 2. ${ED}/var/lib/scrollkeeper contains only indexes for the current pkg |
| 99 | # 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. |
| 100 | if [[ -z "$(find ${D} -name '*.omf')" ]]; then |
|
|
| 101 | export SCROLLKEEPER_UPDATE="0" |
|
|
| 102 | fi |
|
|
| 103 | rm -rf "${D}${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 |
| 104 | |
231 | |
| 105 | # Make sure this one doesn't get in the portage db |
232 | # Make sure this one doesn't get in the portage db |
| 106 | rm -fr "${D}/usr/share/applications/mimeinfo.cache" |
233 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
| 107 | } |
|
|
| 108 | |
234 | |
|
|
235 | # Delete all .la files |
|
|
236 | if has ${EAPI:-0} 0 1 2 3 4; then |
|
|
237 | if [[ "${GNOME2_LA_PUNT}" != "no" ]]; then |
|
|
238 | ebegin "Removing .la files" |
|
|
239 | if ! { has static-libs ${IUSE//+} && use static-libs; }; then |
|
|
240 | find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" |
|
|
241 | fi |
|
|
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 |
|
|
250 | fi |
|
|
251 | } |
|
|
252 | |
|
|
253 | # @FUNCTION: gnome2_pkg_preinst |
|
|
254 | # @DESCRIPTION: |
|
|
255 | # Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
|
|
256 | gnome2_pkg_preinst() { |
|
|
257 | gnome2_gconf_savelist |
|
|
258 | gnome2_icon_savelist |
|
|
259 | gnome2_schemas_savelist |
|
|
260 | gnome2_scrollkeeper_savelist |
|
|
261 | } |
|
|
262 | |
|
|
263 | # @FUNCTION: gnome2_pkg_postinst |
|
|
264 | # @DESCRIPTION: |
|
|
265 | # Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
|
|
266 | # database updates. |
| 109 | gnome2_pkg_postinst() { |
267 | gnome2_pkg_postinst() { |
| 110 | gnome2_gconf_install |
268 | gnome2_gconf_install |
| 111 | fdo-mime_desktop_database_update |
269 | fdo-mime_desktop_database_update |
| 112 | fdo-mime_mime_database_update |
270 | fdo-mime_mime_database_update |
| 113 | gnome2_icon_cache_update |
271 | gnome2_icon_cache_update |
| 114 | |
272 | gnome2_schemas_update |
| 115 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
| 116 | gnome2_scrollkeeper_update |
273 | gnome2_scrollkeeper_update |
| 117 | fi |
|
|
| 118 | } |
274 | } |
| 119 | |
275 | |
|
|
276 | # # FIXME Handle GConf schemas removal |
| 120 | #gnome2_pkg_prerm() { |
277 | #gnome2_pkg_prerm() { |
| 121 | # gnome2_gconf_uninstall |
278 | # gnome2_gconf_uninstall |
| 122 | #} |
279 | #} |
| 123 | |
280 | |
|
|
281 | # @FUNCTION: gnome2_pkg_postrm |
|
|
282 | # @DESCRIPTION: |
|
|
283 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
| 124 | gnome2_pkg_postrm() { |
284 | gnome2_pkg_postrm() { |
| 125 | fdo-mime_desktop_database_update |
285 | fdo-mime_desktop_database_update |
| 126 | fdo-mime_mime_database_update |
286 | fdo-mime_mime_database_update |
| 127 | gnome2_icon_cache_update |
287 | gnome2_icon_cache_update |
| 128 | |
288 | gnome2_schemas_update |
| 129 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
| 130 | gnome2_scrollkeeper_update |
289 | gnome2_scrollkeeper_update |
| 131 | fi |
|
|
| 132 | } |
290 | } |
| 133 | |
|
|
| 134 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
|
|