1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 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.7 2002/06/04 06:46:11 blocke Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.72 2006/06/12 14:40:49 allanonjl Exp $ |
4 | |
4 | |
5 | # Authors: |
|
|
6 | # Bruce A. Locke <blocke@shivan.org> |
|
|
7 | # Spidler <spidler@gentoo.org> |
|
|
8 | |
|
|
9 | # Gnome 2 ECLASS |
5 | # GNOME 2 ECLASS |
10 | ECLASS="gnome2" |
6 | inherit libtool gnome.org debug fdo-mime eutils |
11 | |
7 | |
12 | # DEBUG for Beta |
8 | # Extra configure opts passed to econf |
13 | # Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ |
9 | G2CONF=${G2CONF:=""} |
14 | DEBUG="yes" |
|
|
15 | RESTRICT="nostrip" |
|
|
16 | |
10 | |
17 | # Remove omit-frame-pointer as some useless folks define that all over the place. they should be shot with a 16 gauge slingshot at least :) |
11 | # Extra options passed to elibtoolize |
18 | # force debug information |
12 | ELTCONF=${ELTCONF:=""} |
19 | export CFLAGS="${CFLAGS/-fomit-frame-pointer/} -g" |
|
|
20 | export CXXFLAGS="${CXXFLAGS/-fomit-frame-pointer/} -g" |
|
|
21 | |
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 |
22 | G2CONF="--enable-debug=yes" |
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 | } |
23 | |
61 | |
24 | gnome2_src_compile() { |
62 | gnome2_src_compile() { |
|
|
63 | gnome2_src_configure "$@" |
|
|
64 | emake || die "compile failure" |
|
|
65 | } |
25 | |
66 | |
26 | use doc && G2CONF="${G2CONF} --enable-gtk-doc" || G2CONF="${G2CONF} --disable-gtk-doc" |
67 | gnome2_src_install() { |
27 | |
68 | # if this is not present, scrollkeeper-update may segfault and |
28 | if [ "${LIBTOOL_FIX}" = "1" ] |
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 |
29 | then |
154 | then |
30 | libtoolize --copy --force |
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 |
31 | fi |
182 | fi |
|
|
183 | done |
32 | |
184 | |
33 | econf ${1} ${G2CONF} || die "./configure failure" |
185 | eend ${retval} |
34 | emake || die "compile failure" |
|
|
35 | |
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 |
36 | } |
198 | } |
37 | |
199 | |
38 | gnome2_src_install() { |
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> |
39 | |
204 | |
40 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
205 | local omf_makefiles filename |
41 | |
206 | |
42 | einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ ${1}" |
207 | omf_makefiles="$@" |
43 | |
208 | |
44 | # manual document installation |
209 | if [[ -f ${S}/omf-install/Makefile.in ]] ; then |
45 | if [ -n "${DOCS}" ] |
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" ]] |
46 | then |
264 | then |
47 | dodoc ${DOCS} |
265 | einfo "Updating scrollkeeper database ..." |
|
|
266 | ${SCROLLKEEPER_UPDATE_BIN} -q -p ${ROOT}${SCROLLKEEPER_DIR} |
48 | fi |
267 | fi |
49 | |
|
|
50 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
51 | |
|
|
52 | } |
268 | } |
53 | |
269 | |
54 | gnome2_pkg_postinst() { |
270 | gnome2_pkg_postinst() { |
55 | |
271 | gnome2_gconf_install |
56 | # schema installation |
272 | gnome2_scrollkeeper_update |
57 | if [ -n "${SCHEMAS}" ] |
273 | fdo-mime_desktop_database_update |
58 | then |
274 | fdo-mime_mime_database_update |
59 | |
275 | gnome2_icon_cache_update |
60 | export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` |
|
|
61 | |
|
|
62 | echo ">>> Updating GConf2 Schemas for ${P}" |
|
|
63 | for x in $SCHEMAS |
|
|
64 | do |
|
|
65 | /usr/bin/gconftool-2 --makefile-install-rule \ |
|
|
66 | /etc/gconf/schemas/${x} |
|
|
67 | done |
|
|
68 | fi |
|
|
69 | |
|
|
70 | if [ -x /usr/bin/scrollkeeper-update ] |
|
|
71 | then |
|
|
72 | echo ">>> Updating Scrollkeeper" |
|
|
73 | scrollkeeper-update -p /var/lib/scrollkeeper |
|
|
74 | fi |
|
|
75 | } |
276 | } |
76 | |
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 | |
77 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst |
289 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
78 | |
|
|
79 | |
|
|