1 |
eva |
1.105 |
# Copyright 1999-2012 Gentoo Foundation |
2 |
blocke |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
eva |
1.108 |
# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.107 2012/09/27 16:35:41 axs Exp $ |
4 |
leonardop |
1.77 |
|
5 |
eva |
1.91 |
# @ECLASS: gnome2.eclass |
6 |
|
|
# @MAINTAINER: |
7 |
|
|
# gnome@gentoo.org |
8 |
|
|
# @BLURB: |
9 |
|
|
# @DESCRIPTION: |
10 |
leonardop |
1.77 |
# Exports portage base functions used by ebuilds written for packages using the |
11 |
leonardop |
1.78 |
# GNOME framework. For additional functions, see gnome2-utils.eclass. |
12 |
blocke |
1.2 |
|
13 |
compnerd |
1.80 |
inherit fdo-mime libtool gnome.org gnome2-utils |
14 |
blocke |
1.1 |
|
15 |
dang |
1.86 |
case "${EAPI:-0}" in |
16 |
|
|
0|1) |
17 |
|
|
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
18 |
|
|
;; |
19 |
axs |
1.107 |
2|3|4|5) |
20 |
dang |
1.86 |
EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
21 |
|
|
;; |
22 |
eva |
1.90 |
*) die "EAPI=${EAPI} is not supported" ;; |
23 |
dang |
1.86 |
esac |
24 |
leonardop |
1.77 |
|
25 |
eva |
1.91 |
# @ECLASS-VARIABLE: G2CONF |
26 |
|
|
# @DEFAULT-UNSET |
27 |
|
|
# @DESCRIPTION: |
28 |
allanonjl |
1.63 |
# Extra configure opts passed to econf |
29 |
compnerd |
1.81 |
G2CONF=${G2CONF:-""} |
30 |
spider |
1.19 |
|
31 |
eva |
1.95 |
# @ECLASS-VARIABLE: GNOME2_LA_PUNT |
32 |
|
|
# @DESCRIPTION: |
33 |
|
|
# Should we delete all the .la files? |
34 |
|
|
# NOT to be used without due consideration. |
35 |
|
|
GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-"no"} |
36 |
|
|
|
37 |
eva |
1.91 |
# @ECLASS-VARIABLE: ELTCONF |
38 |
|
|
# @DEFAULT-UNSET |
39 |
|
|
# @DESCRIPTION: |
40 |
allanonjl |
1.63 |
# Extra options passed to elibtoolize |
41 |
compnerd |
1.81 |
ELTCONF=${ELTCONF:-""} |
42 |
leonardop |
1.59 |
|
43 |
eva |
1.91 |
# @ECLASS-VARIABLE: USE_EINSTALL |
44 |
|
|
# @DEFAULT-UNSET |
45 |
|
|
# @DEPRECATED |
46 |
|
|
# @DESCRIPTION: |
47 |
allanonjl |
1.63 |
# Should we use EINSTALL instead of DESTDIR |
48 |
compnerd |
1.81 |
USE_EINSTALL=${USE_EINSTALL:-""} |
49 |
leonardop |
1.59 |
|
50 |
eva |
1.93 |
# @ECLASS-VARIABLE: SCROLLKEEPER_UPDATE |
51 |
eva |
1.91 |
# @DEPRECATED |
52 |
|
|
# @DESCRIPTION: |
53 |
|
|
# Whether to run scrollkeeper for this package or not. |
54 |
compnerd |
1.81 |
SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
55 |
leonardop |
1.59 |
|
56 |
eva |
1.91 |
# @ECLASS-VARIABLE: DOCS |
57 |
|
|
# @DEFAULT-UNSET |
58 |
|
|
# @DESCRIPTION: |
59 |
|
|
# String containing documents passed to dodoc command. |
60 |
|
|
|
61 |
|
|
# @ECLASS-VARIABLE: GCONF_DEBUG |
62 |
|
|
# @DEFAULT_UNSET |
63 |
|
|
# @DESCRIPTION: |
64 |
|
|
# Whether to handle debug or not. |
65 |
|
|
# Some gnome applications support various levels of debugging (yes, no, minimum, |
66 |
|
|
# etc), but using --disable-debug also removes g_assert which makes debugging |
67 |
|
|
# harder. This variable should be set to yes for such packages for the eclass |
68 |
|
|
# to handle it properly. It will enable minimal debug with USE=-debug. |
69 |
|
|
# Note that this is most commonly found in configure.ac as GNOME_DEBUG_CHECK. |
70 |
leonardop |
1.59 |
|
71 |
foser |
1.56 |
|
72 |
allanonjl |
1.71 |
if [[ ${GCONF_DEBUG} != "no" ]]; then |
73 |
|
|
IUSE="debug" |
74 |
|
|
fi |
75 |
blocke |
1.1 |
|
76 |
leonardop |
1.78 |
|
77 |
eva |
1.91 |
# @FUNCTION: gnome2_src_unpack |
78 |
|
|
# @DESCRIPTION: |
79 |
|
|
# Stub function for old EAPI. |
80 |
allanonjl |
1.63 |
gnome2_src_unpack() { |
81 |
|
|
unpack ${A} |
82 |
eva |
1.83 |
cd "${S}" |
83 |
dang |
1.86 |
has ${EAPI:-0} 0 1 && gnome2_src_prepare |
84 |
|
|
} |
85 |
foser |
1.45 |
|
86 |
eva |
1.91 |
# @FUNCTION: gnome2_src_prepare |
87 |
|
|
# @DESCRIPTION: |
88 |
ford_prefect |
1.100 |
# Prepare environment for build, fix build of scrollkeeper documentation, |
89 |
|
|
# run elibtoolize. |
90 |
dang |
1.86 |
gnome2_src_prepare() { |
91 |
tetromino |
1.103 |
# Prevent assorted access violations and test failures |
92 |
|
|
gnome2_environment_reset |
93 |
ford_prefect |
1.100 |
|
94 |
allanonjl |
1.63 |
# Prevent scrollkeeper access violations |
95 |
|
|
gnome2_omf_fix |
96 |
compnerd |
1.81 |
|
97 |
eva |
1.108 |
# Disable all deprecation warnings |
98 |
|
|
gnome2_disable_deprecation_warning |
99 |
|
|
|
100 |
compnerd |
1.81 |
# Run libtoolize |
101 |
eva |
1.94 |
if has ${EAPI:-0} 0 1 2 3; then |
102 |
|
|
elibtoolize ${ELTCONF} |
103 |
|
|
else |
104 |
|
|
# Everything is fatal EAPI 4 onwards |
105 |
|
|
nonfatal elibtoolize ${ELTCONF} |
106 |
|
|
fi |
107 |
|
|
|
108 |
allanonjl |
1.63 |
} |
109 |
foser |
1.45 |
|
110 |
eva |
1.91 |
# @FUNCTION: gnome2_src_configure |
111 |
|
|
# @DESCRIPTION: |
112 |
|
|
# Gnome specific configure handling |
113 |
allanonjl |
1.63 |
gnome2_src_configure() { |
114 |
|
|
# Update the GNOME configuration options |
115 |
allanonjl |
1.72 |
if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
116 |
|
|
if use debug ; then |
117 |
|
|
G2CONF="${G2CONF} --enable-debug=yes" |
118 |
|
|
fi |
119 |
allanonjl |
1.71 |
fi |
120 |
compnerd |
1.76 |
|
121 |
|
|
# Prevent a QA warning |
122 |
ssuominen |
1.97 |
if has doc ${IUSE} ; then |
123 |
pacho |
1.106 |
grep -q "enable-gtk-doc" configure && G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
124 |
compnerd |
1.76 |
fi |
125 |
blocke |
1.1 |
|
126 |
pacho |
1.102 |
# Pass --disable-maintainer-mode when needed |
127 |
|
|
if grep -q "^[[:space:]]*AM_MAINTAINER_MODE(\[enable\])" configure.*; then |
128 |
|
|
G2CONF="${G2CONF} --disable-maintainer-mode" |
129 |
|
|
fi |
130 |
|
|
|
131 |
eva |
1.105 |
# Pass --disable-scrollkeeper when possible |
132 |
|
|
if grep -q "disable-scrollkeeper" configure; then |
133 |
|
|
G2CONF="${G2CONF} --disable-scrollkeeper" |
134 |
|
|
fi |
135 |
|
|
|
136 |
zmedico |
1.98 |
# Avoid sandbox violations caused by gnome-vfs (bug #128289 and #345659) |
137 |
|
|
addwrite "$(unset HOME; echo ~)/.gnome2" |
138 |
allanonjl |
1.70 |
|
139 |
ford_prefect |
1.100 |
econf "$@" ${G2CONF} |
140 |
blocke |
1.9 |
} |
141 |
|
|
|
142 |
eva |
1.91 |
# @FUNCTION: gnome2_src_compile |
143 |
|
|
# @DESCRIPTION: |
144 |
|
|
# Stub function for old EAPI. |
145 |
blocke |
1.9 |
gnome2_src_compile() { |
146 |
dang |
1.86 |
has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
147 |
blocke |
1.1 |
emake || die "compile failure" |
148 |
|
|
} |
149 |
|
|
|
150 |
eva |
1.91 |
# @FUNCTION: gnome2_src_install |
151 |
|
|
# @DESCRIPTION: |
152 |
|
|
# Gnome specific install. Handles typical GConf and scrollkeeper setup |
153 |
eva |
1.95 |
# in packages and removal of .la files if requested |
154 |
blocke |
1.1 |
gnome2_src_install() { |
155 |
abcd |
1.87 |
has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
156 |
azarah |
1.22 |
# if this is not present, scrollkeeper-update may segfault and |
157 |
|
|
# create bogus directories in /var/lib/ |
158 |
leonardop |
1.77 |
local sk_tmp_dir="/var/lib/scrollkeeper" |
159 |
eva |
1.89 |
dodir "${sk_tmp_dir}" || die "dodir failed" |
160 |
blocke |
1.1 |
|
161 |
blocke |
1.8 |
# we must delay gconf schema installation due to sandbox |
162 |
blocke |
1.3 |
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
163 |
|
|
|
164 |
allanonjl |
1.63 |
if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
165 |
leonardop |
1.77 |
debug-print "Installing with 'make install'" |
166 |
abcd |
1.87 |
emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
167 |
liquidx |
1.30 |
else |
168 |
leonardop |
1.77 |
debug-print "Installing with 'einstall'" |
169 |
abcd |
1.87 |
einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
170 |
liquidx |
1.30 |
fi |
171 |
blocke |
1.1 |
|
172 |
blocke |
1.10 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
173 |
|
|
|
174 |
allanonjl |
1.63 |
# Manual document installation |
175 |
eva |
1.89 |
if [[ -n "${DOCS}" ]]; then |
176 |
|
|
dodoc ${DOCS} || die "dodoc failed" |
177 |
|
|
fi |
178 |
liquidx |
1.30 |
|
179 |
allanonjl |
1.63 |
# Do not keep /var/lib/scrollkeeper because: |
180 |
leonardop |
1.77 |
# 1. The scrollkeeper database is regenerated at pkg_postinst() |
181 |
abcd |
1.87 |
# 2. ${ED}/var/lib/scrollkeeper contains only indexes for the current pkg |
182 |
liquidx |
1.30 |
# thus it makes no sense if pkg_postinst ISN'T run for some reason. |
183 |
abcd |
1.87 |
rm -rf "${ED}${sk_tmp_dir}" |
184 |
eva |
1.105 |
rmdir "${ED}/var/lib" 2>/dev/null |
185 |
|
|
rmdir "${ED}/var" 2>/dev/null |
186 |
foser |
1.45 |
|
187 |
allanonjl |
1.63 |
# Make sure this one doesn't get in the portage db |
188 |
abcd |
1.87 |
rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
189 |
eva |
1.95 |
|
190 |
|
|
# Delete all .la files |
191 |
|
|
if [[ "${GNOME2_LA_PUNT}" != "no" ]]; then |
192 |
|
|
ebegin "Removing .la files" |
193 |
nirbheek |
1.99 |
if ! { has static-libs ${IUSE//+} && use static-libs; }; then |
194 |
|
|
find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" |
195 |
|
|
fi |
196 |
eva |
1.95 |
eend |
197 |
|
|
fi |
198 |
spider |
1.20 |
} |
199 |
|
|
|
200 |
eva |
1.91 |
# @FUNCTION: gnome2_pkg_preinst |
201 |
|
|
# @DESCRIPTION: |
202 |
|
|
# Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
203 |
remi |
1.84 |
gnome2_pkg_preinst() { |
204 |
|
|
gnome2_gconf_savelist |
205 |
remi |
1.85 |
gnome2_icon_savelist |
206 |
eva |
1.88 |
gnome2_schemas_savelist |
207 |
eva |
1.105 |
gnome2_scrollkeeper_savelist |
208 |
remi |
1.84 |
} |
209 |
|
|
|
210 |
eva |
1.91 |
# @FUNCTION: gnome2_pkg_postinst |
211 |
|
|
# @DESCRIPTION: |
212 |
|
|
# Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
213 |
|
|
# database updates. |
214 |
liquidx |
1.30 |
gnome2_pkg_postinst() { |
215 |
|
|
gnome2_gconf_install |
216 |
foser |
1.45 |
fdo-mime_desktop_database_update |
217 |
|
|
fdo-mime_mime_database_update |
218 |
leonardop |
1.54 |
gnome2_icon_cache_update |
219 |
eva |
1.88 |
gnome2_schemas_update |
220 |
eva |
1.105 |
gnome2_scrollkeeper_update |
221 |
liquidx |
1.30 |
} |
222 |
|
|
|
223 |
eva |
1.91 |
# @#FUNCTION: gnome2_pkg_prerm |
224 |
|
|
# @#DESCRIPTION: |
225 |
|
|
# # FIXME Handle GConf schemas removal |
226 |
foser |
1.40 |
#gnome2_pkg_prerm() { |
227 |
|
|
# gnome2_gconf_uninstall |
228 |
|
|
#} |
229 |
foser |
1.39 |
|
230 |
eva |
1.91 |
# @FUNCTION: gnome2_pkg_postrm |
231 |
|
|
# @DESCRIPTION: |
232 |
|
|
# Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
233 |
liquidx |
1.30 |
gnome2_pkg_postrm() { |
234 |
foser |
1.45 |
fdo-mime_desktop_database_update |
235 |
|
|
fdo-mime_mime_database_update |
236 |
leonardop |
1.54 |
gnome2_icon_cache_update |
237 |
tetromino |
1.104 |
gnome2_schemas_update |
238 |
eva |
1.105 |
gnome2_scrollkeeper_update |
239 |
liquidx |
1.30 |
} |