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