1 |
# Copyright 1999-2004 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.71 2006/06/07 21:13:17 allanonjl Exp $ |
4 |
|
5 |
# GNOME 2 ECLASS |
6 |
inherit libtool gnome.org debug fdo-mime eutils |
7 |
|
8 |
# Extra configure opts passed to econf |
9 |
G2CONF=${G2CONF:=""} |
10 |
|
11 |
# Extra options passed to elibtoolize |
12 |
ELTCONF=${ELTCONF:=""} |
13 |
|
14 |
# Should we use EINSTALL instead of DESTDIR |
15 |
USE_EINSTALL=${USE_EINSTALL:=""} |
16 |
|
17 |
# Run scrollkeeper for this package? |
18 |
SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:="1"} |
19 |
|
20 |
# Where to put scrollkeeper data lives |
21 |
SCROLLKEEPER_DIR=${SCROLLKEEPER_DIR:="/var/lib/scrollkeeper"} |
22 |
|
23 |
# Path to scrollkeeper-update |
24 |
SCROLLKEEPER_UPDATE_BIN=${SCROLLKEEPER_UPDATE_BIN:="${ROOT}/usr/bin/scrollkeeper-update"} |
25 |
|
26 |
# Path to gconftool-2 |
27 |
GCONFTOOL_BIN=${GCONFTOOL_BIN:="${ROOT}/usr/bin/gconftool-2"} |
28 |
|
29 |
if [[ ${GCONF_DEBUG} != "no" ]]; then |
30 |
IUSE="debug" |
31 |
fi |
32 |
|
33 |
DEPEND=">=sys-apps/sed-4" |
34 |
|
35 |
gnome2_src_unpack() { |
36 |
unpack ${A} |
37 |
cd ${S} |
38 |
|
39 |
# Prevent scrollkeeper access violations |
40 |
gnome2_omf_fix |
41 |
} |
42 |
|
43 |
gnome2_src_configure() { |
44 |
# Update the GNOME configuration options |
45 |
if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
46 |
if use debug ; then |
47 |
G2CONF="${G2CONF} --enable-debug=yes" |
48 |
fi |
49 |
fi |
50 |
G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
51 |
|
52 |
# Run libtoolize |
53 |
elibtoolize ${ELTCONF} |
54 |
|
55 |
# Do not remove the addwrite. bug #128289 |
56 |
addwrite "${ROOT}/root/.gnome2" |
57 |
|
58 |
# GST_REGISTRY is to work around gst-inspect trying to read/write /root |
59 |
GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} || die "configure failed" |
60 |
} |
61 |
|
62 |
gnome2_src_compile() { |
63 |
gnome2_src_configure "$@" |
64 |
emake || die "compile failure" |
65 |
} |
66 |
|
67 |
gnome2_src_install() { |
68 |
# if this is not present, scrollkeeper-update may segfault and |
69 |
# create bogus directories in /var/lib/ |
70 |
dodir "${SCROLLKEEPER_DIR}" |
71 |
|
72 |
# we must delay gconf schema installation due to sandbox |
73 |
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
74 |
|
75 |
debug-print "You are testing with DESTDIR by default - AllanonJL" |
76 |
if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
77 |
make DESTDIR=${D} "scrollkeeper_localstate_dir=${D}${SCROLLKEEPER_DIR} " "$@" install || die "install failed" |
78 |
else |
79 |
einstall "scrollkeeper_localstate_dir=${D}${SCROLLKEEPER_DIR} " "$@" || die "einstall failed" |
80 |
fi |
81 |
|
82 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
83 |
|
84 |
# Manual document installation |
85 |
[[ -n "${DOCS}" ]] && dodoc ${DOCS} |
86 |
|
87 |
# Do not keep /var/lib/scrollkeeper because: |
88 |
# 1. scrollkeeper will get regenerated at pkg_postinst() |
89 |
# 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
90 |
# thus it makes no sense if pkg_postinst ISN'T run for some reason. |
91 |
|
92 |
if [[ -z "$(find ${D} -name '*.omf')" ]]; then |
93 |
export SCROLLKEEPER_UPDATE="0" |
94 |
fi |
95 |
|
96 |
# Regenerate these in pkg_postinst() |
97 |
rm -rf "${D}${SCROLLKEEPER_DIR}" |
98 |
|
99 |
# Make sure this one doesn't get in the portage db |
100 |
rm -fr "${D}/usr/share/applications/mimeinfo.cache" |
101 |
} |
102 |
|
103 |
|
104 |
gnome2_gconf_install() { |
105 |
if [[ -x ${GCONFTOOL_BIN} ]]; then |
106 |
# We are ready to install the GCONF Scheme now |
107 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
108 |
export GCONF_CONFIG_SOURCE=$(${GCONFTOOL_BIN} --get-default-source) |
109 |
|
110 |
einfo "Installing GNOME 2 GConf schemas" |
111 |
|
112 |
local contents="${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS" |
113 |
|
114 |
for F in $(grep "obj /etc/gconf/schemas" ${contents} | sed 's:obj \([^ ]*\) .*:\1:' ); do |
115 |
if [[ -e "${F}" ]]; then |
116 |
# echo "DEBUG::gconf install ${F}" |
117 |
${GCONFTOOL_BIN} --makefile-install-rule ${F} 1>/dev/null |
118 |
fi |
119 |
done |
120 |
fi |
121 |
} |
122 |
|
123 |
gnome2_gconf_uninstall() { |
124 |
if [[ -x ${GCONFTOOL_BIN} ]]; then |
125 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
126 |
export GCONF_CONFIG_SOURCE=$(${GCONFTOOL_BIN} --get-default-source) |
127 |
|
128 |
einfo "Uninstalling GNOME 2 GConf schemas" |
129 |
|
130 |
local contents="${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS" |
131 |
|
132 |
for F in $(grep "obj /etc/gconf/schemas" ${contents} | sed 's:obj \([^ ]*\) .*:\1:' ); do |
133 |
# echo "DEBUG::gconf install ${F}" |
134 |
${GCONFTOOL_BIN} --makefile-uninstall-rule ${F} 1>/dev/null |
135 |
done |
136 |
fi |
137 |
} |
138 |
|
139 |
gnome2_icon_cache_update() { |
140 |
local updater=$(type -p gtk-update-icon-cache 2> /dev/null) |
141 |
|
142 |
ebegin "Updating icons cache" |
143 |
|
144 |
if [[ ! -x ${updater} ]] ; then |
145 |
debug-print "${updater} is not executable" |
146 |
|
147 |
# We failed to run |
148 |
eend 1 |
149 |
|
150 |
return |
151 |
fi |
152 |
|
153 |
if ! grep -q "obj /usr/share/icons" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS |
154 |
then |
155 |
debug-print "No items to update" |
156 |
|
157 |
# We are done successfully |
158 |
eend 0 |
159 |
|
160 |
return |
161 |
fi |
162 |
|
163 |
local retval=0 |
164 |
local fails=( ) |
165 |
|
166 |
for dir in $(find ${ROOT}/usr/share/icons -maxdepth 1 -mindepth 1 -type d) |
167 |
do |
168 |
if [[ -f "${dir}/index.theme" ]] ; then |
169 |
local rv=0 |
170 |
|
171 |
${updater} -qf ${dir} |
172 |
rv=$? |
173 |
|
174 |
if [[ ! $rv -eq 0 ]] ; then |
175 |
debug-print "Updating cache failed on ${dir}" |
176 |
|
177 |
# Add to the list of failures |
178 |
fails[$(( ${#fails[@]} + 1 ))]=$dir |
179 |
|
180 |
retval=2 |
181 |
fi |
182 |
fi |
183 |
done |
184 |
|
185 |
eend ${retval} |
186 |
|
187 |
for (( i = 0 ; i < ${#fails[@]} ; i++ )) ; do |
188 |
### HACK!! This is needed until bash 3.1 is unmasked. |
189 |
## The current stable version of bash lists the sizeof fails to be 1 |
190 |
## when there are no elements in the list because it is declared local. |
191 |
## In order to prevent the declaration from being in global scope, we |
192 |
## this hack to prevent an empty error message being printed for stable |
193 |
## users. -- compnerd && allanonjl |
194 |
if [[ "${fails[i]}" != "" && "${fails[i]}" != "()" ]] ; then |
195 |
eerror "Failed to update cache with icon ${fails[i]}" |
196 |
fi |
197 |
done |
198 |
} |
199 |
|
200 |
gnome2_omf_fix() { |
201 |
# workaround/patch against omf.make or omf-install/Makefile.in |
202 |
# in order to remove redundant scrollkeeper-updates. |
203 |
# - <liquidx@gentoo.org> |
204 |
|
205 |
local omf_makefiles filename |
206 |
|
207 |
omf_makefiles="$@" |
208 |
|
209 |
if [[ -f ${S}/omf-install/Makefile.in ]] ; then |
210 |
omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
211 |
fi |
212 |
|
213 |
# FIXME: does this really work? because omf.make only gets included |
214 |
# when autoconf/automake is run. You should directly patch |
215 |
# the Makefile.in's |
216 |
|
217 |
if [[ -f ${S}/omf.make ]] ; then |
218 |
omf_makefiles="${omf_makefiles} ${S}/omf.make" |
219 |
fi |
220 |
|
221 |
# testing fixing of all makefiles found |
222 |
for filename in $(find ./ -name "Makefile.in" -o -name "Makefile.am") ; do |
223 |
omf_makefiles="${omf_makefiles} ${filename}" |
224 |
done |
225 |
|
226 |
ebegin "Fixing OMF Makefiles" |
227 |
|
228 |
local retval=0 |
229 |
local fails=( ) |
230 |
|
231 |
for omf in ${omf_makefiles} ; do |
232 |
local rv=0 |
233 |
|
234 |
sed -i -e 's:scrollkeeper-update:true:' ${omf} |
235 |
retval=$? |
236 |
|
237 |
if [[ ! $rv -eq 0 ]] ; then |
238 |
debug-print "updating of ${omf} failed" |
239 |
|
240 |
# Add to the list of failures |
241 |
fails[$(( ${#fails[@]} + 1 ))]=$omf |
242 |
|
243 |
retval=2 |
244 |
fi |
245 |
done |
246 |
|
247 |
eend $retval |
248 |
|
249 |
for (( i = 0 ; i < ${#fails[@]} ; i++ )) ; do |
250 |
### HACK!! This is needed until bash 3.1 is unmasked. |
251 |
## The current stable version of bash lists the sizeof fails to be 1 |
252 |
## when there are no elements in the list because it is declared local. |
253 |
## In order to prevent the declaration from being in global scope, we |
254 |
## this hack to prevent an empty error message being printed for stable |
255 |
## users. -- compnerd && allanonjl |
256 |
if [[ "${fails[i]}" != "" && "${fails[i]}" != "()" ]] ; then |
257 |
eerror "Failed to update OMF Makefile ${fails[i]}" |
258 |
fi |
259 |
done |
260 |
} |
261 |
|
262 |
gnome2_scrollkeeper_update() { |
263 |
if [[ -x ${SCROLLKEEPER_UPDATE_BIN} && "${SCROLLKEEPER_UPDATE}" = "1" ]] |
264 |
then |
265 |
einfo "Updating scrollkeeper database ..." |
266 |
${SCROLLKEEPER_UPDATE_BIN} -q -p ${ROOT}${SCROLLKEEPER_DIR} |
267 |
fi |
268 |
} |
269 |
|
270 |
gnome2_pkg_postinst() { |
271 |
gnome2_gconf_install |
272 |
gnome2_scrollkeeper_update |
273 |
fdo-mime_desktop_database_update |
274 |
fdo-mime_mime_database_update |
275 |
gnome2_icon_cache_update |
276 |
} |
277 |
|
278 |
#gnome2_pkg_prerm() { |
279 |
# gnome2_gconf_uninstall |
280 |
#} |
281 |
|
282 |
gnome2_pkg_postrm() { |
283 |
gnome2_scrollkeeper_update |
284 |
fdo-mime_desktop_database_update |
285 |
fdo-mime_mime_database_update |
286 |
gnome2_icon_cache_update |
287 |
} |
288 |
|
289 |
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |