1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2006 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.77 2006/12/12 02:58:22 leonardop Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.78 2006/12/13 02:27:48 leonardop Exp $ |
4 | |
4 | |
5 | # |
5 | # |
6 | # gnome2.eclass |
6 | # gnome2.eclass |
7 | # |
7 | # |
8 | # Exports portage base functions used by ebuilds written for packages using the |
8 | # Exports portage base functions used by ebuilds written for packages using the |
9 | # GNOME framework. |
9 | # GNOME framework. For additional functions, see gnome2-utils.eclass. |
10 | # |
10 | # |
11 | # Maintained by Gentoo's GNOME herd <gnome@gentoo.org> |
11 | # Maintained by Gentoo's GNOME herd <gnome@gentoo.org> |
12 | # |
12 | # |
13 | |
13 | |
14 | |
14 | |
15 | inherit libtool gnome.org debug fdo-mime eutils |
15 | inherit debug fdo-mime libtool gnome.org gnome2-utils |
16 | |
16 | |
17 | |
17 | |
18 | # Extra configure opts passed to econf |
18 | # Extra configure opts passed to econf |
19 | G2CONF=${G2CONF:=""} |
19 | G2CONF=${G2CONF:=""} |
20 | |
20 | |
… | |
… | |
25 | USE_EINSTALL=${USE_EINSTALL:=""} |
25 | USE_EINSTALL=${USE_EINSTALL:=""} |
26 | |
26 | |
27 | # Run scrollkeeper for this package? |
27 | # Run scrollkeeper for this package? |
28 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:="1"} |
28 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:="1"} |
29 | |
29 | |
30 | # Directory where scrollkeeper-update should do its work |
|
|
31 | SCROLLKEEPER_DIR=${SCROLLKEEPER_DIR:="${ROOT}var/lib/scrollkeeper"} |
|
|
32 | |
30 | |
33 | # Path to scrollkeeper-update |
|
|
34 | SCROLLKEEPER_UPDATE_BIN=${SCROLLKEEPER_UPDATE_BIN:="${ROOT}usr/bin/scrollkeeper-update"} |
|
|
35 | |
|
|
36 | # Path to gconftool-2 |
|
|
37 | GCONFTOOL_BIN=${GCONFTOOL_BIN:="${ROOT}usr/bin/gconftool-2"} |
|
|
38 | |
31 | |
39 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
32 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
40 | IUSE="debug" |
33 | IUSE="debug" |
41 | fi |
34 | fi |
42 | |
35 | |
43 | DEPEND=">=sys-apps/sed-4" |
36 | |
44 | |
37 | |
45 | gnome2_src_unpack() { |
38 | gnome2_src_unpack() { |
46 | unpack ${A} |
39 | unpack ${A} |
47 | cd ${S} |
40 | cd ${S} |
48 | |
41 | |
… | |
… | |
111 | |
104 | |
112 | # Make sure this one doesn't get in the portage db |
105 | # Make sure this one doesn't get in the portage db |
113 | rm -fr "${D}/usr/share/applications/mimeinfo.cache" |
106 | rm -fr "${D}/usr/share/applications/mimeinfo.cache" |
114 | } |
107 | } |
115 | |
108 | |
116 | |
|
|
117 | |
|
|
118 | # Applies any schema files installed by the current ebuild to Gconf's database |
|
|
119 | # using gconftool-2 |
|
|
120 | gnome2_gconf_install() { |
|
|
121 | if [[ ! -x ${GCONFTOOL_BIN} ]]; then |
|
|
122 | return |
|
|
123 | fi |
|
|
124 | |
|
|
125 | # We are ready to install the GCONF Scheme now |
|
|
126 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
127 | export GCONF_CONFIG_SOURCE=$(${GCONFTOOL_BIN} --get-default-source) |
|
|
128 | |
|
|
129 | einfo "Installing GNOME 2 GConf schemas" |
|
|
130 | |
|
|
131 | local contents="${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS" |
|
|
132 | local F |
|
|
133 | |
|
|
134 | for F in $(grep "^obj /etc/gconf/schemas/.\+\.schemas\b" ${contents} | gawk '{print $2}' ); do |
|
|
135 | if [[ -e "${F}" ]]; then |
|
|
136 | # echo "DEBUG::gconf install ${F}" |
|
|
137 | ${GCONFTOOL_BIN} --makefile-install-rule ${F} 1>/dev/null |
|
|
138 | fi |
|
|
139 | done |
|
|
140 | |
|
|
141 | # have gconf reload the new schemas |
|
|
142 | ebegin "Reloading GConf schemas" |
|
|
143 | killall -HUP gconfd-2 |
|
|
144 | eend $? |
|
|
145 | } |
|
|
146 | |
|
|
147 | # Removes schema files previously installed by the current ebuild from Gconf's |
|
|
148 | # database. |
|
|
149 | gnome2_gconf_uninstall() { |
|
|
150 | if [[ ! -x ${GCONFTOOL_BIN} ]]; then |
|
|
151 | return |
|
|
152 | fi |
|
|
153 | |
|
|
154 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
155 | export GCONF_CONFIG_SOURCE=$(${GCONFTOOL_BIN} --get-default-source) |
|
|
156 | |
|
|
157 | einfo "Uninstalling GNOME 2 GConf schemas" |
|
|
158 | |
|
|
159 | local contents="${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS" |
|
|
160 | local F |
|
|
161 | |
|
|
162 | for F in $(grep "obj /etc/gconf/schemas" ${contents} | sed 's:obj \([^ ]*\) .*:\1:' ); do |
|
|
163 | # echo "DEBUG::gconf install ${F}" |
|
|
164 | ${GCONFTOOL_BIN} --makefile-uninstall-rule ${F} 1>/dev/null |
|
|
165 | done |
|
|
166 | } |
|
|
167 | |
|
|
168 | # Updates Gtk+ icon cache files under /usr/share/icons if the current ebuild |
|
|
169 | # have installed anything under that location. |
|
|
170 | gnome2_icon_cache_update() { |
|
|
171 | local updater=$(type -p gtk-update-icon-cache 2> /dev/null) |
|
|
172 | |
|
|
173 | if [[ ! -x ${updater} ]] ; then |
|
|
174 | debug-print "${updater} is not executable" |
|
|
175 | |
|
|
176 | return |
|
|
177 | fi |
|
|
178 | |
|
|
179 | if ! grep -q "obj /usr/share/icons" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS |
|
|
180 | then |
|
|
181 | debug-print "No items to update" |
|
|
182 | |
|
|
183 | return |
|
|
184 | fi |
|
|
185 | |
|
|
186 | ebegin "Updating icons cache" |
|
|
187 | |
|
|
188 | local retval=0 |
|
|
189 | local fails=( ) |
|
|
190 | |
|
|
191 | for dir in $(find ${ROOT}/usr/share/icons -maxdepth 1 -mindepth 1 -type d) |
|
|
192 | do |
|
|
193 | if [[ -f "${dir}/index.theme" ]] ; then |
|
|
194 | local rv=0 |
|
|
195 | |
|
|
196 | ${updater} -qf ${dir} |
|
|
197 | rv=$? |
|
|
198 | |
|
|
199 | if [[ ! $rv -eq 0 ]] ; then |
|
|
200 | debug-print "Updating cache failed on ${dir}" |
|
|
201 | |
|
|
202 | # Add to the list of failures |
|
|
203 | fails[$(( ${#fails[@]} + 1 ))]=$dir |
|
|
204 | |
|
|
205 | retval=2 |
|
|
206 | fi |
|
|
207 | fi |
|
|
208 | done |
|
|
209 | |
|
|
210 | eend ${retval} |
|
|
211 | |
|
|
212 | for (( i = 0 ; i < ${#fails[@]} ; i++ )) ; do |
|
|
213 | ### HACK!! This is needed until bash 3.1 is unmasked. |
|
|
214 | ## The current stable version of bash lists the sizeof fails to be 1 |
|
|
215 | ## when there are no elements in the list because it is declared local. |
|
|
216 | ## In order to prevent the declaration from being in global scope, we |
|
|
217 | ## this hack to prevent an empty error message being printed for stable |
|
|
218 | ## users. -- compnerd && allanonjl |
|
|
219 | if [[ "${fails[i]}" != "" && "${fails[i]}" != "()" ]] ; then |
|
|
220 | eerror "Failed to update cache with icon ${fails[i]}" |
|
|
221 | fi |
|
|
222 | done |
|
|
223 | } |
|
|
224 | |
|
|
225 | # Workaround applied to Makefile rules in order to remove redundant |
|
|
226 | # calls to scrollkeeper-update and sandbox violations. |
|
|
227 | gnome2_omf_fix() { |
|
|
228 | local omf_makefiles filename |
|
|
229 | |
|
|
230 | omf_makefiles="$@" |
|
|
231 | |
|
|
232 | if [[ -f ${S}/omf.make ]] ; then |
|
|
233 | omf_makefiles="${omf_makefiles} ${S}/omf.make" |
|
|
234 | fi |
|
|
235 | |
|
|
236 | # testing fixing of all makefiles found |
|
|
237 | for filename in $(find ./ -name "Makefile.in" -o -name "Makefile.am") ; do |
|
|
238 | omf_makefiles="${omf_makefiles} ${filename}" |
|
|
239 | done |
|
|
240 | |
|
|
241 | ebegin "Fixing OMF Makefiles" |
|
|
242 | |
|
|
243 | local retval=0 |
|
|
244 | local fails=( ) |
|
|
245 | |
|
|
246 | for omf in ${omf_makefiles} ; do |
|
|
247 | local rv=0 |
|
|
248 | |
|
|
249 | sed -i -e 's:scrollkeeper-update:true:' ${omf} |
|
|
250 | retval=$? |
|
|
251 | |
|
|
252 | if [[ ! $rv -eq 0 ]] ; then |
|
|
253 | debug-print "updating of ${omf} failed" |
|
|
254 | |
|
|
255 | # Add to the list of failures |
|
|
256 | fails[$(( ${#fails[@]} + 1 ))]=$omf |
|
|
257 | |
|
|
258 | retval=2 |
|
|
259 | fi |
|
|
260 | done |
|
|
261 | |
|
|
262 | eend $retval |
|
|
263 | |
|
|
264 | for (( i = 0 ; i < ${#fails[@]} ; i++ )) ; do |
|
|
265 | ### HACK!! This is needed until bash 3.1 is unmasked. |
|
|
266 | ## The current stable version of bash lists the sizeof fails to be 1 |
|
|
267 | ## when there are no elements in the list because it is declared local. |
|
|
268 | ## In order to prevent the declaration from being in global scope, we |
|
|
269 | ## this hack to prevent an empty error message being printed for stable |
|
|
270 | ## users. -- compnerd && allanonjl |
|
|
271 | if [[ "${fails[i]}" != "" && "${fails[i]}" != "()" ]] ; then |
|
|
272 | eerror "Failed to update OMF Makefile ${fails[i]}" |
|
|
273 | fi |
|
|
274 | done |
|
|
275 | } |
|
|
276 | |
|
|
277 | # Updates the scrollkeeper database if necessary. To force this action, make |
|
|
278 | # sure to set SCROLLKEPER_UPDATE to 1. |
|
|
279 | gnome2_scrollkeeper_update() { |
|
|
280 | if [[ -x ${SCROLLKEEPER_UPDATE_BIN} && "${SCROLLKEEPER_UPDATE}" = "1" ]] |
|
|
281 | then |
|
|
282 | einfo "Updating scrollkeeper database ..." |
|
|
283 | ${SCROLLKEEPER_UPDATE_BIN} -q -p ${SCROLLKEEPER_DIR} |
|
|
284 | fi |
|
|
285 | } |
|
|
286 | |
|
|
287 | gnome2_pkg_postinst() { |
109 | gnome2_pkg_postinst() { |
288 | gnome2_gconf_install |
110 | gnome2_gconf_install |
289 | gnome2_scrollkeeper_update |
|
|
290 | fdo-mime_desktop_database_update |
111 | fdo-mime_desktop_database_update |
291 | fdo-mime_mime_database_update |
112 | fdo-mime_mime_database_update |
292 | gnome2_icon_cache_update |
113 | gnome2_icon_cache_update |
|
|
114 | |
|
|
115 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
116 | gnome2_scrollkeeper_update |
|
|
117 | fi |
293 | } |
118 | } |
294 | |
119 | |
295 | #gnome2_pkg_prerm() { |
120 | #gnome2_pkg_prerm() { |
296 | # gnome2_gconf_uninstall |
121 | # gnome2_gconf_uninstall |
297 | #} |
122 | #} |
298 | |
123 | |
299 | gnome2_pkg_postrm() { |
124 | gnome2_pkg_postrm() { |
300 | gnome2_scrollkeeper_update |
|
|
301 | fdo-mime_desktop_database_update |
125 | fdo-mime_desktop_database_update |
302 | fdo-mime_mime_database_update |
126 | fdo-mime_mime_database_update |
303 | gnome2_icon_cache_update |
127 | gnome2_icon_cache_update |
|
|
128 | |
|
|
129 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
130 | gnome2_scrollkeeper_update |
|
|
131 | fi |
304 | } |
132 | } |
305 | |
133 | |
306 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
134 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |