| 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.105 2012/05/02 21:05:38 eva 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) |
|
|
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 | # 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 |
|
|
110 | gnome2_src_configure() { |
|
|
111 | # Update the GNOME configuration options |
|
|
112 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
|
|
113 | if use debug ; then |
|
|
114 | G2CONF="${G2CONF} --enable-debug=yes" |
|
|
115 | fi |
|
|
116 | fi |
|
|
117 | |
|
|
118 | # Prevent a QA warning |
|
|
119 | if has doc ${IUSE} ; then |
|
|
120 | 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 |
|
|
125 | G2CONF="${G2CONF} --disable-maintainer-mode" |
|
|
126 | fi |
|
|
127 | |
|
|
128 | # Pass --disable-scrollkeeper when possible |
|
|
129 | if grep -q "disable-scrollkeeper" configure; then |
|
|
130 | G2CONF="${G2CONF} --disable-scrollkeeper" |
|
|
131 | fi |
|
|
132 | |
|
|
133 | # Avoid sandbox violations caused by gnome-vfs (bug #128289 and #345659) |
|
|
134 | addwrite "$(unset HOME; echo ~)/.gnome2" |
|
|
135 | |
|
|
136 | econf "$@" ${G2CONF} |
|
|
137 | } |
|
|
138 | |
|
|
139 | # @FUNCTION: gnome2_src_compile |
|
|
140 | # @DESCRIPTION: |
|
|
141 | # Stub function for old EAPI. |
| 17 | gnome2_src_compile() { |
142 | gnome2_src_compile() { |
| 18 | |
143 | 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" |
144 | emake || die "compile failure" |
| 23 | |
|
|
| 24 | } |
145 | } |
| 25 | |
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 |
| 26 | gnome2_src_install() { |
151 | gnome2_src_install() { |
|
|
152 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
|
|
153 | # if this is not present, scrollkeeper-update may segfault and |
|
|
154 | # create bogus directories in /var/lib/ |
|
|
155 | local sk_tmp_dir="/var/lib/scrollkeeper" |
|
|
156 | dodir "${sk_tmp_dir}" || die "dodir failed" |
| 27 | |
157 | |
| 28 | einstall ${1} |
158 | # we must delay gconf schema installation due to sandbox |
|
|
159 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 29 | |
160 | |
|
|
161 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
|
|
162 | debug-print "Installing with 'make install'" |
|
|
163 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
|
|
164 | else |
|
|
165 | debug-print "Installing with 'einstall'" |
|
|
166 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
|
|
167 | fi |
|
|
168 | |
|
|
169 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
170 | |
| 30 | # manual document installation |
171 | # Manual document installation |
| 31 | if [ -n "${DOC}" && use doc ] |
172 | if [[ -n "${DOCS}" ]]; then |
| 32 | then |
173 | dodoc ${DOCS} || die "dodoc failed" |
| 33 | for x in $DOC; do dodoc $x; done |
174 | fi |
|
|
175 | |
|
|
176 | # Do not keep /var/lib/scrollkeeper because: |
|
|
177 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
|
|
178 | # 2. ${ED}/var/lib/scrollkeeper contains only indexes for the current pkg |
|
|
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 |
|
|
183 | |
|
|
184 | # Make sure this one doesn't get in the portage db |
|
|
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" |
| 34 | fi |
192 | fi |
| 35 | |
193 | eend |
|
|
194 | fi |
| 36 | } |
195 | } |
| 37 | |
196 | |
|
|
197 | # @FUNCTION: gnome2_pkg_preinst |
|
|
198 | # @DESCRIPTION: |
|
|
199 | # Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
|
|
200 | gnome2_pkg_preinst() { |
|
|
201 | gnome2_gconf_savelist |
|
|
202 | gnome2_icon_savelist |
|
|
203 | gnome2_schemas_savelist |
|
|
204 | gnome2_scrollkeeper_savelist |
|
|
205 | } |
|
|
206 | |
|
|
207 | # @FUNCTION: gnome2_pkg_postinst |
|
|
208 | # @DESCRIPTION: |
|
|
209 | # Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
|
|
210 | # database updates. |
| 38 | gnome2_pkg_postinst() { |
211 | gnome2_pkg_postinst() { |
| 39 | |
212 | gnome2_gconf_install |
| 40 | # manual schema installation |
213 | fdo-mime_desktop_database_update |
| 41 | if [ -n "${SCHEMA}" ] |
214 | fdo-mime_mime_database_update |
| 42 | then |
215 | gnome2_icon_cache_update |
| 43 | for x in $SCHEMA |
216 | gnome2_schemas_update |
| 44 | do |
217 | gnome2_scrollkeeper_update |
| 45 | /usr/bin/gconftool-2 --makefile-install-rule \ |
|
|
| 46 | /etc/gconf/schemas/${SCHEMA} |
|
|
| 47 | done |
|
|
| 48 | fi |
|
|
| 49 | } |
218 | } |
| 50 | |
219 | |
|
|
220 | # @#FUNCTION: gnome2_pkg_prerm |
|
|
221 | # @#DESCRIPTION: |
|
|
222 | # # FIXME Handle GConf schemas removal |
|
|
223 | #gnome2_pkg_prerm() { |
|
|
224 | # gnome2_gconf_uninstall |
|
|
225 | #} |
| 51 | |
226 | |
| 52 | |
227 | # @FUNCTION: gnome2_pkg_postrm |
| 53 | |
228 | # @DESCRIPTION: |
|
|
229 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
|
|
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 |
|
|
235 | gnome2_scrollkeeper_update |
|
|
236 | } |