| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2011 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.94 2011/04/21 21:06:15 eva 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) |
|
|
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: ELTCONF |
|
|
32 | # @DEFAULT-UNSET |
|
|
33 | # @DESCRIPTION: |
| 21 | # Extra options passed to elibtoolize |
34 | # Extra options passed to elibtoolize |
| 22 | ELTCONF=${ELTCONF:-""} |
35 | ELTCONF=${ELTCONF:-""} |
| 23 | |
36 | |
|
|
37 | # @ECLASS-VARIABLE: USE_EINSTALL |
|
|
38 | # @DEFAULT-UNSET |
|
|
39 | # @DEPRECATED |
|
|
40 | # @DESCRIPTION: |
| 24 | # Should we use EINSTALL instead of DESTDIR |
41 | # Should we use EINSTALL instead of DESTDIR |
| 25 | USE_EINSTALL=${USE_EINSTALL:-""} |
42 | USE_EINSTALL=${USE_EINSTALL:-""} |
| 26 | |
43 | |
|
|
44 | # @ECLASS-VARIABLE: SCROLLKEEPER_UPDATE |
|
|
45 | # @DEPRECATED |
|
|
46 | # @DESCRIPTION: |
| 27 | # Run scrollkeeper for this package? |
47 | # Whether to run scrollkeeper for this package or not. |
| 28 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
48 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
| 29 | |
49 | |
|
|
50 | # @ECLASS-VARIABLE: DOCS |
|
|
51 | # @DEFAULT-UNSET |
|
|
52 | # @DESCRIPTION: |
|
|
53 | # String containing documents passed to dodoc command. |
|
|
54 | |
|
|
55 | # @ECLASS-VARIABLE: GCONF_DEBUG |
|
|
56 | # @DEFAULT_UNSET |
|
|
57 | # @DESCRIPTION: |
|
|
58 | # Whether to handle debug or not. |
|
|
59 | # Some gnome applications support various levels of debugging (yes, no, minimum, |
|
|
60 | # etc), but using --disable-debug also removes g_assert which makes debugging |
|
|
61 | # harder. This variable should be set to yes for such packages for the eclass |
|
|
62 | # to handle it properly. It will enable minimal debug with USE=-debug. |
|
|
63 | # Note that this is most commonly found in configure.ac as GNOME_DEBUG_CHECK. |
| 30 | |
64 | |
| 31 | |
65 | |
| 32 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
66 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
| 33 | IUSE="debug" |
67 | IUSE="debug" |
| 34 | fi |
68 | fi |
| 35 | |
69 | |
| 36 | |
70 | |
| 37 | |
71 | # @FUNCTION: gnome2_src_unpack |
|
|
72 | # @DESCRIPTION: |
|
|
73 | # Stub function for old EAPI. |
| 38 | gnome2_src_unpack() { |
74 | gnome2_src_unpack() { |
| 39 | unpack ${A} |
75 | unpack ${A} |
| 40 | cd "${S}" |
76 | cd "${S}" |
|
|
77 | has ${EAPI:-0} 0 1 && gnome2_src_prepare |
|
|
78 | } |
| 41 | |
79 | |
|
|
80 | # @FUNCTION: gnome2_src_prepare |
|
|
81 | # @DESCRIPTION: |
|
|
82 | # Fix build of scrollkeeper documentation and run elibtoolize. |
|
|
83 | gnome2_src_prepare() { |
| 42 | # Prevent scrollkeeper access violations |
84 | # Prevent scrollkeeper access violations |
| 43 | gnome2_omf_fix |
85 | gnome2_omf_fix |
| 44 | |
86 | |
| 45 | # Run libtoolize |
87 | # Run libtoolize |
|
|
88 | if has ${EAPI:-0} 0 1 2 3; then |
| 46 | elibtoolize ${ELTCONF} |
89 | elibtoolize ${ELTCONF} |
| 47 | } |
90 | else |
|
|
91 | # Everything is fatal EAPI 4 onwards |
|
|
92 | nonfatal elibtoolize ${ELTCONF} |
|
|
93 | fi |
| 48 | |
94 | |
|
|
95 | } |
|
|
96 | |
|
|
97 | # @FUNCTION: gnome2_src_configure |
|
|
98 | # @DESCRIPTION: |
|
|
99 | # Gnome specific configure handling |
| 49 | gnome2_src_configure() { |
100 | gnome2_src_configure() { |
| 50 | # Update the GNOME configuration options |
101 | # Update the GNOME configuration options |
| 51 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
102 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
| 52 | if use debug ; then |
103 | if use debug ; then |
| 53 | G2CONF="${G2CONF} --enable-debug=yes" |
104 | G2CONF="${G2CONF} --enable-debug=yes" |
| … | |
… | |
| 61 | |
112 | |
| 62 | # Avoid sandbox violations caused by misbehaving packages (bug #128289) |
113 | # Avoid sandbox violations caused by misbehaving packages (bug #128289) |
| 63 | addwrite "/root/.gnome2" |
114 | addwrite "/root/.gnome2" |
| 64 | |
115 | |
| 65 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
116 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
| 66 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} || die "configure failed" |
117 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} |
| 67 | } |
118 | } |
| 68 | |
119 | |
|
|
120 | # @FUNCTION: gnome2_src_compile |
|
|
121 | # @DESCRIPTION: |
|
|
122 | # Stub function for old EAPI. |
| 69 | gnome2_src_compile() { |
123 | gnome2_src_compile() { |
| 70 | gnome2_src_configure "$@" |
124 | has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
| 71 | emake || die "compile failure" |
125 | emake || die "compile failure" |
| 72 | } |
126 | } |
| 73 | |
127 | |
|
|
128 | # @FUNCTION: gnome2_src_install |
|
|
129 | # @DESCRIPTION: |
|
|
130 | # Gnome specific install. Handles typical GConf and scrollkeeper setup |
|
|
131 | # in packages. |
| 74 | gnome2_src_install() { |
132 | gnome2_src_install() { |
|
|
133 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
| 75 | # if this is not present, scrollkeeper-update may segfault and |
134 | # if this is not present, scrollkeeper-update may segfault and |
| 76 | # create bogus directories in /var/lib/ |
135 | # create bogus directories in /var/lib/ |
| 77 | local sk_tmp_dir="/var/lib/scrollkeeper" |
136 | local sk_tmp_dir="/var/lib/scrollkeeper" |
| 78 | dodir "${sk_tmp_dir}" |
137 | dodir "${sk_tmp_dir}" || die "dodir failed" |
| 79 | |
138 | |
| 80 | # we must delay gconf schema installation due to sandbox |
139 | # we must delay gconf schema installation due to sandbox |
| 81 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
140 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 82 | |
141 | |
| 83 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
142 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 84 | debug-print "Installing with 'make install'" |
143 | debug-print "Installing with 'make install'" |
| 85 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" install || die "install failed" |
144 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
| 86 | else |
145 | else |
| 87 | debug-print "Installing with 'einstall'" |
146 | debug-print "Installing with 'einstall'" |
| 88 | einstall "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" || die "einstall failed" |
147 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 89 | fi |
148 | fi |
| 90 | |
149 | |
| 91 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
150 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 92 | |
151 | |
| 93 | # Manual document installation |
152 | # Manual document installation |
| 94 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
153 | if [[ -n "${DOCS}" ]]; then |
|
|
154 | dodoc ${DOCS} || die "dodoc failed" |
|
|
155 | fi |
| 95 | |
156 | |
| 96 | # Do not keep /var/lib/scrollkeeper because: |
157 | # Do not keep /var/lib/scrollkeeper because: |
| 97 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
158 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
| 98 | # 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
159 | # 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. |
160 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
| 100 | if [[ -z "$(find "${D}" -name '*.omf')" ]]; then |
161 | if [[ -z "$(find "${D}" -name '*.omf')" ]]; then |
| 101 | export SCROLLKEEPER_UPDATE="0" |
162 | export SCROLLKEEPER_UPDATE="0" |
| 102 | fi |
163 | fi |
| 103 | rm -rf "${D}${sk_tmp_dir}" |
164 | rm -rf "${ED}${sk_tmp_dir}" |
| 104 | |
165 | |
| 105 | # Make sure this one doesn't get in the portage db |
166 | # Make sure this one doesn't get in the portage db |
| 106 | rm -fr "${D}/usr/share/applications/mimeinfo.cache" |
167 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
| 107 | } |
168 | } |
| 108 | |
169 | |
|
|
170 | # @FUNCTION: gnome2_pkg_preinst |
|
|
171 | # @DESCRIPTION: |
|
|
172 | # Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
| 109 | gnome2_pkg_preinst() { |
173 | gnome2_pkg_preinst() { |
| 110 | gnome2_gconf_savelist |
174 | gnome2_gconf_savelist |
| 111 | gnome2_icon_savelist |
175 | gnome2_icon_savelist |
|
|
176 | gnome2_schemas_savelist |
| 112 | } |
177 | } |
| 113 | |
178 | |
|
|
179 | # @FUNCTION: gnome2_pkg_postinst |
|
|
180 | # @DESCRIPTION: |
|
|
181 | # Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
|
|
182 | # database updates. |
| 114 | gnome2_pkg_postinst() { |
183 | gnome2_pkg_postinst() { |
| 115 | gnome2_gconf_install |
184 | gnome2_gconf_install |
| 116 | fdo-mime_desktop_database_update |
185 | fdo-mime_desktop_database_update |
| 117 | fdo-mime_mime_database_update |
186 | fdo-mime_mime_database_update |
| 118 | gnome2_icon_cache_update |
187 | gnome2_icon_cache_update |
|
|
188 | gnome2_schemas_update |
| 119 | |
189 | |
| 120 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
190 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
| 121 | gnome2_scrollkeeper_update |
191 | gnome2_scrollkeeper_update |
| 122 | fi |
192 | fi |
| 123 | } |
193 | } |
| 124 | |
194 | |
|
|
195 | # @#FUNCTION: gnome2_pkg_prerm |
|
|
196 | # @#DESCRIPTION: |
|
|
197 | # # FIXME Handle GConf schemas removal |
| 125 | #gnome2_pkg_prerm() { |
198 | #gnome2_pkg_prerm() { |
| 126 | # gnome2_gconf_uninstall |
199 | # gnome2_gconf_uninstall |
| 127 | #} |
200 | #} |
| 128 | |
201 | |
|
|
202 | # @FUNCTION: gnome2_pkg_postrm |
|
|
203 | # @DESCRIPTION: |
|
|
204 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
| 129 | gnome2_pkg_postrm() { |
205 | gnome2_pkg_postrm() { |
| 130 | fdo-mime_desktop_database_update |
206 | fdo-mime_desktop_database_update |
| 131 | fdo-mime_mime_database_update |
207 | fdo-mime_mime_database_update |
| 132 | gnome2_icon_cache_update |
208 | gnome2_icon_cache_update |
|
|
209 | gnome2_schemas_update --uninstall |
| 133 | |
210 | |
| 134 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
211 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
| 135 | gnome2_scrollkeeper_update |
212 | gnome2_scrollkeeper_update |
| 136 | fi |
213 | fi |
| 137 | } |
214 | } |
| 138 | |
|
|
| 139 | # pkg_prerm |
|
|
| 140 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|