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