| 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.92 2011/04/21 20:58:58 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) |
|
|
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: USE_EINSTALL |
|
|
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 |
| 46 | elibtoolize ${ELTCONF} |
88 | elibtoolize ${ELTCONF} |
| 47 | } |
89 | } |
| 48 | |
90 | |
|
|
91 | # @FUNCTION: gnome2_src_configure |
|
|
92 | # @DESCRIPTION: |
|
|
93 | # Gnome specific configure handling |
| 49 | gnome2_src_configure() { |
94 | gnome2_src_configure() { |
| 50 | # Update the GNOME configuration options |
95 | # Update the GNOME configuration options |
| 51 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
96 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
| 52 | if use debug ; then |
97 | if use debug ; then |
| 53 | G2CONF="${G2CONF} --enable-debug=yes" |
98 | G2CONF="${G2CONF} --enable-debug=yes" |
| … | |
… | |
| 61 | |
106 | |
| 62 | # Avoid sandbox violations caused by misbehaving packages (bug #128289) |
107 | # Avoid sandbox violations caused by misbehaving packages (bug #128289) |
| 63 | addwrite "/root/.gnome2" |
108 | addwrite "/root/.gnome2" |
| 64 | |
109 | |
| 65 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
110 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
| 66 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} || die "configure failed" |
111 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} |
| 67 | } |
112 | } |
| 68 | |
113 | |
|
|
114 | # @FUNCTION: gnome2_src_compile |
|
|
115 | # @DESCRIPTION: |
|
|
116 | # Stub function for old EAPI. |
| 69 | gnome2_src_compile() { |
117 | gnome2_src_compile() { |
| 70 | gnome2_src_configure "$@" |
118 | has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
| 71 | emake || die "compile failure" |
119 | emake || die "compile failure" |
| 72 | } |
120 | } |
| 73 | |
121 | |
|
|
122 | # @FUNCTION: gnome2_src_install |
|
|
123 | # @DESCRIPTION: |
|
|
124 | # Gnome specific install. Handles typical GConf and scrollkeeper setup |
|
|
125 | # in packages. |
| 74 | gnome2_src_install() { |
126 | gnome2_src_install() { |
|
|
127 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
| 75 | # if this is not present, scrollkeeper-update may segfault and |
128 | # if this is not present, scrollkeeper-update may segfault and |
| 76 | # create bogus directories in /var/lib/ |
129 | # create bogus directories in /var/lib/ |
| 77 | local sk_tmp_dir="/var/lib/scrollkeeper" |
130 | local sk_tmp_dir="/var/lib/scrollkeeper" |
| 78 | dodir "${sk_tmp_dir}" |
131 | dodir "${sk_tmp_dir}" || die "dodir failed" |
| 79 | |
132 | |
| 80 | # we must delay gconf schema installation due to sandbox |
133 | # we must delay gconf schema installation due to sandbox |
| 81 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
134 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 82 | |
135 | |
| 83 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
136 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 84 | debug-print "Installing with 'make install'" |
137 | debug-print "Installing with 'make install'" |
| 85 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" install || die "install failed" |
138 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
| 86 | else |
139 | else |
| 87 | debug-print "Installing with 'einstall'" |
140 | debug-print "Installing with 'einstall'" |
| 88 | einstall "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" || die "einstall failed" |
141 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 89 | fi |
142 | fi |
| 90 | |
143 | |
| 91 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
144 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 92 | |
145 | |
| 93 | # Manual document installation |
146 | # Manual document installation |
| 94 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
147 | if [[ -n "${DOCS}" ]]; then |
|
|
148 | dodoc ${DOCS} || die "dodoc failed" |
|
|
149 | fi |
| 95 | |
150 | |
| 96 | # Do not keep /var/lib/scrollkeeper because: |
151 | # Do not keep /var/lib/scrollkeeper because: |
| 97 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
152 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
| 98 | # 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
153 | # 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. |
154 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
| 100 | if [[ -z "$(find "${D}" -name '*.omf')" ]]; then |
155 | if [[ -z "$(find "${D}" -name '*.omf')" ]]; then |
| 101 | export SCROLLKEEPER_UPDATE="0" |
156 | export SCROLLKEEPER_UPDATE="0" |
| 102 | fi |
157 | fi |
| 103 | rm -rf "${D}${sk_tmp_dir}" |
158 | rm -rf "${ED}${sk_tmp_dir}" |
| 104 | |
159 | |
| 105 | # Make sure this one doesn't get in the portage db |
160 | # Make sure this one doesn't get in the portage db |
| 106 | rm -fr "${D}/usr/share/applications/mimeinfo.cache" |
161 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
| 107 | } |
162 | } |
| 108 | |
163 | |
|
|
164 | # @FUNCTION: gnome2_pkg_preinst |
|
|
165 | # @DESCRIPTION: |
|
|
166 | # Finds Icons, GConf and GSettings schemas for later handling in pkg_postinst |
| 109 | gnome2_pkg_preinst() { |
167 | gnome2_pkg_preinst() { |
| 110 | gnome2_gconf_savelist |
168 | gnome2_gconf_savelist |
| 111 | gnome2_icon_savelist |
169 | gnome2_icon_savelist |
|
|
170 | gnome2_schemas_savelist |
| 112 | } |
171 | } |
| 113 | |
172 | |
|
|
173 | # @FUNCTION: gnome2_pkg_postinst |
|
|
174 | # @DESCRIPTION: |
|
|
175 | # Handle scrollkeeper, GConf, GSettings, Icons, desktop and mime |
|
|
176 | # database updates. |
| 114 | gnome2_pkg_postinst() { |
177 | gnome2_pkg_postinst() { |
| 115 | gnome2_gconf_install |
178 | gnome2_gconf_install |
| 116 | fdo-mime_desktop_database_update |
179 | fdo-mime_desktop_database_update |
| 117 | fdo-mime_mime_database_update |
180 | fdo-mime_mime_database_update |
| 118 | gnome2_icon_cache_update |
181 | gnome2_icon_cache_update |
|
|
182 | gnome2_schemas_update |
| 119 | |
183 | |
| 120 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
184 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
| 121 | gnome2_scrollkeeper_update |
185 | gnome2_scrollkeeper_update |
| 122 | fi |
186 | fi |
| 123 | } |
187 | } |
| 124 | |
188 | |
|
|
189 | # @#FUNCTION: gnome2_pkg_prerm |
|
|
190 | # @#DESCRIPTION: |
|
|
191 | # # FIXME Handle GConf schemas removal |
| 125 | #gnome2_pkg_prerm() { |
192 | #gnome2_pkg_prerm() { |
| 126 | # gnome2_gconf_uninstall |
193 | # gnome2_gconf_uninstall |
| 127 | #} |
194 | #} |
| 128 | |
195 | |
|
|
196 | # @FUNCTION: gnome2_pkg_postrm |
|
|
197 | # @DESCRIPTION: |
|
|
198 | # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. |
| 129 | gnome2_pkg_postrm() { |
199 | gnome2_pkg_postrm() { |
| 130 | fdo-mime_desktop_database_update |
200 | fdo-mime_desktop_database_update |
| 131 | fdo-mime_mime_database_update |
201 | fdo-mime_mime_database_update |
| 132 | gnome2_icon_cache_update |
202 | gnome2_icon_cache_update |
|
|
203 | gnome2_schemas_update --uninstall |
| 133 | |
204 | |
| 134 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
205 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
| 135 | gnome2_scrollkeeper_update |
206 | gnome2_scrollkeeper_update |
| 136 | fi |
207 | fi |
| 137 | } |
208 | } |
| 138 | |
|
|
| 139 | # pkg_prerm |
|
|
| 140 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|