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