| 1 | # Copyright 1999-2006 Gentoo Foundation |
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.85 2008/03/22 10:19:05 remi Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.107 2012/09/27 16:35:41 axs Exp $ |
| 4 | |
4 | |
| 5 | # |
|
|
| 6 | # gnome2.eclass |
5 | # @ECLASS: gnome2.eclass |
| 7 | # |
6 | # @MAINTAINER: |
|
|
7 | # gnome@gentoo.org |
|
|
8 | # @BLURB: |
|
|
9 | # @DESCRIPTION: |
| 8 | # Exports portage base functions used by ebuilds written for packages using the |
10 | # Exports portage base functions used by ebuilds written for packages using the |
| 9 | # GNOME framework. For additional functions, see gnome2-utils.eclass. |
11 | # GNOME framework. For additional functions, see gnome2-utils.eclass. |
| 10 | # |
|
|
| 11 | # Maintained by Gentoo's GNOME herd <gnome@gentoo.org> |
|
|
| 12 | # |
|
|
| 13 | |
|
|
| 14 | |
12 | |
| 15 | inherit fdo-mime libtool gnome.org gnome2-utils |
13 | inherit fdo-mime libtool gnome.org gnome2-utils |
| 16 | |
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 |
| 17 | |
24 | |
|
|
25 | # @ECLASS-VARIABLE: G2CONF |
|
|
26 | # @DEFAULT-UNSET |
|
|
27 | # @DESCRIPTION: |
| 18 | # Extra configure opts passed to econf |
28 | # Extra configure opts passed to econf |
| 19 | G2CONF=${G2CONF:-""} |
29 | G2CONF=${G2CONF:-""} |
| 20 | |
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: |
| 21 | # Extra options passed to elibtoolize |
40 | # Extra options passed to elibtoolize |
| 22 | ELTCONF=${ELTCONF:-""} |
41 | ELTCONF=${ELTCONF:-""} |
| 23 | |
42 | |
|
|
43 | # @ECLASS-VARIABLE: USE_EINSTALL |
|
|
44 | # @DEFAULT-UNSET |
|
|
45 | # @DEPRECATED |
|
|
46 | # @DESCRIPTION: |
| 24 | # Should we use EINSTALL instead of DESTDIR |
47 | # Should we use EINSTALL instead of DESTDIR |
| 25 | USE_EINSTALL=${USE_EINSTALL:-""} |
48 | USE_EINSTALL=${USE_EINSTALL:-""} |
| 26 | |
49 | |
|
|
50 | # @ECLASS-VARIABLE: SCROLLKEEPER_UPDATE |
|
|
51 | # @DEPRECATED |
|
|
52 | # @DESCRIPTION: |
| 27 | # Run scrollkeeper for this package? |
53 | # Whether to run scrollkeeper for this package or not. |
| 28 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
54 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
| 29 | |
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. |
| 30 | |
70 | |
| 31 | |
71 | |
| 32 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
72 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
| 33 | IUSE="debug" |
73 | IUSE="debug" |
| 34 | fi |
74 | fi |
| 35 | |
75 | |
| 36 | |
76 | |
| 37 | |
77 | # @FUNCTION: gnome2_src_unpack |
|
|
78 | # @DESCRIPTION: |
|
|
79 | # Stub function for old EAPI. |
| 38 | gnome2_src_unpack() { |
80 | gnome2_src_unpack() { |
| 39 | unpack ${A} |
81 | unpack ${A} |
| 40 | cd "${S}" |
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 |
| 41 | |
93 | |
| 42 | # Prevent scrollkeeper access violations |
94 | # Prevent scrollkeeper access violations |
| 43 | gnome2_omf_fix |
95 | gnome2_omf_fix |
| 44 | |
96 | |
| 45 | # Run libtoolize |
97 | # Run libtoolize |
|
|
98 | if has ${EAPI:-0} 0 1 2 3; then |
| 46 | elibtoolize ${ELTCONF} |
99 | elibtoolize ${ELTCONF} |
| 47 | } |
100 | else |
|
|
101 | # Everything is fatal EAPI 4 onwards |
|
|
102 | nonfatal elibtoolize ${ELTCONF} |
|
|
103 | fi |
| 48 | |
104 | |
|
|
105 | } |
|
|
106 | |
|
|
107 | # @FUNCTION: gnome2_src_configure |
|
|
108 | # @DESCRIPTION: |
|
|
109 | # Gnome specific configure handling |
| 49 | gnome2_src_configure() { |
110 | gnome2_src_configure() { |
| 50 | # Update the GNOME configuration options |
111 | # Update the GNOME configuration options |
| 51 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
112 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
| 52 | if use debug ; then |
113 | if use debug ; then |
| 53 | G2CONF="${G2CONF} --enable-debug=yes" |
114 | G2CONF="${G2CONF} --enable-debug=yes" |
| 54 | fi |
115 | fi |
| 55 | fi |
116 | fi |
| 56 | |
117 | |
| 57 | # Prevent a QA warning |
118 | # Prevent a QA warning |
| 58 | if hasq doc ${IUSE} ; then |
119 | if has doc ${IUSE} ; then |
| 59 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
120 | grep -q "enable-gtk-doc" configure && G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
| 60 | fi |
121 | fi |
| 61 | |
122 | |
| 62 | # Avoid sandbox violations caused by misbehaving packages (bug #128289) |
123 | # Pass --disable-maintainer-mode when needed |
| 63 | addwrite "/root/.gnome2" |
124 | if grep -q "^[[:space:]]*AM_MAINTAINER_MODE(\[enable\])" configure.*; then |
|
|
125 | G2CONF="${G2CONF} --disable-maintainer-mode" |
|
|
126 | fi |
| 64 | |
127 | |
| 65 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
128 | # Pass --disable-scrollkeeper when possible |
| 66 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} || die "configure failed" |
129 | if grep -q "disable-scrollkeeper" configure; then |
| 67 | } |
130 | G2CONF="${G2CONF} --disable-scrollkeeper" |
|
|
131 | fi |
| 68 | |
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. |
| 69 | gnome2_src_compile() { |
142 | gnome2_src_compile() { |
| 70 | gnome2_src_configure "$@" |
143 | has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
| 71 | emake || die "compile failure" |
144 | emake || die "compile failure" |
| 72 | } |
145 | } |
| 73 | |
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 |
| 74 | gnome2_src_install() { |
151 | gnome2_src_install() { |
|
|
152 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
| 75 | # if this is not present, scrollkeeper-update may segfault and |
153 | # if this is not present, scrollkeeper-update may segfault and |
| 76 | # create bogus directories in /var/lib/ |
154 | # create bogus directories in /var/lib/ |
| 77 | local sk_tmp_dir="/var/lib/scrollkeeper" |
155 | local sk_tmp_dir="/var/lib/scrollkeeper" |
| 78 | dodir "${sk_tmp_dir}" |
156 | dodir "${sk_tmp_dir}" || die "dodir failed" |
| 79 | |
157 | |
| 80 | # we must delay gconf schema installation due to sandbox |
158 | # we must delay gconf schema installation due to sandbox |
| 81 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
159 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 82 | |
160 | |
| 83 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
161 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 84 | debug-print "Installing with 'make install'" |
162 | debug-print "Installing with 'make install'" |
| 85 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" install || die "install failed" |
163 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
| 86 | else |
164 | else |
| 87 | debug-print "Installing with 'einstall'" |
165 | debug-print "Installing with 'einstall'" |
| 88 | einstall "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" || die "einstall failed" |
166 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 89 | fi |
167 | fi |
| 90 | |
168 | |
| 91 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
169 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 92 | |
170 | |
| 93 | # Manual document installation |
171 | # Manual document installation |
| 94 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
172 | if [[ -n "${DOCS}" ]]; then |
|
|
173 | dodoc ${DOCS} || die "dodoc failed" |
|
|
174 | fi |
| 95 | |
175 | |
| 96 | # Do not keep /var/lib/scrollkeeper because: |
176 | # Do not keep /var/lib/scrollkeeper because: |
| 97 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
177 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
| 98 | # 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 |
| 99 | # 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. |
| 100 | if [[ -z "$(find "${D}" -name '*.omf')" ]]; then |
|
|
| 101 | export SCROLLKEEPER_UPDATE="0" |
|
|
| 102 | fi |
|
|
| 103 | rm -rf "${D}${sk_tmp_dir}" |
180 | rm -rf "${ED}${sk_tmp_dir}" |
|
|
181 | rmdir "${ED}/var/lib" 2>/dev/null |
|
|
182 | rmdir "${ED}/var" 2>/dev/null |
| 104 | |
183 | |
| 105 | # Make sure this one doesn't get in the portage db |
184 | # Make sure this one doesn't get in the portage db |
| 106 | rm -fr "${D}/usr/share/applications/mimeinfo.cache" |
185 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
| 107 | } |
|
|
| 108 | |
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" |
|
|
192 | fi |
|
|
193 | eend |
|
|
194 | fi |
|
|
195 | } |
|
|
196 | |
|
|
197 | # @FUNCTION: gnome2_pkg_preinst |
|
|
198 | # @DESCRIPTION: |
|
|
199 | # Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
| 109 | gnome2_pkg_preinst() { |
200 | gnome2_pkg_preinst() { |
| 110 | gnome2_gconf_savelist |
201 | gnome2_gconf_savelist |
| 111 | gnome2_icon_savelist |
202 | gnome2_icon_savelist |
|
|
203 | gnome2_schemas_savelist |
|
|
204 | gnome2_scrollkeeper_savelist |
| 112 | } |
205 | } |
| 113 | |
206 | |
|
|
207 | # @FUNCTION: gnome2_pkg_postinst |
|
|
208 | # @DESCRIPTION: |
|
|
209 | # Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
|
|
210 | # database updates. |
| 114 | gnome2_pkg_postinst() { |
211 | gnome2_pkg_postinst() { |
| 115 | gnome2_gconf_install |
212 | gnome2_gconf_install |
| 116 | fdo-mime_desktop_database_update |
213 | fdo-mime_desktop_database_update |
| 117 | fdo-mime_mime_database_update |
214 | fdo-mime_mime_database_update |
| 118 | gnome2_icon_cache_update |
215 | gnome2_icon_cache_update |
| 119 | |
216 | gnome2_schemas_update |
| 120 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
| 121 | gnome2_scrollkeeper_update |
217 | gnome2_scrollkeeper_update |
| 122 | fi |
|
|
| 123 | } |
218 | } |
| 124 | |
219 | |
|
|
220 | # @#FUNCTION: gnome2_pkg_prerm |
|
|
221 | # @#DESCRIPTION: |
|
|
222 | # # FIXME Handle GConf schemas removal |
| 125 | #gnome2_pkg_prerm() { |
223 | #gnome2_pkg_prerm() { |
| 126 | # gnome2_gconf_uninstall |
224 | # gnome2_gconf_uninstall |
| 127 | #} |
225 | #} |
| 128 | |
226 | |
|
|
227 | # @FUNCTION: gnome2_pkg_postrm |
|
|
228 | # @DESCRIPTION: |
|
|
229 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
| 129 | gnome2_pkg_postrm() { |
230 | gnome2_pkg_postrm() { |
| 130 | fdo-mime_desktop_database_update |
231 | fdo-mime_desktop_database_update |
| 131 | fdo-mime_mime_database_update |
232 | fdo-mime_mime_database_update |
| 132 | gnome2_icon_cache_update |
233 | gnome2_icon_cache_update |
| 133 | |
234 | gnome2_schemas_update |
| 134 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
| 135 | gnome2_scrollkeeper_update |
235 | gnome2_scrollkeeper_update |
| 136 | fi |
|
|
| 137 | } |
236 | } |
| 138 | |
|
|
| 139 | # pkg_prerm |
|
|
| 140 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|