| 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.6 2002/06/04 06:41:01 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 | # Authors: |
5 | # |
| 6 | # Bruce A. Locke <blocke@shivan.org> |
6 | # gnome2.eclass |
| 7 | # Spidler <spidler@gentoo.org> |
7 | # |
|
|
8 | # Exports portage base functions used by ebuilds written for packages using the |
|
|
9 | # GNOME framework. For additional functions, see gnome2-utils.eclass. |
|
|
10 | # |
|
|
11 | # Maintained by Gentoo's GNOME herd <gnome@gentoo.org> |
|
|
12 | # |
| 8 | |
13 | |
| 9 | # Gnome 2 ECLASS |
|
|
| 10 | ECLASS="gnome2" |
|
|
| 11 | |
14 | |
| 12 | # DEBUG for Beta |
15 | inherit fdo-mime libtool gnome.org gnome2-utils |
| 13 | # Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ |
|
|
| 14 | DEBUG="yes" |
|
|
| 15 | RESTRICT="nostrip" |
|
|
| 16 | |
16 | |
| 17 | # Remove omit-frame-pointer as some useless folks define that all over the place. they should be shot with a 16 gauge slingshot at least :) |
|
|
| 18 | # force debug information |
|
|
| 19 | export CFLAGS="${CFLAGS/-fomit-frame-pointer/} -g" |
|
|
| 20 | export CXXFLAGS="${CXXFLAGS/-fomit-frame-pointer/} -g" |
|
|
| 21 | |
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 |
| 22 | G2CONF="--enable-debug=yes" |
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 | } |
| 23 | |
68 | |
| 24 | gnome2_src_compile() { |
69 | gnome2_src_compile() { |
| 25 | |
70 | gnome2_src_configure "$@" |
| 26 | use doc && G2CONF="${G2CONF} --enable-gtk-doc" || G2CONF="${G2CONF} --disable-gtk-doc" |
|
|
| 27 | |
|
|
| 28 | if [ "${LIBTOOL_FIX}" = "1" ] |
|
|
| 29 | then |
|
|
| 30 | libtoolize --copy --force |
|
|
| 31 | fi |
|
|
| 32 | |
|
|
| 33 | econf ${1} ${G2CONF} || die "./configure failure" |
|
|
| 34 | emake || die "compile failure" |
71 | emake || die "compile failure" |
| 35 | |
|
|
| 36 | } |
72 | } |
| 37 | |
73 | |
| 38 | 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}" |
| 39 | |
79 | |
|
|
80 | # we must delay gconf schema installation due to sandbox |
| 40 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
81 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 41 | |
82 | |
| 42 | einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ ${1}" |
83 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 43 | |
84 | debug-print "Installing with 'make install'" |
| 44 | # manual document installation |
85 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" install || die "install failed" |
| 45 | if [ -n "${DOC}" ] |
86 | else |
| 46 | then |
87 | debug-print "Installing with 'einstall'" |
| 47 | dodoc ${DOC} |
88 | einstall "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 48 | fi |
89 | fi |
| 49 | |
90 | |
| 50 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
91 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 51 | |
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 |
| 52 | } |
112 | } |
| 53 | |
113 | |
| 54 | 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 |
| 55 | |
119 | |
| 56 | # schema installation |
120 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
| 57 | if [ -n "${SCHEMA}" ] |
121 | gnome2_scrollkeeper_update |
| 58 | then |
|
|
| 59 | |
|
|
| 60 | export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` |
|
|
| 61 | |
|
|
| 62 | echo ">>> Updating GConf2 Schemas for ${P}" |
|
|
| 63 | for x in $SCHEMA |
|
|
| 64 | do |
|
|
| 65 | /usr/bin/gconftool-2 --makefile-install-rule \ |
|
|
| 66 | /etc/gconf/schemas/${SCHEMA} |
|
|
| 67 | done |
|
|
| 68 | fi |
|
|
| 69 | |
|
|
| 70 | if [ -x /usr/bin/scrollkeeper-update ] |
|
|
| 71 | then |
|
|
| 72 | echo ">>> Updating Scrollkeeper" |
|
|
| 73 | scrollkeeper-update -p /var/lib/scrollkeeper |
|
|
| 74 | fi |
122 | fi |
| 75 | } |
123 | } |
| 76 | |
124 | |
| 77 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst |
125 | #gnome2_pkg_prerm() { |
|
|
126 | # gnome2_gconf_uninstall |
|
|
127 | #} |
| 78 | |
128 | |
|
|
129 | gnome2_pkg_postrm() { |
|
|
130 | fdo-mime_desktop_database_update |
|
|
131 | fdo-mime_mime_database_update |
|
|
132 | gnome2_icon_cache_update |
| 79 | |
133 | |
|
|
134 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
135 | gnome2_scrollkeeper_update |
|
|
136 | fi |
|
|
137 | } |
|
|
138 | |
|
|
139 | # pkg_prerm |
|
|
140 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |