1 | # Copyright 1999-2004 Gentoo Foundation |
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.43 2004/07/11 13:50:52 spider Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.85 2008/03/22 10:19:05 remi Exp $ |
|
|
4 | |
4 | # |
5 | # |
5 | # Authors: |
6 | # gnome2.eclass |
6 | # Bruce A. Locke <blocke@shivan.org> |
7 | # |
7 | # Spidler <spider@gentoo.org> |
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 | inherit libtool gnome.org |
|
|
10 | inherit debug |
|
|
11 | |
14 | |
12 | # Gnome 2 ECLASS |
15 | inherit fdo-mime libtool gnome.org gnome2-utils |
13 | ECLASS="gnome2" |
|
|
14 | INHERITED="$INHERITED $ECLASS" |
|
|
15 | |
16 | |
16 | G2CONF="" # extra configure opts passed to econf |
|
|
17 | ELTCONF="" # extra options passed to elibtoolize |
|
|
18 | SCROLLKEEPER_UPDATE="1" # whether to run scrollkeeper for this package |
|
|
19 | USE_DESTDIR="" # use make DESTDIR=${D} install rather than einstall |
|
|
20 | IUSE="debug" |
|
|
21 | use debug && G2CONF="${G2CONF} --enable-debug=yes" |
|
|
22 | |
17 | |
23 | DEPEND="${DEPEND} >=sys-apps/sed-4" |
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 | } |
24 | |
48 | |
25 | gnome2_src_configure() { |
49 | gnome2_src_configure() { |
26 | elibtoolize ${ELTCONF} |
50 | # Update the GNOME configuration options |
27 | # doc keyword for gtk-doc |
51 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
28 | use doc \ |
52 | if use debug ; then |
29 | && G2CONF="${G2CONF} --enable-gtk-doc" \ |
53 | G2CONF="${G2CONF} --enable-debug=yes" |
30 | || G2CONF="${G2CONF} --disable-gtk-doc" |
54 | fi |
|
|
55 | fi |
31 | |
56 | |
32 | econf "$@" ${G2CONF} || die "./configure failure" |
57 | # Prevent a QA warning |
|
|
58 | if hasq doc ${IUSE} ; then |
|
|
59 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
|
|
60 | fi |
33 | |
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" |
34 | } |
67 | } |
35 | |
68 | |
36 | gnome2_src_compile() { |
69 | gnome2_src_compile() { |
37 | |
|
|
38 | gnome2_src_configure "$@" |
70 | gnome2_src_configure "$@" |
39 | emake || die "compile failure" |
71 | emake || die "compile failure" |
40 | |
|
|
41 | } |
72 | } |
42 | |
73 | |
43 | gnome2_src_install() { |
74 | gnome2_src_install() { |
44 | |
|
|
45 | # if this is not present, scrollkeeper-update may segfault and |
75 | # if this is not present, scrollkeeper-update may segfault and |
46 | # create bogus directories in /var/lib/ |
76 | # create bogus directories in /var/lib/ |
47 | dodir /var/lib/scrollkeeper |
77 | local sk_tmp_dir="/var/lib/scrollkeeper" |
|
|
78 | dodir "${sk_tmp_dir}" |
48 | |
79 | |
49 | # we must delay gconf schema installation due to sandbox |
80 | # we must delay gconf schema installation due to sandbox |
50 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
81 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
51 | |
82 | |
52 | if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
83 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
53 | einstall "scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/" "$@" |
84 | debug-print "Installing with 'make install'" |
|
|
85 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" install || die "install failed" |
54 | else |
86 | else |
55 | make DESTDIR=${D} \ |
87 | debug-print "Installing with 'einstall'" |
56 | scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper \ |
88 | einstall "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" || die "einstall failed" |
57 | "$@" install |
|
|
58 | fi |
89 | fi |
59 | |
90 | |
60 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
91 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
61 | |
92 | |
62 | # manual document installation |
93 | # Manual document installation |
63 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
94 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
64 | |
95 | |
65 | # do not keep /var/lib/scrollkeeper because: |
96 | # Do not keep /var/lib/scrollkeeper because: |
66 | # 1. scrollkeeper will get regenerated at pkg_postinst() |
97 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
67 | # 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
98 | # 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
68 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
99 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
69 | |
|
|
70 | if [ -z "`find ${D} -name '*.omf'`" ]; then |
100 | if [[ -z "$(find "${D}" -name '*.omf')" ]]; then |
71 | export SCROLLKEEPER_UPDATE="0" |
101 | export SCROLLKEEPER_UPDATE="0" |
72 | fi |
102 | fi |
|
|
103 | rm -rf "${D}${sk_tmp_dir}" |
73 | |
104 | |
74 | # regenerate these in pkg_postinst() |
105 | # Make sure this one doesn't get in the portage db |
75 | rm -rf ${D}/var/lib/scrollkeeper |
106 | rm -fr "${D}/usr/share/applications/mimeinfo.cache" |
76 | } |
107 | } |
77 | |
108 | |
78 | |
109 | gnome2_pkg_preinst() { |
79 | gnome2_gconf_install() { |
110 | gnome2_gconf_savelist |
80 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
111 | gnome2_icon_savelist |
81 | then |
|
|
82 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
83 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
|
|
84 | einfo "Installing GNOME 2 GConf schemas" |
|
|
85 | cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do |
|
|
86 | # echo "DEBUG::gconf install ${F}" |
|
|
87 | ${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F} 1>/dev/null |
|
|
88 | done |
|
|
89 | fi |
|
|
90 | } |
|
|
91 | |
|
|
92 | gnome2_gconf_uninstall() { |
|
|
93 | |
|
|
94 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
|
|
95 | then |
|
|
96 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
97 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
|
|
98 | einfo "Uninstalling GNOME 2 GConf schemas" |
|
|
99 | cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do |
|
|
100 | # echo "DEBUG::gconf install ${F}" |
|
|
101 | ${ROOT}/usr/bin/gconftool-2 --makefile-uninstall-rule ${F} 1>/dev/null |
|
|
102 | done |
|
|
103 | fi |
|
|
104 | |
|
|
105 | } |
|
|
106 | |
|
|
107 | gnome2_omf_fix() { |
|
|
108 | # workaround/patch against omf.make or omf-install/Makefile.in |
|
|
109 | # in order to remove redundant scrollkeeper-updates. |
|
|
110 | # - <liquidx@gentoo.org> |
|
|
111 | |
|
|
112 | local omf_makefiles |
|
|
113 | |
|
|
114 | omf_makefiles="$@" |
|
|
115 | |
|
|
116 | [ -f ${S}/omf-install/Makefile.in ] \ |
|
|
117 | && omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
|
|
118 | |
|
|
119 | # FIXME: does this really work? because omf.make only gets included |
|
|
120 | # when autoconf/automake is run. You should directly patch |
|
|
121 | # the Makefile.in's |
|
|
122 | |
|
|
123 | [ -f ${S}/omf.make ] \ |
|
|
124 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
|
|
125 | |
|
|
126 | for omf in ${omf_makefiles}; do |
|
|
127 | omfbase=$(basename ${omf}) |
|
|
128 | einfo "Fixing OMF Makefile: ${omf#${S}/}" |
|
|
129 | sed -i -e 's:-scrollkeeper-update.*::' ${omf} |
|
|
130 | done |
|
|
131 | } |
|
|
132 | |
|
|
133 | gnome2_scrollkeeper_update() { |
|
|
134 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
|
|
135 | then |
|
|
136 | echo ">>> Updating Scrollkeeper" |
|
|
137 | scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
|
|
138 | fi |
|
|
139 | } |
112 | } |
140 | |
113 | |
141 | gnome2_pkg_postinst() { |
114 | gnome2_pkg_postinst() { |
142 | gnome2_gconf_install |
115 | gnome2_gconf_install |
|
|
116 | fdo-mime_desktop_database_update |
|
|
117 | fdo-mime_mime_database_update |
|
|
118 | gnome2_icon_cache_update |
|
|
119 | |
|
|
120 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
143 | gnome2_scrollkeeper_update |
121 | gnome2_scrollkeeper_update |
|
|
122 | fi |
144 | } |
123 | } |
145 | |
124 | |
146 | #gnome2_pkg_prerm() { |
125 | #gnome2_pkg_prerm() { |
147 | |
|
|
148 | # gnome2_gconf_uninstall |
126 | # gnome2_gconf_uninstall |
149 | |
|
|
150 | #} |
127 | #} |
151 | |
128 | |
152 | gnome2_pkg_postrm() { |
129 | gnome2_pkg_postrm() { |
|
|
130 | fdo-mime_desktop_database_update |
|
|
131 | fdo-mime_mime_database_update |
|
|
132 | gnome2_icon_cache_update |
|
|
133 | |
|
|
134 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
153 | gnome2_scrollkeeper_update |
135 | gnome2_scrollkeeper_update |
|
|
136 | fi |
154 | } |
137 | } |
155 | |
138 | |
156 | |
139 | # pkg_prerm |
157 | #EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_prerm pkg_postrm |
|
|
158 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
140 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
159 | |
|
|
160 | |
|
|