| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2011 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.57 2005/08/01 23:19:07 foser Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.97 2011/07/08 11:35:01 ssuominen Exp $ |
| 4 | # |
|
|
| 5 | # Authors: |
|
|
| 6 | # Bruce A. Locke <blocke@shivan.org> |
|
|
| 7 | # Spidler <spider@gentoo.org> |
|
|
| 8 | |
4 | |
| 9 | inherit libtool gnome.org debug fdo-mime |
5 | # @ECLASS: gnome2.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # gnome@gentoo.org |
|
|
8 | # @BLURB: |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # Exports portage base functions used by ebuilds written for packages using the |
|
|
11 | # GNOME framework. For additional functions, see gnome2-utils.eclass. |
| 10 | |
12 | |
| 11 | # Gnome 2 ECLASS |
13 | inherit fdo-mime libtool gnome.org gnome2-utils |
| 12 | |
14 | |
| 13 | G2CONF="" # extra configure opts passed to econf |
15 | case "${EAPI:-0}" in |
| 14 | ELTCONF="" # extra options passed to elibtoolize |
16 | 0|1) |
| 15 | SCROLLKEEPER_UPDATE="1" # whether to run scrollkeeper for this package |
17 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 16 | USE_DESTDIR="" # use make DESTDIR=${D} install rather than einstall |
18 | ;; |
|
|
19 | 2|3|4) |
|
|
20 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|
21 | ;; |
|
|
22 | *) die "EAPI=${EAPI} is not supported" ;; |
|
|
23 | esac |
| 17 | |
24 | |
| 18 | IUSE="" |
25 | # @ECLASS-VARIABLE: G2CONF |
|
|
26 | # @DEFAULT-UNSET |
|
|
27 | # @DESCRIPTION: |
|
|
28 | # Extra configure opts passed to econf |
|
|
29 | G2CONF=${G2CONF:-""} |
| 19 | |
30 | |
| 20 | use debug && G2CONF="${G2CONF} --enable-debug=yes" |
31 | # @ECLASS-VARIABLE: GNOME2_LA_PUNT |
|
|
32 | # @DESCRIPTION: |
|
|
33 | # Should we delete all the .la files? |
|
|
34 | # NOT to be used without due consideration. |
|
|
35 | GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-"no"} |
| 21 | |
36 | |
| 22 | DEPEND=">=sys-apps/sed-4" |
37 | # @ECLASS-VARIABLE: ELTCONF |
|
|
38 | # @DEFAULT-UNSET |
|
|
39 | # @DESCRIPTION: |
|
|
40 | # Extra options passed to elibtoolize |
|
|
41 | ELTCONF=${ELTCONF:-""} |
| 23 | |
42 | |
|
|
43 | # @ECLASS-VARIABLE: USE_EINSTALL |
|
|
44 | # @DEFAULT-UNSET |
|
|
45 | # @DEPRECATED |
|
|
46 | # @DESCRIPTION: |
|
|
47 | # Should we use EINSTALL instead of DESTDIR |
|
|
48 | USE_EINSTALL=${USE_EINSTALL:-""} |
|
|
49 | |
|
|
50 | # @ECLASS-VARIABLE: SCROLLKEEPER_UPDATE |
|
|
51 | # @DEPRECATED |
|
|
52 | # @DESCRIPTION: |
|
|
53 | # Whether to run scrollkeeper for this package or not. |
|
|
54 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
|
|
55 | |
|
|
56 | # @ECLASS-VARIABLE: DOCS |
|
|
57 | # @DEFAULT-UNSET |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # String containing documents passed to dodoc command. |
|
|
60 | |
|
|
61 | # @ECLASS-VARIABLE: GCONF_DEBUG |
|
|
62 | # @DEFAULT_UNSET |
|
|
63 | # @DESCRIPTION: |
|
|
64 | # Whether to handle debug or not. |
|
|
65 | # Some gnome applications support various levels of debugging (yes, no, minimum, |
|
|
66 | # etc), but using --disable-debug also removes g_assert which makes debugging |
|
|
67 | # harder. This variable should be set to yes for such packages for the eclass |
|
|
68 | # to handle it properly. It will enable minimal debug with USE=-debug. |
|
|
69 | # Note that this is most commonly found in configure.ac as GNOME_DEBUG_CHECK. |
|
|
70 | |
|
|
71 | |
|
|
72 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
|
|
73 | IUSE="debug" |
|
|
74 | fi |
|
|
75 | |
|
|
76 | |
|
|
77 | # @FUNCTION: gnome2_src_unpack |
|
|
78 | # @DESCRIPTION: |
|
|
79 | # Stub function for old EAPI. |
|
|
80 | gnome2_src_unpack() { |
|
|
81 | unpack ${A} |
|
|
82 | cd "${S}" |
|
|
83 | has ${EAPI:-0} 0 1 && gnome2_src_prepare |
|
|
84 | } |
|
|
85 | |
|
|
86 | # @FUNCTION: gnome2_src_prepare |
|
|
87 | # @DESCRIPTION: |
|
|
88 | # Fix build of scrollkeeper documentation and run elibtoolize. |
|
|
89 | gnome2_src_prepare() { |
|
|
90 | # Prevent scrollkeeper access violations |
|
|
91 | gnome2_omf_fix |
|
|
92 | |
|
|
93 | # Run libtoolize |
|
|
94 | if has ${EAPI:-0} 0 1 2 3; then |
|
|
95 | elibtoolize ${ELTCONF} |
|
|
96 | else |
|
|
97 | # Everything is fatal EAPI 4 onwards |
|
|
98 | nonfatal elibtoolize ${ELTCONF} |
|
|
99 | fi |
|
|
100 | |
|
|
101 | } |
|
|
102 | |
|
|
103 | # @FUNCTION: gnome2_src_configure |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # Gnome specific configure handling |
| 24 | gnome2_src_configure() { |
106 | gnome2_src_configure() { |
|
|
107 | # Update the GNOME configuration options |
|
|
108 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
|
|
109 | if use debug ; then |
|
|
110 | G2CONF="${G2CONF} --enable-debug=yes" |
|
|
111 | fi |
|
|
112 | fi |
| 25 | |
113 | |
| 26 | # [ -n "${ELTCONF}" ] && elibtoolize ${ELTCONF} |
114 | # Prevent a QA warning |
| 27 | elibtoolize ${ELTCONF} |
115 | if has doc ${IUSE} ; then |
| 28 | |
|
|
| 29 | # doc keyword for gtk-doc |
|
|
| 30 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
116 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
|
|
117 | fi |
| 31 | |
118 | |
| 32 | econf "$@" ${G2CONF} || die "./configure failure" |
119 | # Avoid sandbox violations caused by misbehaving packages (bug #128289) |
|
|
120 | addwrite "/root/.gnome2" |
| 33 | |
121 | |
|
|
122 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
|
|
123 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} |
| 34 | } |
124 | } |
| 35 | |
125 | |
|
|
126 | # @FUNCTION: gnome2_src_compile |
|
|
127 | # @DESCRIPTION: |
|
|
128 | # Stub function for old EAPI. |
| 36 | gnome2_src_compile() { |
129 | gnome2_src_compile() { |
| 37 | |
130 | has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
| 38 | gnome2_src_configure "$@" |
|
|
| 39 | emake || die "compile failure" |
131 | emake || die "compile failure" |
| 40 | |
|
|
| 41 | } |
132 | } |
| 42 | |
133 | |
|
|
134 | # @FUNCTION: gnome2_src_install |
|
|
135 | # @DESCRIPTION: |
|
|
136 | # Gnome specific install. Handles typical GConf and scrollkeeper setup |
|
|
137 | # in packages and removal of .la files if requested |
| 43 | gnome2_src_install() { |
138 | gnome2_src_install() { |
| 44 | |
139 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
| 45 | # if this is not present, scrollkeeper-update may segfault and |
140 | # if this is not present, scrollkeeper-update may segfault and |
| 46 | # create bogus directories in /var/lib/ |
141 | # create bogus directories in /var/lib/ |
| 47 | dodir /var/lib/scrollkeeper |
142 | local sk_tmp_dir="/var/lib/scrollkeeper" |
|
|
143 | dodir "${sk_tmp_dir}" || die "dodir failed" |
| 48 | |
144 | |
| 49 | # we must delay gconf schema installation due to sandbox |
145 | # we must delay gconf schema installation due to sandbox |
| 50 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
146 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 51 | |
147 | |
| 52 | if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
148 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 53 | einstall "scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/" "$@" || die "einstall failed" |
149 | debug-print "Installing with 'make install'" |
|
|
150 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
| 54 | else |
151 | else |
| 55 | make DESTDIR=${D} \ |
152 | debug-print "Installing with 'einstall'" |
| 56 | "$@" install || die "make DESTDIR install failed" |
153 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 57 | fi |
154 | fi |
| 58 | |
155 | |
| 59 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
156 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 60 | |
157 | |
| 61 | # manual document installation |
158 | # Manual document installation |
| 62 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
159 | if [[ -n "${DOCS}" ]]; then |
|
|
160 | dodoc ${DOCS} || die "dodoc failed" |
|
|
161 | fi |
| 63 | |
162 | |
| 64 | # do not keep /var/lib/scrollkeeper because: |
163 | # Do not keep /var/lib/scrollkeeper because: |
| 65 | # 1. scrollkeeper will get regenerated at pkg_postinst() |
164 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
| 66 | # 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
165 | # 2. ${ED}/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. |
166 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
| 68 | |
|
|
| 69 | if [ -z "`find ${D} -name '*.omf'`" ]; then |
167 | if [[ -z "$(find "${D}" -name '*.omf')" ]]; then |
| 70 | export SCROLLKEEPER_UPDATE="0" |
168 | export SCROLLKEEPER_UPDATE="0" |
| 71 | fi |
169 | fi |
|
|
170 | rm -rf "${ED}${sk_tmp_dir}" |
| 72 | |
171 | |
| 73 | # regenerate these in pkg_postinst() |
|
|
| 74 | rm -rf ${D}/var/lib/scrollkeeper |
|
|
| 75 | # make sure this one doesn't get in the portage db |
172 | # Make sure this one doesn't get in the portage db |
| 76 | rm -fr ${D}/usr/share/applications/mimeinfo.cache |
173 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
| 77 | |
174 | |
| 78 | } |
175 | # Delete all .la files |
| 79 | |
176 | if [[ "${GNOME2_LA_PUNT}" != "no" ]]; then |
| 80 | |
177 | ebegin "Removing .la files" |
| 81 | gnome2_gconf_install() { |
178 | find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" |
| 82 | |
179 | eend |
| 83 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
|
|
| 84 | then |
|
|
| 85 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
| 86 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
|
|
| 87 | 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 |
|
|
| 89 | if [ -e "${F}" ]; then |
|
|
| 90 | # echo "DEBUG::gconf install ${F}" |
|
|
| 91 | ${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F} 1>/dev/null |
|
|
| 92 | fi |
180 | fi |
| 93 | done |
|
|
| 94 | fi |
|
|
| 95 | |
|
|
| 96 | } |
181 | } |
| 97 | |
182 | |
| 98 | gnome2_gconf_uninstall() { |
183 | # @FUNCTION: gnome2_pkg_preinst |
| 99 | |
184 | # @DESCRIPTION: |
| 100 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
185 | # Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
| 101 | then |
186 | gnome2_pkg_preinst() { |
| 102 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
187 | gnome2_gconf_savelist |
| 103 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
188 | gnome2_icon_savelist |
| 104 | einfo "Uninstalling GNOME 2 GConf schemas" |
189 | gnome2_schemas_savelist |
| 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 | |
|
|
| 111 | } |
190 | } |
| 112 | |
191 | |
| 113 | gnome2_icon_cache_update() { |
192 | # @FUNCTION: gnome2_pkg_postinst |
| 114 | local updater=`which gtk-update-icon-cache` |
193 | # @DESCRIPTION: |
| 115 | if ! grep -q "obj /usr/share/icons" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS \ |
194 | # Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
| 116 | || [ ! -x "$updater" ]; then |
195 | # database updates. |
| 117 | # Nothing to update |
|
|
| 118 | return |
|
|
| 119 | fi |
|
|
| 120 | |
|
|
| 121 | ebegin "Updating icons cache" |
|
|
| 122 | |
|
|
| 123 | local retval=0 |
|
|
| 124 | for dir in \ |
|
|
| 125 | $(find ${ROOT}/usr/share/icons -maxdepth 1 -mindepth 1 -type d); do |
|
|
| 126 | $updater -qf $dir || retval=$? |
|
|
| 127 | done |
|
|
| 128 | |
|
|
| 129 | eend $retval |
|
|
| 130 | } |
|
|
| 131 | |
|
|
| 132 | gnome2_omf_fix() { |
|
|
| 133 | |
|
|
| 134 | # workaround/patch against omf.make or omf-install/Makefile.in |
|
|
| 135 | # in order to remove redundant scrollkeeper-updates. |
|
|
| 136 | # - <liquidx@gentoo.org> |
|
|
| 137 | |
|
|
| 138 | local omf_makefiles |
|
|
| 139 | |
|
|
| 140 | omf_makefiles="$@" |
|
|
| 141 | |
|
|
| 142 | [ -f ${S}/omf-install/Makefile.in ] \ |
|
|
| 143 | && omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
|
|
| 144 | |
|
|
| 145 | # FIXME: does this really work? because omf.make only gets included |
|
|
| 146 | # when autoconf/automake is run. You should directly patch |
|
|
| 147 | # the Makefile.in's |
|
|
| 148 | |
|
|
| 149 | [ -f ${S}/omf.make ] \ |
|
|
| 150 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
|
|
| 151 | |
|
|
| 152 | for omf in ${omf_makefiles}; do |
|
|
| 153 | omfbase=$(basename ${omf}) |
|
|
| 154 | einfo "Fixing OMF Makefile: ${omf#${S}/}" |
|
|
| 155 | sed -i -e 's:-scrollkeeper-update.*::' ${omf} |
|
|
| 156 | done |
|
|
| 157 | |
|
|
| 158 | } |
|
|
| 159 | |
|
|
| 160 | gnome2_scrollkeeper_update() { |
|
|
| 161 | |
|
|
| 162 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
|
|
| 163 | then |
|
|
| 164 | echo ">>> Updating Scrollkeeper" |
|
|
| 165 | scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
|
|
| 166 | fi |
|
|
| 167 | |
|
|
| 168 | } |
|
|
| 169 | |
|
|
| 170 | gnome2_pkg_postinst() { |
196 | gnome2_pkg_postinst() { |
| 171 | |
|
|
| 172 | gnome2_gconf_install |
197 | gnome2_gconf_install |
| 173 | gnome2_scrollkeeper_update |
|
|
| 174 | fdo-mime_desktop_database_update |
198 | fdo-mime_desktop_database_update |
| 175 | fdo-mime_mime_database_update |
199 | fdo-mime_mime_database_update |
| 176 | gnome2_icon_cache_update |
200 | gnome2_icon_cache_update |
|
|
201 | gnome2_schemas_update |
| 177 | |
202 | |
|
|
203 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
204 | gnome2_scrollkeeper_update |
|
|
205 | fi |
| 178 | } |
206 | } |
| 179 | |
207 | |
|
|
208 | # @#FUNCTION: gnome2_pkg_prerm |
|
|
209 | # @#DESCRIPTION: |
|
|
210 | # # FIXME Handle GConf schemas removal |
| 180 | #gnome2_pkg_prerm() { |
211 | #gnome2_pkg_prerm() { |
| 181 | |
|
|
| 182 | # gnome2_gconf_uninstall |
212 | # gnome2_gconf_uninstall |
| 183 | |
|
|
| 184 | #} |
213 | #} |
| 185 | |
214 | |
|
|
215 | # @FUNCTION: gnome2_pkg_postrm |
|
|
216 | # @DESCRIPTION: |
|
|
217 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
| 186 | gnome2_pkg_postrm() { |
218 | gnome2_pkg_postrm() { |
| 187 | |
|
|
| 188 | gnome2_scrollkeeper_update |
|
|
| 189 | fdo-mime_desktop_database_update |
219 | fdo-mime_desktop_database_update |
| 190 | fdo-mime_mime_database_update |
220 | fdo-mime_mime_database_update |
| 191 | gnome2_icon_cache_update |
221 | gnome2_icon_cache_update |
|
|
222 | gnome2_schemas_update --uninstall |
| 192 | |
223 | |
|
|
224 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
225 | gnome2_scrollkeeper_update |
|
|
226 | fi |
| 193 | } |
227 | } |
| 194 | |
|
|
| 195 | #EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_prerm pkg_postrm |
|
|
| 196 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
|
|