| 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.59 2005/08/03 07:35:50 leonardop Exp $ |
| 4 | # |
4 | # |
| 5 | # Authors: |
5 | # Authors: |
| 6 | # Bruce A. Locke <blocke@shivan.org> |
6 | # Bruce A. Locke <blocke@shivan.org> |
| 7 | # Spidler <spidler@gentoo.org> |
7 | # Spidler <spider@gentoo.org> |
| 8 | |
8 | |
| 9 | inherit libtool gnome.org |
9 | inherit libtool gnome.org debug fdo-mime |
| 10 | |
|
|
| 11 | # accept both $DEBUG and USE="debug" |
|
|
| 12 | [ -n "$DEBUG" -o -n "`use debug`" ] && inherit debug |
|
|
| 13 | |
10 | |
| 14 | # Gnome 2 ECLASS |
11 | # Gnome 2 ECLASS |
| 15 | ECLASS="gnome2" |
|
|
| 16 | INHERITED="$INHERITED $ECLASS" |
|
|
| 17 | |
12 | |
| 18 | G2CONF="" # extra configure opts passed to econf |
13 | # extra configure opts passed to econf |
|
|
14 | [ -z "$G2CONF" ] && G2CONF="" |
|
|
15 | |
| 19 | ELTCONF="" # extra options passed to elibtoolize |
16 | # extra options passed to elibtoolize |
|
|
17 | [ -z "$ELTCONF" ] && ELTCONF="" |
|
|
18 | |
| 20 | SCROLLKEEPER_UPDATE="1" # whether to run scrollkeeper for this package |
19 | # whether to run scrollkeeper for this package |
|
|
20 | [ -z "$SCROLLKEEPER_UPDATE" ] && SCROLLKEEPER_UPDATE="1" |
|
|
21 | |
| 21 | USE_DESTDIR="" # use make DESTDIR=${D} install rather than einstall |
22 | # use make DESTDIR=${D} install rather than einstall |
|
|
23 | [ -z "$USE_DESTDIR" ] && USE_DESTDIR="" |
| 22 | |
24 | |
| 23 | [ -n "$DEBUG" -o -n "`use debug`" ] && G2CONF="${G2CONF} --enable-debug=yes" |
25 | |
|
|
26 | IUSE="debug" |
|
|
27 | |
|
|
28 | |
|
|
29 | DEPEND=">=sys-apps/sed-4" |
| 24 | |
30 | |
| 25 | gnome2_src_configure() { |
31 | gnome2_src_configure() { |
|
|
32 | |
|
|
33 | # [ -n "${ELTCONF}" ] && elibtoolize ${ELTCONF} |
| 26 | elibtoolize ${ELTCONF} |
34 | elibtoolize ${ELTCONF} |
|
|
35 | |
|
|
36 | use debug && G2CONF="${G2CONF} --enable-debug=yes" |
|
|
37 | |
| 27 | # doc keyword for gtk-doc |
38 | # doc keyword for gtk-doc |
| 28 | use doc \ |
|
|
| 29 | && G2CONF="${G2CONF} --enable-gtk-doc" \ |
39 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
| 30 | || G2CONF="${G2CONF} --disable-gtk-doc" |
|
|
| 31 | |
40 | |
| 32 | econf ${@} ${G2CONF} || die "./configure failure" |
41 | econf "$@" ${G2CONF} || die "./configure failure" |
| 33 | |
42 | |
| 34 | } |
43 | } |
| 35 | |
44 | |
| 36 | gnome2_src_compile() { |
45 | gnome2_src_compile() { |
| 37 | |
46 | |
| 38 | gnome2_src_configure ${@} |
47 | gnome2_src_configure "$@" |
| 39 | emake || die "compile failure" |
48 | emake || die "compile failure" |
| 40 | |
49 | |
| 41 | } |
50 | } |
| 42 | |
51 | |
| 43 | gnome2_src_install() { |
52 | gnome2_src_install() { |
| … | |
… | |
| 48 | |
57 | |
| 49 | # we must delay gconf schema installation due to sandbox |
58 | # we must delay gconf schema installation due to sandbox |
| 50 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
59 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 51 | |
60 | |
| 52 | if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
61 | if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
| 53 | einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ " ${@} |
62 | einstall "scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/" "$@" || die "einstall failed" |
| 54 | else |
63 | else |
| 55 | make DESTDIR=${D} \ |
64 | make DESTDIR=${D} \ |
| 56 | scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper \ |
65 | "$@" install || die "make DESTDIR install failed" |
| 57 | ${@} install |
|
|
| 58 | fi |
66 | fi |
| 59 | |
67 | |
| 60 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
68 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 61 | |
69 | |
| 62 | # manual document installation |
70 | # manual document installation |
| … | |
… | |
| 71 | export SCROLLKEEPER_UPDATE="0" |
79 | export SCROLLKEEPER_UPDATE="0" |
| 72 | fi |
80 | fi |
| 73 | |
81 | |
| 74 | # regenerate these in pkg_postinst() |
82 | # regenerate these in pkg_postinst() |
| 75 | rm -rf ${D}/var/lib/scrollkeeper |
83 | rm -rf ${D}/var/lib/scrollkeeper |
|
|
84 | # make sure this one doesn't get in the portage db |
|
|
85 | rm -fr ${D}/usr/share/applications/mimeinfo.cache |
|
|
86 | |
| 76 | } |
87 | } |
| 77 | |
88 | |
| 78 | |
89 | |
| 79 | gnome2_gconf_install() { |
90 | gnome2_gconf_install() { |
|
|
91 | |
| 80 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
92 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
| 81 | then |
93 | then |
| 82 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
94 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 83 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
95 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
|
|
96 | einfo "Installing GNOME 2 GConf schemas" |
|
|
97 | 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 | done |
|
|
103 | fi |
|
|
104 | |
|
|
105 | } |
|
|
106 | |
|
|
107 | 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` |
| 84 | einfo "installing gnome2 gconf schemas" |
113 | einfo "Uninstalling GNOME 2 GConf schemas" |
| 85 | cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do |
114 | cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do |
| 86 | echo "DEBUG::gconf install ${F}" |
115 | # echo "DEBUG::gconf install ${F}" |
| 87 | ${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F} |
116 | ${ROOT}/usr/bin/gconftool-2 --makefile-uninstall-rule ${F} 1>/dev/null |
| 88 | done |
117 | done |
| 89 | fi |
118 | fi |
|
|
119 | |
|
|
120 | } |
|
|
121 | |
|
|
122 | 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 |
| 90 | } |
139 | } |
| 91 | |
140 | |
| 92 | gnome2_omf_fix() { |
141 | gnome2_omf_fix() { |
|
|
142 | |
| 93 | # workaround/patch against omf.make or omf-install/Makefile.in |
143 | # workaround/patch against omf.make or omf-install/Makefile.in |
| 94 | # in order to remove redundant scrollkeeper-updates. |
144 | # in order to remove redundant scrollkeeper-updates. |
| 95 | # - <liquidx@gentoo.org> |
145 | # - <liquidx@gentoo.org> |
| 96 | |
146 | |
| 97 | local omf_makefiles |
147 | local omf_makefiles |
| 98 | |
148 | |
| 99 | omf_makefiles="$@" |
149 | omf_makefiles="$@" |
| 100 | |
150 | |
| 101 | [ -f ${S}/omf-install/Makefile.in ] \ |
151 | [ -f ${S}/omf-install/Makefile.in ] \ |
| 102 | && omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
152 | && omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
|
|
153 | |
|
|
154 | # 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 | |
| 103 | [ -f ${S}/omf.make ] \ |
158 | [ -f ${S}/omf.make ] \ |
| 104 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
159 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
| 105 | |
160 | |
| 106 | for omf in ${omf_makefiles}; do |
161 | for omf in ${omf_makefiles}; do |
| 107 | omfbase=$(basename ${omf}) |
162 | omfbase=$(basename ${omf}) |
| 108 | einfo "Fixing OMF Makefile: ${omfbase}" |
163 | einfo "Fixing OMF Makefile: ${omf#${S}/}" |
| 109 | sed -i -e 's:\(-scrollkeeper-update -p $(localstatedir)/scrollkeeper\)\([ \t\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} |
164 | sed -i -e 's:-scrollkeeper-update.*::' ${omf} |
| 110 | sed -i -e 's:\(-scrollkeeper-update -p $(scrollkeeper_localstate_dir)\)\([ \t\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} |
|
|
| 111 | done |
165 | done |
|
|
166 | |
| 112 | } |
167 | } |
| 113 | |
168 | |
| 114 | gnome2_scrollkeeper_update() { |
169 | gnome2_scrollkeeper_update() { |
|
|
170 | |
| 115 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
171 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
| 116 | then |
172 | then |
| 117 | echo ">>> Updating Scrollkeeper" |
173 | echo ">>> Updating Scrollkeeper" |
| 118 | scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
174 | scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
| 119 | fi |
175 | fi |
|
|
176 | |
| 120 | } |
177 | } |
| 121 | |
178 | |
| 122 | gnome2_pkg_postinst() { |
179 | gnome2_pkg_postinst() { |
|
|
180 | |
| 123 | gnome2_gconf_install |
181 | gnome2_gconf_install |
| 124 | gnome2_scrollkeeper_update |
182 | gnome2_scrollkeeper_update |
|
|
183 | fdo-mime_desktop_database_update |
|
|
184 | fdo-mime_mime_database_update |
|
|
185 | gnome2_icon_cache_update |
|
|
186 | |
| 125 | } |
187 | } |
|
|
188 | |
|
|
189 | #gnome2_pkg_prerm() { |
|
|
190 | |
|
|
191 | # gnome2_gconf_uninstall |
|
|
192 | |
|
|
193 | #} |
| 126 | |
194 | |
| 127 | gnome2_pkg_postrm() { |
195 | gnome2_pkg_postrm() { |
|
|
196 | |
| 128 | gnome2_scrollkeeper_update |
197 | gnome2_scrollkeeper_update |
| 129 | } |
198 | fdo-mime_desktop_database_update |
|
|
199 | fdo-mime_mime_database_update |
|
|
200 | gnome2_icon_cache_update |
| 130 | |
201 | |
|
|
202 | } |
| 131 | |
203 | |
|
|
204 | #EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_prerm pkg_postrm |
| 132 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
205 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
| 133 | |
|
|
| 134 | |
|
|