| 1 | # Copyright 1999-2002 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.1 2002/06/01 02:55:47 blocke Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.110 2012/11/07 19:25:35 pacho Exp $ |
| 4 | |
4 | |
| 5 | # Gnome 2 ECLASS |
5 | # @ECLASS: gnome2.eclass |
| 6 | ECLASS="gnome2" |
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. |
| 7 | |
12 | |
| 8 | # DEBUG for Beta |
13 | inherit fdo-mime libtool gnome.org gnome2-utils |
| 9 | # Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ |
|
|
| 10 | DEBUG="yes" |
|
|
| 11 | RESTRICT="nostrip" |
|
|
| 12 | # force debug information |
|
|
| 13 | CFLAGS="${CFLAGS} -g" |
|
|
| 14 | CXXFLAGS="${CXXFLAGS} -g" |
|
|
| 15 | |
14 | |
|
|
15 | case "${EAPI:-0}" in |
|
|
16 | 0|1) |
|
|
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 |
| 16 | |
24 | |
|
|
25 | # @ECLASS-VARIABLE: G2CONF |
|
|
26 | # @DEFAULT-UNSET |
|
|
27 | # @DESCRIPTION: |
|
|
28 | # Extra configure opts passed to econf |
|
|
29 | G2CONF=${G2CONF:-""} |
|
|
30 | |
|
|
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"} |
|
|
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 | # Disable all deprecation warnings |
|
|
98 | gnome2_disable_deprecation_warning |
|
|
99 | |
|
|
100 | # Run libtoolize |
|
|
101 | if has ${EAPI:-0} 0 1 2 3; then |
|
|
102 | elibtoolize ${ELTCONF} |
|
|
103 | else |
|
|
104 | # Everything is fatal EAPI 4 onwards |
|
|
105 | nonfatal elibtoolize ${ELTCONF} |
|
|
106 | fi |
|
|
107 | |
|
|
108 | } |
|
|
109 | |
|
|
110 | # @FUNCTION: gnome2_src_configure |
|
|
111 | # @DESCRIPTION: |
|
|
112 | # Gnome specific configure handling |
|
|
113 | gnome2_src_configure() { |
|
|
114 | # Update the GNOME configuration options |
|
|
115 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
|
|
116 | if use debug ; then |
|
|
117 | G2CONF="${G2CONF} --enable-debug=yes" |
|
|
118 | fi |
|
|
119 | fi |
|
|
120 | |
|
|
121 | # Prevent a QA warning |
|
|
122 | if has doc ${IUSE} ; then |
|
|
123 | grep -q "enable-gtk-doc" configure && G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
|
|
124 | fi |
|
|
125 | |
|
|
126 | # Pass --disable-maintainer-mode when needed |
|
|
127 | if grep -q "^[[:space:]]*AM_MAINTAINER_MODE(\[enable\])" configure.*; then |
|
|
128 | G2CONF="${G2CONF} --disable-maintainer-mode" |
|
|
129 | fi |
|
|
130 | |
|
|
131 | # Pass --disable-scrollkeeper when possible |
|
|
132 | if grep -q "disable-scrollkeeper" configure; then |
|
|
133 | G2CONF="${G2CONF} --disable-scrollkeeper" |
|
|
134 | fi |
|
|
135 | |
|
|
136 | # Pass --disable-silent-rules when possible (not needed for eapi5), bug #429308 |
|
|
137 | if has ${EAPI:-0} 0 1 2 3 4; then |
|
|
138 | if grep -q "disable-silent-rules" configure; then |
|
|
139 | G2CONF="${G2CONF} --disable-silent-rules" |
|
|
140 | fi |
|
|
141 | fi |
|
|
142 | |
|
|
143 | # Pass --disable-schemas-install when possible |
|
|
144 | if grep -q "disable-schemas-install" configure; then |
|
|
145 | G2CONF="${G2CONF} --disable-schemas-install" |
|
|
146 | fi |
|
|
147 | |
|
|
148 | # Avoid sandbox violations caused by gnome-vfs (bug #128289 and #345659) |
|
|
149 | addwrite "$(unset HOME; echo ~)/.gnome2" |
|
|
150 | |
|
|
151 | econf "$@" ${G2CONF} |
|
|
152 | } |
|
|
153 | |
|
|
154 | # @FUNCTION: gnome2_src_compile |
|
|
155 | # @DESCRIPTION: |
|
|
156 | # Stub function for old EAPI. |
| 17 | gnome2_src_compile() { |
157 | gnome2_src_compile() { |
| 18 | |
158 | has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
| 19 | libtoolize --copy --force |
|
|
| 20 | |
|
|
| 21 | econf "${1} --enable-debug=yes" || die "./configure failure" |
|
|
| 22 | emake || die "compile failure" |
159 | emake || die "compile failure" |
| 23 | |
|
|
| 24 | } |
160 | } |
| 25 | |
161 | |
|
|
162 | # @FUNCTION: gnome2_src_install |
|
|
163 | # @DESCRIPTION: |
|
|
164 | # Gnome specific install. Handles typical GConf and scrollkeeper setup |
|
|
165 | # in packages and removal of .la files if requested |
| 26 | gnome2_src_install() { |
166 | gnome2_src_install() { |
|
|
167 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
|
|
168 | # if this is not present, scrollkeeper-update may segfault and |
|
|
169 | # create bogus directories in /var/lib/ |
|
|
170 | local sk_tmp_dir="/var/lib/scrollkeeper" |
|
|
171 | dodir "${sk_tmp_dir}" || die "dodir failed" |
| 27 | |
172 | |
| 28 | einstall ${1} |
173 | # we must delay gconf schema installation due to sandbox |
|
|
174 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 29 | |
175 | |
|
|
176 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
|
|
177 | debug-print "Installing with 'make install'" |
|
|
178 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
|
|
179 | else |
|
|
180 | debug-print "Installing with 'einstall'" |
|
|
181 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
|
|
182 | fi |
|
|
183 | |
|
|
184 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
185 | |
| 30 | # manual document installation |
186 | # Manual document installation |
| 31 | if [ -n "${DOC}" && use doc ] |
187 | if [[ -n "${DOCS}" ]]; then |
| 32 | then |
188 | dodoc ${DOCS} || die "dodoc failed" |
| 33 | for x in $DOC; do dodoc $x; done |
189 | fi |
|
|
190 | |
|
|
191 | # Do not keep /var/lib/scrollkeeper because: |
|
|
192 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
|
|
193 | # 2. ${ED}/var/lib/scrollkeeper contains only indexes for the current pkg |
|
|
194 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
|
|
195 | rm -rf "${ED}${sk_tmp_dir}" |
|
|
196 | rmdir "${ED}/var/lib" 2>/dev/null |
|
|
197 | rmdir "${ED}/var" 2>/dev/null |
|
|
198 | |
|
|
199 | # Make sure this one doesn't get in the portage db |
|
|
200 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
|
|
201 | |
|
|
202 | # Delete all .la files |
|
|
203 | if [[ "${GNOME2_LA_PUNT}" != "no" ]]; then |
|
|
204 | ebegin "Removing .la files" |
|
|
205 | if ! { has static-libs ${IUSE//+} && use static-libs; }; then |
|
|
206 | find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" |
| 34 | fi |
207 | fi |
| 35 | |
208 | eend |
|
|
209 | fi |
| 36 | } |
210 | } |
| 37 | |
211 | |
|
|
212 | # @FUNCTION: gnome2_pkg_preinst |
|
|
213 | # @DESCRIPTION: |
|
|
214 | # Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
|
|
215 | gnome2_pkg_preinst() { |
|
|
216 | gnome2_gconf_savelist |
|
|
217 | gnome2_icon_savelist |
|
|
218 | gnome2_schemas_savelist |
|
|
219 | gnome2_scrollkeeper_savelist |
|
|
220 | } |
|
|
221 | |
|
|
222 | # @FUNCTION: gnome2_pkg_postinst |
|
|
223 | # @DESCRIPTION: |
|
|
224 | # Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
|
|
225 | # database updates. |
| 38 | gnome2_pkg_postinst() { |
226 | gnome2_pkg_postinst() { |
| 39 | |
227 | gnome2_gconf_install |
| 40 | # manual schema installation |
228 | fdo-mime_desktop_database_update |
| 41 | if [ -n "${SCHEMA}" ] |
229 | fdo-mime_mime_database_update |
| 42 | then |
230 | gnome2_icon_cache_update |
| 43 | for x in $SCHEMA |
231 | gnome2_schemas_update |
| 44 | do |
232 | gnome2_scrollkeeper_update |
| 45 | /usr/bin/gconftool-2 --makefile-install-rule \ |
|
|
| 46 | /etc/gconf/schemas/${SCHEMA} |
|
|
| 47 | done |
|
|
| 48 | fi |
|
|
| 49 | } |
233 | } |
| 50 | |
234 | |
|
|
235 | # @#FUNCTION: gnome2_pkg_prerm |
|
|
236 | # @#DESCRIPTION: |
|
|
237 | # # FIXME Handle GConf schemas removal |
|
|
238 | #gnome2_pkg_prerm() { |
|
|
239 | # gnome2_gconf_uninstall |
|
|
240 | #} |
| 51 | |
241 | |
| 52 | |
242 | # @FUNCTION: gnome2_pkg_postrm |
| 53 | |
243 | # @DESCRIPTION: |
|
|
244 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
|
|
245 | gnome2_pkg_postrm() { |
|
|
246 | fdo-mime_desktop_database_update |
|
|
247 | fdo-mime_mime_database_update |
|
|
248 | gnome2_icon_cache_update |
|
|
249 | gnome2_schemas_update |
|
|
250 | gnome2_scrollkeeper_update |
|
|
251 | } |