1 |
vapier |
1.42 |
# Copyright 1999-2004 Gentoo Foundation |
2 |
blocke |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
leonardop |
1.61 |
# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.60 2005/08/17 16:49:32 leonardop Exp $ |
4 |
vapier |
1.27 |
# |
5 |
|
|
# Authors: |
6 |
|
|
# Bruce A. Locke <blocke@shivan.org> |
7 |
liquidx |
1.36 |
# Spidler <spider@gentoo.org> |
8 |
blocke |
1.2 |
|
9 |
foser |
1.45 |
inherit libtool gnome.org debug fdo-mime |
10 |
blocke |
1.1 |
|
11 |
|
|
# Gnome 2 ECLASS |
12 |
spider |
1.19 |
|
13 |
leonardop |
1.59 |
# extra configure opts passed to econf |
14 |
|
|
[ -z "$G2CONF" ] && G2CONF="" |
15 |
|
|
|
16 |
|
|
# extra options passed to elibtoolize |
17 |
|
|
[ -z "$ELTCONF" ] && ELTCONF="" |
18 |
|
|
|
19 |
|
|
# whether to run scrollkeeper for this package |
20 |
|
|
[ -z "$SCROLLKEEPER_UPDATE" ] && SCROLLKEEPER_UPDATE="1" |
21 |
|
|
|
22 |
|
|
# use make DESTDIR=${D} install rather than einstall |
23 |
|
|
[ -z "$USE_DESTDIR" ] && USE_DESTDIR="" |
24 |
|
|
|
25 |
foser |
1.56 |
|
26 |
foser |
1.58 |
IUSE="debug" |
27 |
foser |
1.56 |
|
28 |
blocke |
1.1 |
|
29 |
swegener |
1.53 |
DEPEND=">=sys-apps/sed-4" |
30 |
liquidx |
1.34 |
|
31 |
blocke |
1.9 |
gnome2_src_configure() { |
32 |
foser |
1.45 |
|
33 |
foser |
1.47 |
# [ -n "${ELTCONF}" ] && elibtoolize ${ELTCONF} |
34 |
|
|
elibtoolize ${ELTCONF} |
35 |
foser |
1.45 |
|
36 |
leonardop |
1.59 |
use debug && G2CONF="${G2CONF} --enable-debug=yes" |
37 |
|
|
|
38 |
blocke |
1.8 |
# doc keyword for gtk-doc |
39 |
leonardop |
1.49 |
G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
40 |
blocke |
1.1 |
|
41 |
liquidx |
1.36 |
econf "$@" ${G2CONF} || die "./configure failure" |
42 |
blocke |
1.9 |
|
43 |
|
|
} |
44 |
|
|
|
45 |
|
|
gnome2_src_compile() { |
46 |
|
|
|
47 |
liquidx |
1.36 |
gnome2_src_configure "$@" |
48 |
blocke |
1.1 |
emake || die "compile failure" |
49 |
|
|
|
50 |
|
|
} |
51 |
|
|
|
52 |
|
|
gnome2_src_install() { |
53 |
azarah |
1.21 |
|
54 |
azarah |
1.22 |
# if this is not present, scrollkeeper-update may segfault and |
55 |
|
|
# create bogus directories in /var/lib/ |
56 |
liquidx |
1.30 |
dodir /var/lib/scrollkeeper |
57 |
blocke |
1.1 |
|
58 |
blocke |
1.8 |
# we must delay gconf schema installation due to sandbox |
59 |
blocke |
1.3 |
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
60 |
|
|
|
61 |
liquidx |
1.30 |
if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
62 |
foser |
1.56 |
einstall "scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/" "$@" || die "einstall failed" |
63 |
liquidx |
1.30 |
else |
64 |
liquidx |
1.31 |
make DESTDIR=${D} \ |
65 |
foser |
1.56 |
"$@" install || die "make DESTDIR install failed" |
66 |
liquidx |
1.30 |
fi |
67 |
blocke |
1.1 |
|
68 |
blocke |
1.10 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
69 |
|
|
|
70 |
blocke |
1.1 |
# manual document installation |
71 |
liquidx |
1.30 |
[ -n "${DOCS}" ] && dodoc ${DOCS} |
72 |
|
|
|
73 |
|
|
# do not keep /var/lib/scrollkeeper because: |
74 |
|
|
# 1. scrollkeeper will get regenerated at pkg_postinst() |
75 |
|
|
# 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
76 |
|
|
# thus it makes no sense if pkg_postinst ISN'T run for some reason. |
77 |
|
|
|
78 |
|
|
if [ -z "`find ${D} -name '*.omf'`" ]; then |
79 |
|
|
export SCROLLKEEPER_UPDATE="0" |
80 |
blocke |
1.1 |
fi |
81 |
|
|
|
82 |
liquidx |
1.30 |
# regenerate these in pkg_postinst() |
83 |
|
|
rm -rf ${D}/var/lib/scrollkeeper |
84 |
foser |
1.45 |
# make sure this one doesn't get in the portage db |
85 |
|
|
rm -fr ${D}/usr/share/applications/mimeinfo.cache |
86 |
|
|
|
87 |
spider |
1.20 |
} |
88 |
|
|
|
89 |
|
|
|
90 |
|
|
gnome2_gconf_install() { |
91 |
foser |
1.45 |
|
92 |
spider |
1.20 |
if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
93 |
|
|
then |
94 |
liquidx |
1.30 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
95 |
spider |
1.20 |
export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
96 |
swegener |
1.53 |
einfo "Installing GNOME 2 GConf schemas" |
97 |
leonardop |
1.49 |
grep "obj /etc/gconf/schemas" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS | sed 's:obj \([^ ]*\) .*:\1:' | while read F; do |
98 |
|
|
if [ -e "${F}" ]; then |
99 |
|
|
# echo "DEBUG::gconf install ${F}" |
100 |
|
|
${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F} 1>/dev/null |
101 |
|
|
fi |
102 |
spider |
1.20 |
done |
103 |
|
|
fi |
104 |
foser |
1.45 |
|
105 |
liquidx |
1.32 |
} |
106 |
|
|
|
107 |
foser |
1.39 |
gnome2_gconf_uninstall() { |
108 |
|
|
|
109 |
|
|
if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
110 |
|
|
then |
111 |
|
|
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
112 |
|
|
export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
113 |
swegener |
1.53 |
einfo "Uninstalling GNOME 2 GConf schemas" |
114 |
foser |
1.39 |
cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do |
115 |
|
|
# echo "DEBUG::gconf install ${F}" |
116 |
|
|
${ROOT}/usr/bin/gconftool-2 --makefile-uninstall-rule ${F} 1>/dev/null |
117 |
|
|
done |
118 |
|
|
fi |
119 |
|
|
|
120 |
|
|
} |
121 |
|
|
|
122 |
leonardop |
1.54 |
gnome2_icon_cache_update() { |
123 |
|
|
local updater=`which gtk-update-icon-cache` |
124 |
|
|
if ! grep -q "obj /usr/share/icons" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS \ |
125 |
|
|
|| [ ! -x "$updater" ]; then |
126 |
|
|
# Nothing to update |
127 |
|
|
return |
128 |
|
|
fi |
129 |
|
|
|
130 |
|
|
ebegin "Updating icons cache" |
131 |
|
|
|
132 |
|
|
local retval=0 |
133 |
|
|
for dir in \ |
134 |
|
|
$(find ${ROOT}/usr/share/icons -maxdepth 1 -mindepth 1 -type d); do |
135 |
|
|
$updater -qf $dir || retval=$? |
136 |
|
|
done |
137 |
|
|
|
138 |
|
|
eend $retval |
139 |
|
|
} |
140 |
|
|
|
141 |
liquidx |
1.32 |
gnome2_omf_fix() { |
142 |
foser |
1.45 |
|
143 |
liquidx |
1.32 |
# workaround/patch against omf.make or omf-install/Makefile.in |
144 |
|
|
# in order to remove redundant scrollkeeper-updates. |
145 |
|
|
# - <liquidx@gentoo.org> |
146 |
swegener |
1.53 |
|
147 |
liquidx |
1.32 |
local omf_makefiles |
148 |
|
|
|
149 |
|
|
omf_makefiles="$@" |
150 |
|
|
|
151 |
|
|
[ -f ${S}/omf-install/Makefile.in ] \ |
152 |
|
|
&& omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
153 |
swegener |
1.53 |
|
154 |
liquidx |
1.34 |
# FIXME: does this really work? because omf.make only gets included |
155 |
|
|
# when autoconf/automake is run. You should directly patch |
156 |
|
|
# the Makefile.in's |
157 |
swegener |
1.53 |
|
158 |
liquidx |
1.32 |
[ -f ${S}/omf.make ] \ |
159 |
|
|
&& omf_makefiles="${omf_makefiles} ${S}/omf.make" |
160 |
|
|
|
161 |
leonardop |
1.61 |
ebegin "Fixing OMF Makefiles" |
162 |
|
|
local retval=0 |
163 |
liquidx |
1.32 |
for omf in ${omf_makefiles}; do |
164 |
leonardop |
1.61 |
sed -i -e 's:scrollkeeper-update:true:' ${omf} || retval=$? |
165 |
liquidx |
1.32 |
done |
166 |
leonardop |
1.61 |
eend $retval |
167 |
foser |
1.45 |
|
168 |
blocke |
1.1 |
} |
169 |
|
|
|
170 |
liquidx |
1.30 |
gnome2_scrollkeeper_update() { |
171 |
foser |
1.45 |
|
172 |
azarah |
1.22 |
if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
173 |
blocke |
1.3 |
then |
174 |
leonardop |
1.60 |
einfo "Updating scrollkeeper database ..." |
175 |
liquidx |
1.30 |
scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
176 |
blocke |
1.1 |
fi |
177 |
foser |
1.45 |
|
178 |
blocke |
1.1 |
} |
179 |
|
|
|
180 |
liquidx |
1.30 |
gnome2_pkg_postinst() { |
181 |
foser |
1.45 |
|
182 |
liquidx |
1.30 |
gnome2_gconf_install |
183 |
|
|
gnome2_scrollkeeper_update |
184 |
foser |
1.45 |
fdo-mime_desktop_database_update |
185 |
|
|
fdo-mime_mime_database_update |
186 |
leonardop |
1.54 |
gnome2_icon_cache_update |
187 |
foser |
1.45 |
|
188 |
liquidx |
1.30 |
} |
189 |
|
|
|
190 |
foser |
1.40 |
#gnome2_pkg_prerm() { |
191 |
foser |
1.39 |
|
192 |
foser |
1.40 |
# gnome2_gconf_uninstall |
193 |
foser |
1.39 |
|
194 |
foser |
1.40 |
#} |
195 |
foser |
1.39 |
|
196 |
liquidx |
1.30 |
gnome2_pkg_postrm() { |
197 |
foser |
1.45 |
|
198 |
liquidx |
1.30 |
gnome2_scrollkeeper_update |
199 |
foser |
1.45 |
fdo-mime_desktop_database_update |
200 |
|
|
fdo-mime_mime_database_update |
201 |
leonardop |
1.54 |
gnome2_icon_cache_update |
202 |
foser |
1.45 |
|
203 |
liquidx |
1.30 |
} |
204 |
|
|
|
205 |
foser |
1.40 |
#EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_prerm pkg_postrm |
206 |
|
|
EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |