| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2012 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.113 2012/11/26 15:47:20 tetromino Exp $ |
| 4 | # |
|
|
| 5 | # Authors: |
|
|
| 6 | # Bruce A. Locke <blocke@shivan.org> |
|
|
| 7 | # Spidler <spidler@gentoo.org> |
|
|
| 8 | |
4 | |
| 9 | inherit libtool gnome.org |
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 | # accept both $DEBUG and USE="debug" |
13 | inherit eutils fdo-mime libtool gnome.org gnome2-utils |
| 12 | [ -n "$DEBUG" -o -n "`use debug`" ] && inherit debug |
|
|
| 13 | |
14 | |
| 14 | # Gnome 2 ECLASS |
15 | case "${EAPI:-0}" in |
| 15 | ECLASS="gnome2" |
16 | 0|1) |
| 16 | INHERITED="$INHERITED $ECLASS" |
17 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|
18 | ;; |
|
|
19 | 2|3|4|5) |
|
|
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 | G2CONF="" # extra configure opts passed to econf |
25 | # @ECLASS-VARIABLE: G2CONF |
| 19 | ELTCONF="" # extra options passed to elibtoolize |
26 | # @DEFAULT-UNSET |
| 20 | SCROLLKEEPER_UPDATE="1" # whether to run scrollkeeper for this package |
27 | # @DESCRIPTION: |
| 21 | USE_DESTDIR="" # use make DESTDIR=${D} install rather than einstall |
28 | # Extra configure opts passed to econf |
|
|
29 | G2CONF=${G2CONF:-""} |
| 22 | |
30 | |
| 23 | [ -n "$DEBUG" -o -n "`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 | if has ${EAPI:-0} 0 1 2 3 4; then |
|
|
36 | GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-"no"} |
|
|
37 | else |
|
|
38 | GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-""} |
|
|
39 | fi |
| 24 | |
40 | |
|
|
41 | # @ECLASS-VARIABLE: ELTCONF |
|
|
42 | # @DEFAULT-UNSET |
|
|
43 | # @DESCRIPTION: |
|
|
44 | # Extra options passed to elibtoolize |
|
|
45 | ELTCONF=${ELTCONF:-""} |
|
|
46 | |
|
|
47 | # @ECLASS-VARIABLE: USE_EINSTALL |
|
|
48 | # @DEFAULT-UNSET |
|
|
49 | # @DEPRECATED |
|
|
50 | # @DESCRIPTION: |
|
|
51 | # Should we use EINSTALL instead of DESTDIR |
|
|
52 | USE_EINSTALL=${USE_EINSTALL:-""} |
|
|
53 | |
|
|
54 | # @ECLASS-VARIABLE: SCROLLKEEPER_UPDATE |
|
|
55 | # @DEPRECATED |
|
|
56 | # @DESCRIPTION: |
|
|
57 | # Whether to run scrollkeeper for this package or not. |
|
|
58 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
|
|
59 | |
|
|
60 | # @ECLASS-VARIABLE: DOCS |
|
|
61 | # @DEFAULT-UNSET |
|
|
62 | # @DESCRIPTION: |
|
|
63 | # String containing documents passed to dodoc command. |
|
|
64 | |
|
|
65 | # @ECLASS-VARIABLE: GCONF_DEBUG |
|
|
66 | # @DEFAULT_UNSET |
|
|
67 | # @DESCRIPTION: |
|
|
68 | # Whether to handle debug or not. |
|
|
69 | # Some gnome applications support various levels of debugging (yes, no, minimum, |
|
|
70 | # etc), but using --disable-debug also removes g_assert which makes debugging |
|
|
71 | # harder. This variable should be set to yes for such packages for the eclass |
|
|
72 | # to handle it properly. It will enable minimal debug with USE=-debug. |
|
|
73 | # Note that this is most commonly found in configure.ac as GNOME_DEBUG_CHECK. |
|
|
74 | |
|
|
75 | |
|
|
76 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
|
|
77 | IUSE="debug" |
|
|
78 | fi |
|
|
79 | |
|
|
80 | |
|
|
81 | # @FUNCTION: gnome2_src_unpack |
|
|
82 | # @DESCRIPTION: |
|
|
83 | # Stub function for old EAPI. |
|
|
84 | gnome2_src_unpack() { |
|
|
85 | unpack ${A} |
|
|
86 | cd "${S}" |
|
|
87 | has ${EAPI:-0} 0 1 && gnome2_src_prepare |
|
|
88 | } |
|
|
89 | |
|
|
90 | # @FUNCTION: gnome2_src_prepare |
|
|
91 | # @DESCRIPTION: |
|
|
92 | # Prepare environment for build, fix build of scrollkeeper documentation, |
|
|
93 | # run elibtoolize. |
|
|
94 | gnome2_src_prepare() { |
|
|
95 | # Prevent assorted access violations and test failures |
|
|
96 | gnome2_environment_reset |
|
|
97 | |
|
|
98 | # Prevent scrollkeeper access violations |
|
|
99 | gnome2_omf_fix |
|
|
100 | |
|
|
101 | # Disable all deprecation warnings |
|
|
102 | gnome2_disable_deprecation_warning |
|
|
103 | |
|
|
104 | # Run libtoolize |
|
|
105 | if has ${EAPI:-0} 0 1 2 3; then |
|
|
106 | elibtoolize ${ELTCONF} |
|
|
107 | else |
|
|
108 | # Everything is fatal EAPI 4 onwards |
|
|
109 | nonfatal elibtoolize ${ELTCONF} |
|
|
110 | fi |
|
|
111 | |
|
|
112 | } |
|
|
113 | |
|
|
114 | # @FUNCTION: gnome2_src_configure |
|
|
115 | # @DESCRIPTION: |
|
|
116 | # Gnome specific configure handling |
| 25 | gnome2_src_configure() { |
117 | gnome2_src_configure() { |
| 26 | elibtoolize ${ELTCONF} |
118 | # Update the GNOME configuration options |
| 27 | # doc keyword for gtk-doc |
119 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
| 28 | use doc \ |
120 | if use debug ; then |
| 29 | && G2CONF="${G2CONF} --enable-gtk-doc" \ |
121 | G2CONF="${G2CONF} --enable-debug=yes" |
|
|
122 | fi |
|
|
123 | fi |
|
|
124 | |
|
|
125 | # Prevent a QA warning |
|
|
126 | if has doc ${IUSE} ; then |
|
|
127 | grep -q "enable-gtk-doc" configure && G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
|
|
128 | fi |
|
|
129 | |
|
|
130 | # Pass --disable-maintainer-mode when needed |
|
|
131 | if grep -q "^[[:space:]]*AM_MAINTAINER_MODE(\[enable\])" configure.*; then |
| 30 | || G2CONF="${G2CONF} --disable-gtk-doc" |
132 | G2CONF="${G2CONF} --disable-maintainer-mode" |
|
|
133 | fi |
| 31 | |
134 | |
| 32 | econf ${@} ${G2CONF} || die "./configure failure" |
135 | # Pass --disable-scrollkeeper when possible |
|
|
136 | if grep -q "disable-scrollkeeper" configure; then |
|
|
137 | G2CONF="${G2CONF} --disable-scrollkeeper" |
|
|
138 | fi |
| 33 | |
139 | |
| 34 | } |
140 | # Pass --disable-silent-rules when possible (not needed for eapi5), bug #429308 |
|
|
141 | if has ${EAPI:-0} 0 1 2 3 4; then |
|
|
142 | if grep -q "disable-silent-rules" configure; then |
|
|
143 | G2CONF="${G2CONF} --disable-silent-rules" |
|
|
144 | fi |
|
|
145 | fi |
| 35 | |
146 | |
|
|
147 | # Pass --disable-schemas-install when possible |
|
|
148 | if grep -q "disable-schemas-install" configure; then |
|
|
149 | G2CONF="${G2CONF} --disable-schemas-install" |
|
|
150 | fi |
|
|
151 | |
|
|
152 | # Avoid sandbox violations caused by gnome-vfs (bug #128289 and #345659) |
|
|
153 | addwrite "$(unset HOME; echo ~)/.gnome2" |
|
|
154 | |
|
|
155 | econf "$@" ${G2CONF} |
|
|
156 | } |
|
|
157 | |
|
|
158 | # @FUNCTION: gnome2_src_compile |
|
|
159 | # @DESCRIPTION: |
|
|
160 | # Stub function for old EAPI. |
| 36 | gnome2_src_compile() { |
161 | gnome2_src_compile() { |
| 37 | |
162 | has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
| 38 | gnome2_src_configure ${@} |
|
|
| 39 | emake || die "compile failure" |
163 | emake || die "compile failure" |
| 40 | |
|
|
| 41 | } |
164 | } |
| 42 | |
165 | |
|
|
166 | # @FUNCTION: gnome2_src_install |
|
|
167 | # @DESCRIPTION: |
|
|
168 | # Gnome specific install. Handles typical GConf and scrollkeeper setup |
|
|
169 | # in packages and removal of .la files if requested |
| 43 | gnome2_src_install() { |
170 | gnome2_src_install() { |
| 44 | |
171 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
| 45 | # if this is not present, scrollkeeper-update may segfault and |
172 | # if this is not present, scrollkeeper-update may segfault and |
| 46 | # create bogus directories in /var/lib/ |
173 | # create bogus directories in /var/lib/ |
| 47 | dodir /var/lib/scrollkeeper |
174 | local sk_tmp_dir="/var/lib/scrollkeeper" |
|
|
175 | dodir "${sk_tmp_dir}" || die "dodir failed" |
| 48 | |
176 | |
| 49 | # we must delay gconf schema installation due to sandbox |
177 | # we must delay gconf schema installation due to sandbox |
| 50 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
178 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 51 | |
179 | |
| 52 | if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
180 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 53 | einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ " ${@} |
181 | debug-print "Installing with 'make install'" |
|
|
182 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
| 54 | else |
183 | else |
| 55 | make DESTDIR=${D} \ |
184 | debug-print "Installing with 'einstall'" |
| 56 | scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper \ |
185 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 57 | ${@} install |
|
|
| 58 | fi |
186 | fi |
| 59 | |
187 | |
| 60 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
188 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 61 | |
189 | |
|
|
190 | # Handle documentation as 'default' for eapi5 and newer, bug #373131 |
|
|
191 | if has ${EAPI:-0} 0 1 2 3 4; then |
| 62 | # manual document installation |
192 | # Manual document installation |
| 63 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
193 | if [[ -n "${DOCS}" ]]; then |
|
|
194 | dodoc ${DOCS} || die "dodoc failed" |
|
|
195 | fi |
|
|
196 | else |
|
|
197 | if ! declare -p DOCS >/dev/null 2>&1 ; then |
|
|
198 | local d |
|
|
199 | for d in README* ChangeLog AUTHORS NEWS TODO CHANGES THANKS BUGS \ |
|
|
200 | FAQ CREDITS CHANGELOG ; do |
|
|
201 | [[ -s "${d}" ]] && dodoc "${d}" |
|
|
202 | done |
|
|
203 | elif declare -p DOCS | grep -q '^declare -a ' ; then |
|
|
204 | dodoc "${DOCS[@]}" |
|
|
205 | else |
|
|
206 | dodoc ${DOCS} |
|
|
207 | fi |
|
|
208 | fi |
| 64 | |
209 | |
| 65 | # do not keep /var/lib/scrollkeeper because: |
210 | # Do not keep /var/lib/scrollkeeper because: |
| 66 | # 1. scrollkeeper will get regenerated at pkg_postinst() |
211 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
| 67 | # 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
212 | # 2. ${ED}/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. |
213 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
|
|
214 | rm -rf "${ED}${sk_tmp_dir}" |
|
|
215 | rmdir "${ED}/var/lib" 2>/dev/null |
|
|
216 | rmdir "${ED}/var" 2>/dev/null |
| 69 | |
217 | |
| 70 | if [ -z "`find ${D} -name '*.omf'`" ]; then |
218 | # Make sure this one doesn't get in the portage db |
| 71 | export SCROLLKEEPER_UPDATE="0" |
219 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
|
|
220 | |
|
|
221 | # Delete all .la files |
|
|
222 | if has ${EAPI:-0} 0 1 2 3 4; then |
|
|
223 | if [[ "${GNOME2_LA_PUNT}" != "no" ]]; then |
|
|
224 | ebegin "Removing .la files" |
|
|
225 | if ! { has static-libs ${IUSE//+} && use static-libs; }; then |
|
|
226 | find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" |
|
|
227 | fi |
|
|
228 | eend |
| 72 | fi |
229 | fi |
| 73 | |
230 | else |
| 74 | # regenerate these in pkg_postinst() |
231 | case "${GNOME2_LA_PUNT}" in |
| 75 | rm -rf ${D}/var/lib/scrollkeeper |
232 | yes) prune_libtool_files --modules;; |
| 76 | } |
233 | no) ;; |
| 77 | |
234 | *) prune_libtool_files;; |
| 78 | |
235 | esac |
| 79 | gnome2_gconf_install() { |
|
|
| 80 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
|
|
| 81 | then |
|
|
| 82 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
| 83 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
|
|
| 84 | einfo "installing gnome2 gconf schemas" |
|
|
| 85 | 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}" |
|
|
| 87 | ${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F} |
|
|
| 88 | done |
|
|
| 89 | fi |
236 | fi |
| 90 | } |
237 | } |
| 91 | |
238 | |
| 92 | gnome2_omf_fix() { |
239 | # @FUNCTION: gnome2_pkg_preinst |
| 93 | # workaround/patch against omf.make or omf-install/Makefile.in |
240 | # @DESCRIPTION: |
| 94 | # in order to remove redundant scrollkeeper-updates. |
241 | # Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
| 95 | # - <liquidx@gentoo.org> |
242 | gnome2_pkg_preinst() { |
| 96 | |
243 | gnome2_gconf_savelist |
| 97 | local omf_makefiles |
244 | gnome2_icon_savelist |
| 98 | |
245 | gnome2_schemas_savelist |
| 99 | omf_makefiles="$@" |
246 | gnome2_scrollkeeper_savelist |
| 100 | |
|
|
| 101 | [ -f ${S}/omf-install/Makefile.in ] \ |
|
|
| 102 | && omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
|
|
| 103 | [ -f ${S}/omf.make ] \ |
|
|
| 104 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
|
|
| 105 | |
|
|
| 106 | for omf in ${omf_makefiles}; do |
|
|
| 107 | omfbase=$(basename ${omf}) |
|
|
| 108 | einfo "Fixing OMF Makefile: ${omfbase}" |
|
|
| 109 | sed -i -e 's:\(-scrollkeeper-update -p $(localstatedir)/scrollkeeper\)\([ \t\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} |
|
|
| 110 | sed -i -e 's:\(-scrollkeeper-update -p $(scrollkeeper_localstate_dir)\)\([ \t\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} |
|
|
| 111 | done |
|
|
| 112 | } |
247 | } |
| 113 | |
248 | |
| 114 | gnome2_scrollkeeper_update() { |
249 | # @FUNCTION: gnome2_pkg_postinst |
| 115 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
250 | # @DESCRIPTION: |
| 116 | then |
251 | # Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
| 117 | echo ">>> Updating Scrollkeeper" |
252 | # database updates. |
| 118 | scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
|
|
| 119 | fi |
|
|
| 120 | } |
|
|
| 121 | |
|
|
| 122 | gnome2_pkg_postinst() { |
253 | gnome2_pkg_postinst() { |
| 123 | gnome2_gconf_install |
254 | gnome2_gconf_install |
|
|
255 | fdo-mime_desktop_database_update |
|
|
256 | fdo-mime_mime_database_update |
|
|
257 | gnome2_icon_cache_update |
|
|
258 | gnome2_schemas_update |
| 124 | gnome2_scrollkeeper_update |
259 | gnome2_scrollkeeper_update |
| 125 | } |
260 | } |
| 126 | |
261 | |
|
|
262 | # @#FUNCTION: gnome2_pkg_prerm |
|
|
263 | # @#DESCRIPTION: |
|
|
264 | # # FIXME Handle GConf schemas removal |
|
|
265 | #gnome2_pkg_prerm() { |
|
|
266 | # gnome2_gconf_uninstall |
|
|
267 | #} |
|
|
268 | |
|
|
269 | # @FUNCTION: gnome2_pkg_postrm |
|
|
270 | # @DESCRIPTION: |
|
|
271 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
| 127 | gnome2_pkg_postrm() { |
272 | gnome2_pkg_postrm() { |
|
|
273 | fdo-mime_desktop_database_update |
|
|
274 | fdo-mime_mime_database_update |
|
|
275 | gnome2_icon_cache_update |
|
|
276 | gnome2_schemas_update |
| 128 | gnome2_scrollkeeper_update |
277 | gnome2_scrollkeeper_update |
| 129 | } |
278 | } |
| 130 | |
|
|
| 131 | |
|
|
| 132 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
|
|
| 133 | |
|
|
| 134 | |
|
|