1 |
# Copyright 1999-2015 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.130 2015/02/23 10:59:44 pacho Exp $ |
4 |
|
5 |
# @ECLASS: gnome2.eclass |
6 |
# @MAINTAINER: |
7 |
# gnome@gentoo.org |
8 |
# @BLURB: Provides phases for Gnome/Gtk+ based packages. |
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. |
12 |
|
13 |
inherit eutils fdo-mime libtool gnome.org gnome2-utils |
14 |
|
15 |
case "${EAPI:-0}" in |
16 |
4|5) |
17 |
EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
18 |
;; |
19 |
*) die "EAPI=${EAPI} is not supported" ;; |
20 |
esac |
21 |
|
22 |
# @ECLASS-VARIABLE: G2CONF |
23 |
# @DEFAULT_UNSET |
24 |
# @DESCRIPTION: |
25 |
# Extra configure opts passed to econf |
26 |
G2CONF=${G2CONF:-""} |
27 |
|
28 |
# @ECLASS-VARIABLE: GNOME2_LA_PUNT |
29 |
# @DESCRIPTION: |
30 |
# Should we delete ALL the .la files? |
31 |
# NOT to be used without due consideration. |
32 |
if has ${EAPI:-0} 4; then |
33 |
GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-"no"} |
34 |
else |
35 |
GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-""} |
36 |
fi |
37 |
|
38 |
# @ECLASS-VARIABLE: ELTCONF |
39 |
# @DEFAULT_UNSET |
40 |
# @DESCRIPTION: |
41 |
# Extra options passed to elibtoolize |
42 |
ELTCONF=${ELTCONF:-""} |
43 |
|
44 |
# @ECLASS-VARIABLE: DOCS |
45 |
# @DEFAULT_UNSET |
46 |
# @DESCRIPTION: |
47 |
# String containing documents passed to dodoc command. |
48 |
|
49 |
# @ECLASS-VARIABLE: GCONF_DEBUG |
50 |
# @DEFAULT_UNSET |
51 |
# @DESCRIPTION: |
52 |
# Whether to handle debug or not. |
53 |
# Some gnome applications support various levels of debugging (yes, no, minimum, |
54 |
# etc), but using --disable-debug also removes g_assert which makes debugging |
55 |
# harder. This variable should be set to yes for such packages for the eclass |
56 |
# to handle it properly. It will enable minimal debug with USE=-debug. |
57 |
# Note that this is most commonly found in configure.ac as GNOME_DEBUG_CHECK. |
58 |
|
59 |
|
60 |
if [[ ${GCONF_DEBUG} != "no" ]]; then |
61 |
IUSE="debug" |
62 |
fi |
63 |
|
64 |
# @FUNCTION: gnome2_src_unpack |
65 |
# @DESCRIPTION: |
66 |
# Stub function for old EAPI. |
67 |
gnome2_src_unpack() { |
68 |
unpack ${A} |
69 |
cd "${S}" |
70 |
} |
71 |
|
72 |
# @FUNCTION: gnome2_src_prepare |
73 |
# @DESCRIPTION: |
74 |
# Prepare environment for build, fix build of scrollkeeper documentation, |
75 |
# run elibtoolize. |
76 |
gnome2_src_prepare() { |
77 |
# Prevent assorted access violations and test failures |
78 |
gnome2_environment_reset |
79 |
|
80 |
# Prevent scrollkeeper access violations |
81 |
gnome2_omf_fix |
82 |
|
83 |
# Disable all deprecation warnings |
84 |
gnome2_disable_deprecation_warning |
85 |
|
86 |
# Run libtoolize |
87 |
# Everything is fatal EAPI 4 onwards |
88 |
nonfatal elibtoolize ${ELTCONF} |
89 |
} |
90 |
|
91 |
# @FUNCTION: gnome2_src_configure |
92 |
# @DESCRIPTION: |
93 |
# Gnome specific configure handling |
94 |
gnome2_src_configure() { |
95 |
# Update the GNOME configuration options |
96 |
if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
97 |
if use debug ; then |
98 |
G2CONF="--enable-debug=yes ${G2CONF}" |
99 |
fi |
100 |
fi |
101 |
|
102 |
# Starting with EAPI=5, we consider packages installing gtk-doc to be |
103 |
# handled by adding DEPEND="dev-util/gtk-doc-am" which provides tools to |
104 |
# relink URLs in documentation to already installed documentation. |
105 |
# This decision also greatly helps with constantly broken doc generation. |
106 |
# Remember to drop 'doc' USE flag from your package if it was only used to |
107 |
# rebuild docs. |
108 |
# Preserve old behavior for older EAPI. |
109 |
if grep -q "enable-gtk-doc" "${ECONF_SOURCE:-.}"/configure ; then |
110 |
if has ${EAPI:-0} 4 && in_iuse doc ; then |
111 |
G2CONF="$(use_enable doc gtk-doc) ${G2CONF}" |
112 |
else |
113 |
G2CONF="--disable-gtk-doc ${G2CONF}" |
114 |
fi |
115 |
fi |
116 |
|
117 |
# Pass --disable-maintainer-mode when needed |
118 |
if grep -q "^[[:space:]]*AM_MAINTAINER_MODE(\[enable\])" \ |
119 |
"${ECONF_SOURCE:-.}"/configure.*; then |
120 |
G2CONF="--disable-maintainer-mode ${G2CONF}" |
121 |
fi |
122 |
|
123 |
# Pass --disable-scrollkeeper when possible |
124 |
if grep -q "disable-scrollkeeper" "${ECONF_SOURCE:-.}"/configure; then |
125 |
G2CONF="--disable-scrollkeeper ${G2CONF}" |
126 |
fi |
127 |
|
128 |
# Pass --disable-silent-rules when possible (not needed for eapi5), bug #429308 |
129 |
if has ${EAPI:-0} 4; then |
130 |
if grep -q "disable-silent-rules" "${ECONF_SOURCE:-.}"/configure; then |
131 |
G2CONF="--disable-silent-rules ${G2CONF}" |
132 |
fi |
133 |
fi |
134 |
|
135 |
# Pass --disable-schemas-install when possible |
136 |
if grep -q "disable-schemas-install" "${ECONF_SOURCE:-.}"/configure; then |
137 |
G2CONF="--disable-schemas-install ${G2CONF}" |
138 |
fi |
139 |
|
140 |
# Pass --disable-schemas-compile when possible |
141 |
if grep -q "disable-schemas-compile" "${ECONF_SOURCE:-.}"/configure; then |
142 |
G2CONF="--disable-schemas-compile ${G2CONF}" |
143 |
fi |
144 |
|
145 |
# Pass --enable-compile-warnings=minimum as we don't want -Werror* flags, bug #471336 |
146 |
if grep -q "enable-compile-warnings" "${ECONF_SOURCE:-.}"/configure; then |
147 |
G2CONF="--enable-compile-warnings=minimum ${G2CONF}" |
148 |
fi |
149 |
|
150 |
# Pass --docdir with proper directory, bug #482646 |
151 |
if grep -q "^ *--docdir=" "${ECONF_SOURCE:-.}"/configure; then |
152 |
G2CONF="--docdir="${EPREFIX}"/usr/share/doc/${PF} ${G2CONF}" |
153 |
fi |
154 |
|
155 |
# Avoid sandbox violations caused by gnome-vfs (bug #128289 and #345659) |
156 |
addwrite "$(unset HOME; echo ~)/.gnome2" |
157 |
|
158 |
econf ${G2CONF} "$@" |
159 |
} |
160 |
|
161 |
# @FUNCTION: gnome2_src_compile |
162 |
# @DESCRIPTION: |
163 |
# Only default src_compile for now |
164 |
gnome2_src_compile() { |
165 |
emake |
166 |
} |
167 |
|
168 |
# @FUNCTION: gnome2_src_install |
169 |
# @DESCRIPTION: |
170 |
# Gnome specific install. Handles typical GConf and scrollkeeper setup |
171 |
# in packages and removal of .la files if requested |
172 |
gnome2_src_install() { |
173 |
# if this is not present, scrollkeeper-update may segfault and |
174 |
# create bogus directories in /var/lib/ |
175 |
local sk_tmp_dir="/var/lib/scrollkeeper" |
176 |
dodir "${sk_tmp_dir}" || die "dodir failed" |
177 |
|
178 |
# we must delay gconf schema installation due to sandbox |
179 |
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
180 |
|
181 |
debug-print "Installing with 'make install'" |
182 |
emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
183 |
|
184 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
185 |
|
186 |
# Handle documentation as 'default' for eapi5 and newer, bug #373131 |
187 |
if has ${EAPI:-0} 4; then |
188 |
# Manual document installation |
189 |
if [[ -n "${DOCS}" ]]; then |
190 |
dodoc ${DOCS} || die "dodoc failed" |
191 |
fi |
192 |
else |
193 |
einstalldocs |
194 |
fi |
195 |
|
196 |
# Do not keep /var/lib/scrollkeeper because: |
197 |
# 1. The scrollkeeper database is regenerated at pkg_postinst() |
198 |
# 2. ${ED}/var/lib/scrollkeeper contains only indexes for the current pkg |
199 |
# thus it makes no sense if pkg_postinst ISN'T run for some reason. |
200 |
rm -rf "${ED}${sk_tmp_dir}" |
201 |
rmdir "${ED}/var/lib" 2>/dev/null |
202 |
rmdir "${ED}/var" 2>/dev/null |
203 |
|
204 |
# Make sure this one doesn't get in the portage db |
205 |
rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
206 |
|
207 |
# Delete all .la files |
208 |
if has ${EAPI:-0} 4; then |
209 |
if [[ "${GNOME2_LA_PUNT}" != "no" ]]; then |
210 |
ebegin "Removing .la files" |
211 |
if ! use_if_iuse static-libs ; then |
212 |
find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" |
213 |
fi |
214 |
eend |
215 |
fi |
216 |
else |
217 |
case "${GNOME2_LA_PUNT}" in |
218 |
yes) prune_libtool_files --modules;; |
219 |
no) ;; |
220 |
*) prune_libtool_files;; |
221 |
esac |
222 |
fi |
223 |
} |
224 |
|
225 |
# @FUNCTION: gnome2_pkg_preinst |
226 |
# @DESCRIPTION: |
227 |
# Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
228 |
gnome2_pkg_preinst() { |
229 |
gnome2_gconf_savelist |
230 |
gnome2_icon_savelist |
231 |
gnome2_schemas_savelist |
232 |
gnome2_scrollkeeper_savelist |
233 |
gnome2_gdk_pixbuf_savelist |
234 |
} |
235 |
|
236 |
# @FUNCTION: gnome2_pkg_postinst |
237 |
# @DESCRIPTION: |
238 |
# Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
239 |
# database updates. |
240 |
gnome2_pkg_postinst() { |
241 |
gnome2_gconf_install |
242 |
fdo-mime_desktop_database_update |
243 |
fdo-mime_mime_database_update |
244 |
gnome2_icon_cache_update |
245 |
gnome2_schemas_update |
246 |
gnome2_scrollkeeper_update |
247 |
gnome2_gdk_pixbuf_update |
248 |
} |
249 |
|
250 |
# # FIXME Handle GConf schemas removal |
251 |
#gnome2_pkg_prerm() { |
252 |
# gnome2_gconf_uninstall |
253 |
#} |
254 |
|
255 |
# @FUNCTION: gnome2_pkg_postrm |
256 |
# @DESCRIPTION: |
257 |
# Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
258 |
gnome2_pkg_postrm() { |
259 |
fdo-mime_desktop_database_update |
260 |
fdo-mime_mime_database_update |
261 |
gnome2_icon_cache_update |
262 |
gnome2_schemas_update |
263 |
gnome2_scrollkeeper_update |
264 |
} |