1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
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.11 2002/06/11 21:27:15 spider Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.119 2013/01/16 22:52:37 eva Exp $ |
4 | |
4 | |
5 | inherit libtool |
5 | # @ECLASS: gnome2.eclass |
6 | inherit debug |
6 | # @MAINTAINER: |
7 | # Authors: |
7 | # gnome@gentoo.org |
8 | # Bruce A. Locke <blocke@shivan.org> |
8 | # @BLURB: Provides phases for Gnome/Gtk+ based packages. |
9 | # Spidler <spidler@gentoo.org> |
9 | # @DESCRIPTION: |
|
|
10 | # Exports portage base functions used by ebuilds written for packages using the |
|
|
11 | # GNOME framework. For additional functions, see gnome2-utils.eclass. |
10 | |
12 | |
11 | # Gnome 2 ECLASS |
13 | inherit eutils fdo-mime libtool gnome.org gnome2-utils |
12 | ECLASS="gnome2" |
|
|
13 | |
14 | |
14 | G2CONF="--enable-debug=yes" |
15 | case "${EAPI:-0}" in |
15 | SCROLLKEEPER_UPDATE="0" |
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 |
16 | |
24 | |
|
|
25 | # @ECLASS-VARIABLE: G2CONF |
|
|
26 | # @DEFAULT_UNSET |
|
|
27 | # @DESCRIPTION: |
|
|
28 | # Extra configure opts passed to econf |
|
|
29 | G2CONF=${G2CONF:-""} |
|
|
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: |
|
|
44 | # Extra options passed to elibtoolize |
|
|
45 | ELTCONF=${ELTCONF:-""} |
|
|
46 | |
|
|
47 | # @ECLASS-VARIABLE: USE_EINSTALL |
|
|
48 | # @DEFAULT_UNSET |
|
|
49 | # @DESCRIPTION: |
|
|
50 | # Should we use EINSTALL instead of DESTDIR. DEPRECATED |
|
|
51 | USE_EINSTALL=${USE_EINSTALL:-""} |
|
|
52 | |
|
|
53 | # @ECLASS-VARIABLE: SCROLLKEEPER_UPDATE |
|
|
54 | # @DESCRIPTION: |
|
|
55 | # Whether to run scrollkeeper for this package or not. DEPRECATED |
|
|
56 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
|
|
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. |
|
|
72 | |
|
|
73 | |
|
|
74 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
|
|
75 | IUSE="debug" |
|
|
76 | fi |
|
|
77 | |
|
|
78 | |
|
|
79 | # @FUNCTION: gnome2_src_unpack |
|
|
80 | # @DESCRIPTION: |
|
|
81 | # Stub function for old EAPI. |
|
|
82 | gnome2_src_unpack() { |
|
|
83 | unpack ${A} |
|
|
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 |
|
|
95 | |
|
|
96 | # Prevent scrollkeeper access violations |
|
|
97 | gnome2_omf_fix |
|
|
98 | |
|
|
99 | # Disable all deprecation warnings |
|
|
100 | gnome2_disable_deprecation_warning |
|
|
101 | |
|
|
102 | # Run libtoolize |
|
|
103 | if has ${EAPI:-0} 0 1 2 3; then |
|
|
104 | elibtoolize ${ELTCONF} |
|
|
105 | else |
|
|
106 | # Everything is fatal EAPI 4 onwards |
|
|
107 | nonfatal elibtoolize ${ELTCONF} |
|
|
108 | fi |
|
|
109 | |
|
|
110 | } |
|
|
111 | |
|
|
112 | # @FUNCTION: gnome2_src_configure |
|
|
113 | # @DESCRIPTION: |
|
|
114 | # Gnome specific configure handling |
17 | gnome2_src_configure() { |
115 | gnome2_src_configure() { |
18 | elibtoolize |
116 | # Update the GNOME configuration options |
19 | # doc keyword for gtk-doc |
117 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
20 | use doc && G2CONF="${G2CONF} --enable-gtk-doc" || G2CONF="${G2CONF} --disable-gtk-doc" |
118 | if use debug ; then |
|
|
119 | G2CONF="--enable-debug=yes ${G2CONF}" |
|
|
120 | fi |
|
|
121 | fi |
21 | |
122 | |
22 | econf ${1} ${G2CONF} || die "./configure failure" |
123 | # Starting with EAPI=5, we consider packages installing gtk-doc to be |
|
|
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 |
|
|
132 | G2CONF="$(use_enable doc gtk-doc) ${G2CONF}" |
|
|
133 | else |
|
|
134 | G2CONF="--disable-gtk-doc ${G2CONF}" |
|
|
135 | fi |
|
|
136 | fi |
23 | |
137 | |
24 | } |
138 | # Pass --disable-maintainer-mode when needed |
|
|
139 | if grep -q "^[[:space:]]*AM_MAINTAINER_MODE(\[enable\])" \ |
|
|
140 | ${ECONF_SOURCE:-.}/configure.*; then |
|
|
141 | G2CONF="--disable-maintainer-mode ${G2CONF}" |
|
|
142 | fi |
25 | |
143 | |
|
|
144 | # Pass --disable-scrollkeeper when possible |
|
|
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} "$@" |
|
|
170 | } |
|
|
171 | |
|
|
172 | # @FUNCTION: gnome2_src_compile |
|
|
173 | # @DESCRIPTION: |
|
|
174 | # Stub function for old EAPI. |
26 | gnome2_src_compile() { |
175 | gnome2_src_compile() { |
27 | |
176 | has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
28 | gnome2_src_configure ${1} |
|
|
29 | emake || die "compile failure" |
177 | emake || die "compile failure" |
30 | |
|
|
31 | } |
178 | } |
32 | |
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 |
33 | gnome2_src_install() { |
184 | gnome2_src_install() { |
|
|
185 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
|
|
186 | # if this is not present, scrollkeeper-update may segfault and |
|
|
187 | # create bogus directories in /var/lib/ |
|
|
188 | local sk_tmp_dir="/var/lib/scrollkeeper" |
|
|
189 | dodir "${sk_tmp_dir}" || die "dodir failed" |
34 | |
190 | |
35 | # we must delay gconf schema installation due to sandbox |
191 | # we must delay gconf schema installation due to sandbox |
36 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
192 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
37 | |
193 | |
38 | einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ ${1}" |
194 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
|
|
195 | debug-print "Installing with 'make install'" |
|
|
196 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
|
|
197 | else |
|
|
198 | debug-print "Installing with 'einstall'" |
|
|
199 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
|
|
200 | fi |
39 | |
201 | |
40 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
202 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
41 | |
203 | |
|
|
204 | # Handle documentation as 'default' for eapi5 and newer, bug #373131 |
|
|
205 | if has ${EAPI:-0} 0 1 2 3 4; then |
42 | # manual document installation |
206 | # Manual document installation |
43 | if [ -n "${DOCS}" ] |
207 | if [[ -n "${DOCS}" ]]; then |
44 | 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 |
|
|
215 | [[ -s "${d}" ]] && dodoc "${d}" |
|
|
216 | done |
|
|
217 | elif declare -p DOCS | grep -q '^declare -a' ; then |
|
|
218 | dodoc "${DOCS[@]}" |
|
|
219 | else |
45 | dodoc ${DOCS} |
220 | dodoc ${DOCS} |
46 | fi |
221 | fi |
|
|
222 | fi |
47 | |
223 | |
48 | # only update scrollkeeper if this package needs it |
224 | # Do not keep /var/lib/scrollkeeper because: |
49 | [ -d ${D}/var/lib/scrollkeeper ] && SCROLLKEEPER_UPDATE="1" |
225 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
|
|
226 | # 2. ${ED}/var/lib/scrollkeeper contains only indexes for the current pkg |
|
|
227 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
|
|
228 | rm -rf "${ED}${sk_tmp_dir}" |
|
|
229 | rmdir "${ED}/var/lib" 2>/dev/null |
|
|
230 | rmdir "${ED}/var" 2>/dev/null |
50 | |
231 | |
51 | } |
232 | # Make sure this one doesn't get in the portage db |
|
|
233 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
52 | |
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. |
53 | gnome2_pkg_postinst() { |
267 | gnome2_pkg_postinst() { |
54 | |
268 | gnome2_gconf_install |
55 | # schema installation |
269 | fdo-mime_desktop_database_update |
56 | if [ -n "${SCHEMAS}" ] |
270 | fdo-mime_mime_database_update |
57 | then |
271 | gnome2_icon_cache_update |
58 | |
272 | gnome2_schemas_update |
59 | # install/update schemas the hard way |
273 | gnome2_scrollkeeper_update |
60 | export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` |
|
|
61 | |
|
|
62 | echo ">>> Updating GConf2 Schemas for ${P}" |
|
|
63 | for x in $SCHEMAS |
|
|
64 | do |
|
|
65 | /usr/bin/gconftool-2 --makefile-install-rule \ |
|
|
66 | /etc/gconf/schemas/${x} |
|
|
67 | done |
|
|
68 | fi |
|
|
69 | |
|
|
70 | if [ -x /usr/bin/scrollkeeper-update ] && [ SCROLLKEEPER_UPDATE = "1" ] |
|
|
71 | then |
|
|
72 | echo ">>> Updating Scrollkeeper" |
|
|
73 | scrollkeeper-update -p /var/lib/scrollkeeper |
|
|
74 | fi |
|
|
75 | } |
274 | } |
76 | |
275 | |
77 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst |
276 | # # FIXME Handle GConf schemas removal |
|
|
277 | #gnome2_pkg_prerm() { |
|
|
278 | # gnome2_gconf_uninstall |
|
|
279 | #} |
78 | |
280 | |
79 | |
281 | # @FUNCTION: gnome2_pkg_postrm |
|
|
282 | # @DESCRIPTION: |
|
|
283 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
|
|
284 | gnome2_pkg_postrm() { |
|
|
285 | fdo-mime_desktop_database_update |
|
|
286 | fdo-mime_mime_database_update |
|
|
287 | gnome2_icon_cache_update |
|
|
288 | gnome2_schemas_update |
|
|
289 | gnome2_scrollkeeper_update |
|
|
290 | } |