| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2006 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.85 2008/03/22 10:19:05 remi Exp $ |
| 4 | |
4 | |
| 5 | # Gnome 2 ECLASS |
5 | # |
| 6 | ECLASS="gnome2" |
6 | # gnome2.eclass |
| 7 | |
7 | # |
| 8 | # DEBUG for Beta |
8 | # Exports portage base functions used by ebuilds written for packages using the |
| 9 | # Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ |
9 | # GNOME framework. For additional functions, see gnome2-utils.eclass. |
| 10 | DEBUG="yes" |
10 | # |
| 11 | RESTRICT="nostrip" |
11 | # Maintained by Gentoo's GNOME herd <gnome@gentoo.org> |
| 12 | # force debug information |
12 | # |
| 13 | CFLAGS="${CFLAGS} -g" |
|
|
| 14 | CXXFLAGS="${CXXFLAGS} -g" |
|
|
| 15 | |
13 | |
| 16 | |
14 | |
|
|
15 | inherit fdo-mime libtool gnome.org gnome2-utils |
|
|
16 | |
|
|
17 | |
|
|
18 | # Extra configure opts passed to econf |
|
|
19 | G2CONF=${G2CONF:-""} |
|
|
20 | |
|
|
21 | # Extra options passed to elibtoolize |
|
|
22 | ELTCONF=${ELTCONF:-""} |
|
|
23 | |
|
|
24 | # Should we use EINSTALL instead of DESTDIR |
|
|
25 | USE_EINSTALL=${USE_EINSTALL:-""} |
|
|
26 | |
|
|
27 | # Run scrollkeeper for this package? |
|
|
28 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
|
|
29 | |
|
|
30 | |
|
|
31 | |
|
|
32 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
|
|
33 | IUSE="debug" |
|
|
34 | fi |
|
|
35 | |
|
|
36 | |
|
|
37 | |
|
|
38 | gnome2_src_unpack() { |
|
|
39 | unpack ${A} |
|
|
40 | cd "${S}" |
|
|
41 | |
|
|
42 | # Prevent scrollkeeper access violations |
|
|
43 | gnome2_omf_fix |
|
|
44 | |
|
|
45 | # Run libtoolize |
|
|
46 | elibtoolize ${ELTCONF} |
|
|
47 | } |
|
|
48 | |
|
|
49 | gnome2_src_configure() { |
|
|
50 | # Update the GNOME configuration options |
|
|
51 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
|
|
52 | if use debug ; then |
|
|
53 | G2CONF="${G2CONF} --enable-debug=yes" |
|
|
54 | fi |
|
|
55 | fi |
|
|
56 | |
|
|
57 | # Prevent a QA warning |
|
|
58 | if hasq doc ${IUSE} ; then |
|
|
59 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
|
|
60 | fi |
|
|
61 | |
|
|
62 | # Avoid sandbox violations caused by misbehaving packages (bug #128289) |
|
|
63 | addwrite "/root/.gnome2" |
|
|
64 | |
|
|
65 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
|
|
66 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} || die "configure failed" |
|
|
67 | } |
|
|
68 | |
| 17 | gnome2_src_compile() { |
69 | gnome2_src_compile() { |
| 18 | |
70 | gnome2_src_configure "$@" |
| 19 | libtoolize --copy --force |
|
|
| 20 | |
|
|
| 21 | econf "${1} --enable-debug=yes" || die "./configure failure" |
|
|
| 22 | emake || die "compile failure" |
71 | emake || die "compile failure" |
| 23 | |
|
|
| 24 | } |
72 | } |
| 25 | |
73 | |
| 26 | gnome2_src_install() { |
74 | gnome2_src_install() { |
|
|
75 | # if this is not present, scrollkeeper-update may segfault and |
|
|
76 | # create bogus directories in /var/lib/ |
|
|
77 | local sk_tmp_dir="/var/lib/scrollkeeper" |
|
|
78 | dodir "${sk_tmp_dir}" |
| 27 | |
79 | |
| 28 | einstall ${1} |
80 | # we must delay gconf schema installation due to sandbox |
|
|
81 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 29 | |
82 | |
| 30 | # manual document installation |
83 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 31 | if [ -n "${DOC}" && use doc ] |
84 | debug-print "Installing with 'make install'" |
| 32 | then |
85 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" install || die "install failed" |
| 33 | for x in $DOC; do dodoc $x; done |
86 | else |
|
|
87 | debug-print "Installing with 'einstall'" |
|
|
88 | einstall "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 34 | fi |
89 | fi |
| 35 | |
90 | |
|
|
91 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
92 | |
|
|
93 | # Manual document installation |
|
|
94 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
|
|
95 | |
|
|
96 | # Do not keep /var/lib/scrollkeeper because: |
|
|
97 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
|
|
98 | # 2. ${D}/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. |
|
|
100 | if [[ -z "$(find "${D}" -name '*.omf')" ]]; then |
|
|
101 | export SCROLLKEEPER_UPDATE="0" |
|
|
102 | fi |
|
|
103 | rm -rf "${D}${sk_tmp_dir}" |
|
|
104 | |
|
|
105 | # Make sure this one doesn't get in the portage db |
|
|
106 | rm -fr "${D}/usr/share/applications/mimeinfo.cache" |
|
|
107 | } |
|
|
108 | |
|
|
109 | gnome2_pkg_preinst() { |
|
|
110 | gnome2_gconf_savelist |
|
|
111 | gnome2_icon_savelist |
| 36 | } |
112 | } |
| 37 | |
113 | |
| 38 | gnome2_pkg_postinst() { |
114 | gnome2_pkg_postinst() { |
|
|
115 | gnome2_gconf_install |
|
|
116 | fdo-mime_desktop_database_update |
|
|
117 | fdo-mime_mime_database_update |
|
|
118 | gnome2_icon_cache_update |
| 39 | |
119 | |
| 40 | # manual schema installation |
120 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
| 41 | if [ -n "${SCHEMA}" ] |
121 | 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 |
122 | fi |
| 49 | } |
123 | } |
| 50 | |
124 | |
|
|
125 | #gnome2_pkg_prerm() { |
|
|
126 | # gnome2_gconf_uninstall |
|
|
127 | #} |
| 51 | |
128 | |
|
|
129 | gnome2_pkg_postrm() { |
|
|
130 | fdo-mime_desktop_database_update |
|
|
131 | fdo-mime_mime_database_update |
|
|
132 | gnome2_icon_cache_update |
| 52 | |
133 | |
|
|
134 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
135 | gnome2_scrollkeeper_update |
|
|
136 | fi |
|
|
137 | } |
| 53 | |
138 | |
|
|
139 | # pkg_prerm |
|
|
140 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |