| 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.107 2012/09/27 16:35:41 axs 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 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 | GNOME2_LA_PUNT=${GNOME2_LA_PUNT:-"no"} |
| 24 | |
36 | |
|
|
37 | # @ECLASS-VARIABLE: ELTCONF |
|
|
38 | # @DEFAULT-UNSET |
|
|
39 | # @DESCRIPTION: |
|
|
40 | # Extra options passed to elibtoolize |
|
|
41 | ELTCONF=${ELTCONF:-""} |
|
|
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 | # Prepare environment for build, fix build of scrollkeeper documentation, |
|
|
89 | # run elibtoolize. |
|
|
90 | gnome2_src_prepare() { |
|
|
91 | # Prevent assorted access violations and test failures |
|
|
92 | gnome2_environment_reset |
|
|
93 | |
|
|
94 | # Prevent scrollkeeper access violations |
|
|
95 | gnome2_omf_fix |
|
|
96 | |
|
|
97 | # Run libtoolize |
|
|
98 | if has ${EAPI:-0} 0 1 2 3; then |
|
|
99 | elibtoolize ${ELTCONF} |
|
|
100 | else |
|
|
101 | # Everything is fatal EAPI 4 onwards |
|
|
102 | nonfatal elibtoolize ${ELTCONF} |
|
|
103 | fi |
|
|
104 | |
|
|
105 | } |
|
|
106 | |
|
|
107 | # @FUNCTION: gnome2_src_configure |
|
|
108 | # @DESCRIPTION: |
|
|
109 | # Gnome specific configure handling |
| 25 | gnome2_src_configure() { |
110 | gnome2_src_configure() { |
| 26 | elibtoolize ${ELTCONF} |
111 | # Update the GNOME configuration options |
| 27 | # doc keyword for gtk-doc |
112 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
| 28 | use doc \ |
113 | if use debug ; then |
| 29 | && G2CONF="${G2CONF} --enable-gtk-doc" \ |
114 | G2CONF="${G2CONF} --enable-debug=yes" |
|
|
115 | fi |
|
|
116 | fi |
|
|
117 | |
|
|
118 | # Prevent a QA warning |
|
|
119 | if has doc ${IUSE} ; then |
|
|
120 | grep -q "enable-gtk-doc" configure && G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
|
|
121 | fi |
|
|
122 | |
|
|
123 | # Pass --disable-maintainer-mode when needed |
|
|
124 | if grep -q "^[[:space:]]*AM_MAINTAINER_MODE(\[enable\])" configure.*; then |
| 30 | || G2CONF="${G2CONF} --disable-gtk-doc" |
125 | G2CONF="${G2CONF} --disable-maintainer-mode" |
|
|
126 | fi |
| 31 | |
127 | |
| 32 | econf ${@} ${G2CONF} || die "./configure failure" |
128 | # Pass --disable-scrollkeeper when possible |
|
|
129 | if grep -q "disable-scrollkeeper" configure; then |
|
|
130 | G2CONF="${G2CONF} --disable-scrollkeeper" |
|
|
131 | fi |
| 33 | |
132 | |
| 34 | } |
133 | # Avoid sandbox violations caused by gnome-vfs (bug #128289 and #345659) |
|
|
134 | addwrite "$(unset HOME; echo ~)/.gnome2" |
| 35 | |
135 | |
|
|
136 | econf "$@" ${G2CONF} |
|
|
137 | } |
|
|
138 | |
|
|
139 | # @FUNCTION: gnome2_src_compile |
|
|
140 | # @DESCRIPTION: |
|
|
141 | # Stub function for old EAPI. |
| 36 | gnome2_src_compile() { |
142 | gnome2_src_compile() { |
| 37 | |
143 | has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
| 38 | gnome2_src_configure ${@} |
|
|
| 39 | emake || die "compile failure" |
144 | emake || die "compile failure" |
| 40 | |
|
|
| 41 | } |
145 | } |
| 42 | |
146 | |
|
|
147 | # @FUNCTION: gnome2_src_install |
|
|
148 | # @DESCRIPTION: |
|
|
149 | # Gnome specific install. Handles typical GConf and scrollkeeper setup |
|
|
150 | # in packages and removal of .la files if requested |
| 43 | gnome2_src_install() { |
151 | gnome2_src_install() { |
| 44 | |
152 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
| 45 | # if this is not present, scrollkeeper-update may segfault and |
153 | # if this is not present, scrollkeeper-update may segfault and |
| 46 | # create bogus directories in /var/lib/ |
154 | # create bogus directories in /var/lib/ |
| 47 | dodir /var/lib/scrollkeeper |
155 | local sk_tmp_dir="/var/lib/scrollkeeper" |
|
|
156 | dodir "${sk_tmp_dir}" || die "dodir failed" |
| 48 | |
157 | |
| 49 | # we must delay gconf schema installation due to sandbox |
158 | # we must delay gconf schema installation due to sandbox |
| 50 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
159 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 51 | |
160 | |
| 52 | if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
161 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 53 | einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ " ${@} |
162 | debug-print "Installing with 'make install'" |
|
|
163 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
| 54 | else |
164 | else |
| 55 | make DESTDIR=${D} \ |
165 | debug-print "Installing with 'einstall'" |
| 56 | scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper \ |
166 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 57 | ${@} install |
|
|
| 58 | fi |
167 | fi |
| 59 | |
168 | |
| 60 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
169 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 61 | |
170 | |
| 62 | # manual document installation |
171 | # Manual document installation |
| 63 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
172 | if [[ -n "${DOCS}" ]]; then |
|
|
173 | dodoc ${DOCS} || die "dodoc failed" |
|
|
174 | fi |
| 64 | |
175 | |
| 65 | # do not keep /var/lib/scrollkeeper because: |
176 | # Do not keep /var/lib/scrollkeeper because: |
| 66 | # 1. scrollkeeper will get regenerated at pkg_postinst() |
177 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
| 67 | # 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
178 | # 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. |
179 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
|
|
180 | rm -rf "${ED}${sk_tmp_dir}" |
|
|
181 | rmdir "${ED}/var/lib" 2>/dev/null |
|
|
182 | rmdir "${ED}/var" 2>/dev/null |
| 69 | |
183 | |
| 70 | if [ -z "`find ${D} -name '*.omf'`" ]; then |
184 | # Make sure this one doesn't get in the portage db |
| 71 | export SCROLLKEEPER_UPDATE="0" |
185 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
|
|
186 | |
|
|
187 | # Delete all .la files |
|
|
188 | if [[ "${GNOME2_LA_PUNT}" != "no" ]]; then |
|
|
189 | ebegin "Removing .la files" |
|
|
190 | if ! { has static-libs ${IUSE//+} && use static-libs; }; then |
|
|
191 | find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" |
| 72 | fi |
192 | fi |
| 73 | |
193 | eend |
| 74 | # regenerate these in pkg_postinst() |
|
|
| 75 | rm -rf ${D}/var/lib/scrollkeeper |
|
|
| 76 | } |
|
|
| 77 | |
|
|
| 78 | |
|
|
| 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 |
194 | fi |
| 90 | } |
195 | } |
| 91 | |
196 | |
| 92 | gnome2_omf_fix() { |
197 | # @FUNCTION: gnome2_pkg_preinst |
| 93 | # workaround/patch against omf.make or omf-install/Makefile.in |
198 | # @DESCRIPTION: |
| 94 | # in order to remove redundant scrollkeeper-updates. |
199 | # Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
| 95 | # - <liquidx@gentoo.org> |
200 | gnome2_pkg_preinst() { |
| 96 | |
201 | gnome2_gconf_savelist |
| 97 | local omf_makefiles |
202 | gnome2_icon_savelist |
| 98 | |
203 | gnome2_schemas_savelist |
| 99 | omf_makefiles="$@" |
204 | 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 | } |
205 | } |
| 113 | |
206 | |
| 114 | gnome2_scrollkeeper_update() { |
207 | # @FUNCTION: gnome2_pkg_postinst |
| 115 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
208 | # @DESCRIPTION: |
| 116 | then |
209 | # Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
| 117 | echo ">>> Updating Scrollkeeper" |
210 | # database updates. |
| 118 | scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
|
|
| 119 | fi |
|
|
| 120 | } |
|
|
| 121 | |
|
|
| 122 | gnome2_pkg_postinst() { |
211 | gnome2_pkg_postinst() { |
| 123 | gnome2_gconf_install |
212 | gnome2_gconf_install |
|
|
213 | fdo-mime_desktop_database_update |
|
|
214 | fdo-mime_mime_database_update |
|
|
215 | gnome2_icon_cache_update |
|
|
216 | gnome2_schemas_update |
| 124 | gnome2_scrollkeeper_update |
217 | gnome2_scrollkeeper_update |
| 125 | } |
218 | } |
| 126 | |
219 | |
|
|
220 | # @#FUNCTION: gnome2_pkg_prerm |
|
|
221 | # @#DESCRIPTION: |
|
|
222 | # # FIXME Handle GConf schemas removal |
|
|
223 | #gnome2_pkg_prerm() { |
|
|
224 | # gnome2_gconf_uninstall |
|
|
225 | #} |
|
|
226 | |
|
|
227 | # @FUNCTION: gnome2_pkg_postrm |
|
|
228 | # @DESCRIPTION: |
|
|
229 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
| 127 | gnome2_pkg_postrm() { |
230 | gnome2_pkg_postrm() { |
|
|
231 | fdo-mime_desktop_database_update |
|
|
232 | fdo-mime_mime_database_update |
|
|
233 | gnome2_icon_cache_update |
|
|
234 | gnome2_schemas_update |
| 128 | gnome2_scrollkeeper_update |
235 | gnome2_scrollkeeper_update |
| 129 | } |
236 | } |
| 130 | |
|
|
| 131 | |
|
|
| 132 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
|
|
| 133 | |
|
|
| 134 | |
|
|