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