| 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.57 2005/08/01 23:19:07 foser Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.88 2010/12/07 06:18:55 eva 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 debug fdo-mime |
|
|
| 10 | |
14 | |
| 11 | # Gnome 2 ECLASS |
15 | inherit fdo-mime libtool gnome.org gnome2-utils |
| 12 | |
16 | |
| 13 | G2CONF="" # extra configure opts passed to econf |
17 | case "${EAPI:-0}" in |
| 14 | ELTCONF="" # extra options passed to elibtoolize |
18 | 0|1) |
| 15 | SCROLLKEEPER_UPDATE="1" # whether to run scrollkeeper for this package |
19 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 16 | USE_DESTDIR="" # use make DESTDIR=${D} install rather than einstall |
20 | ;; |
|
|
21 | *) |
|
|
22 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|
23 | ;; |
|
|
24 | esac |
| 17 | |
25 | |
| 18 | IUSE="" |
26 | # Extra configure opts passed to econf |
|
|
27 | G2CONF=${G2CONF:-""} |
| 19 | |
28 | |
| 20 | use debug && G2CONF="${G2CONF} --enable-debug=yes" |
29 | # Extra options passed to elibtoolize |
|
|
30 | ELTCONF=${ELTCONF:-""} |
| 21 | |
31 | |
| 22 | DEPEND=">=sys-apps/sed-4" |
32 | # Should we use EINSTALL instead of DESTDIR |
|
|
33 | USE_EINSTALL=${USE_EINSTALL:-""} |
|
|
34 | |
|
|
35 | # Run scrollkeeper for this package? |
|
|
36 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
|
|
37 | |
|
|
38 | |
|
|
39 | |
|
|
40 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
|
|
41 | IUSE="debug" |
|
|
42 | fi |
|
|
43 | |
|
|
44 | |
|
|
45 | |
|
|
46 | gnome2_src_unpack() { |
|
|
47 | unpack ${A} |
|
|
48 | cd "${S}" |
|
|
49 | has ${EAPI:-0} 0 1 && gnome2_src_prepare |
|
|
50 | } |
|
|
51 | |
|
|
52 | gnome2_src_prepare() { |
|
|
53 | # Prevent scrollkeeper access violations |
|
|
54 | gnome2_omf_fix |
|
|
55 | |
|
|
56 | # Run libtoolize |
|
|
57 | elibtoolize ${ELTCONF} |
|
|
58 | } |
| 23 | |
59 | |
| 24 | gnome2_src_configure() { |
60 | gnome2_src_configure() { |
|
|
61 | # Update the GNOME configuration options |
|
|
62 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
|
|
63 | if use debug ; then |
|
|
64 | G2CONF="${G2CONF} --enable-debug=yes" |
|
|
65 | fi |
|
|
66 | fi |
| 25 | |
67 | |
| 26 | # [ -n "${ELTCONF}" ] && elibtoolize ${ELTCONF} |
68 | # Prevent a QA warning |
| 27 | elibtoolize ${ELTCONF} |
69 | if hasq doc ${IUSE} ; then |
|
|
70 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
|
|
71 | fi |
| 28 | |
72 | |
| 29 | # doc keyword for gtk-doc |
73 | # Avoid sandbox violations caused by misbehaving packages (bug #128289) |
| 30 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
74 | addwrite "/root/.gnome2" |
| 31 | |
75 | |
| 32 | econf "$@" ${G2CONF} || die "./configure failure" |
76 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
| 33 | |
77 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} || die "configure failed" |
| 34 | } |
78 | } |
| 35 | |
79 | |
| 36 | gnome2_src_compile() { |
80 | gnome2_src_compile() { |
| 37 | |
81 | has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
| 38 | gnome2_src_configure "$@" |
|
|
| 39 | emake || die "compile failure" |
82 | emake || die "compile failure" |
| 40 | |
|
|
| 41 | } |
83 | } |
| 42 | |
84 | |
| 43 | gnome2_src_install() { |
85 | gnome2_src_install() { |
| 44 | |
86 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
| 45 | # if this is not present, scrollkeeper-update may segfault and |
87 | # if this is not present, scrollkeeper-update may segfault and |
| 46 | # create bogus directories in /var/lib/ |
88 | # create bogus directories in /var/lib/ |
| 47 | dodir /var/lib/scrollkeeper |
89 | local sk_tmp_dir="/var/lib/scrollkeeper" |
|
|
90 | dodir "${sk_tmp_dir}" |
| 48 | |
91 | |
| 49 | # we must delay gconf schema installation due to sandbox |
92 | # we must delay gconf schema installation due to sandbox |
| 50 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
93 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 51 | |
94 | |
| 52 | if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
95 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 53 | einstall "scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/" "$@" || die "einstall failed" |
96 | debug-print "Installing with 'make install'" |
|
|
97 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" install || die "install failed" |
| 54 | else |
98 | else |
| 55 | make DESTDIR=${D} \ |
99 | debug-print "Installing with 'einstall'" |
| 56 | "$@" install || die "make DESTDIR install failed" |
100 | einstall "scrollkeeper_localstate_dir=${ED}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 57 | fi |
101 | fi |
| 58 | |
102 | |
| 59 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
103 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 60 | |
104 | |
| 61 | # manual document installation |
105 | # Manual document installation |
| 62 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
106 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
| 63 | |
107 | |
| 64 | # do not keep /var/lib/scrollkeeper because: |
108 | # Do not keep /var/lib/scrollkeeper because: |
| 65 | # 1. scrollkeeper will get regenerated at pkg_postinst() |
109 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
| 66 | # 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
110 | # 2. ${ED}/var/lib/scrollkeeper contains only indexes for the current pkg |
| 67 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
111 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
| 68 | |
|
|
| 69 | if [ -z "`find ${D} -name '*.omf'`" ]; then |
112 | if [[ -z "$(find "${D}" -name '*.omf')" ]]; then |
| 70 | export SCROLLKEEPER_UPDATE="0" |
113 | export SCROLLKEEPER_UPDATE="0" |
| 71 | fi |
114 | fi |
|
|
115 | rm -rf "${ED}${sk_tmp_dir}" |
| 72 | |
116 | |
| 73 | # regenerate these in pkg_postinst() |
|
|
| 74 | rm -rf ${D}/var/lib/scrollkeeper |
|
|
| 75 | # make sure this one doesn't get in the portage db |
117 | # Make sure this one doesn't get in the portage db |
| 76 | rm -fr ${D}/usr/share/applications/mimeinfo.cache |
118 | rm -fr "${ED}/usr/share/applications/mimeinfo.cache" |
| 77 | |
|
|
| 78 | } |
119 | } |
| 79 | |
120 | |
| 80 | |
121 | gnome2_pkg_preinst() { |
| 81 | gnome2_gconf_install() { |
122 | gnome2_gconf_savelist |
| 82 | |
123 | gnome2_icon_savelist |
| 83 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
124 | gnome2_schemas_savelist |
| 84 | then |
|
|
| 85 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
| 86 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
|
|
| 87 | einfo "Installing GNOME 2 GConf schemas" |
|
|
| 88 | grep "obj /etc/gconf/schemas" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS | sed 's:obj \([^ ]*\) .*:\1:' | while read F; do |
|
|
| 89 | if [ -e "${F}" ]; then |
|
|
| 90 | # echo "DEBUG::gconf install ${F}" |
|
|
| 91 | ${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F} 1>/dev/null |
|
|
| 92 | fi |
|
|
| 93 | done |
|
|
| 94 | fi |
|
|
| 95 | |
|
|
| 96 | } |
|
|
| 97 | |
|
|
| 98 | gnome2_gconf_uninstall() { |
|
|
| 99 | |
|
|
| 100 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
|
|
| 101 | then |
|
|
| 102 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
| 103 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
|
|
| 104 | einfo "Uninstalling GNOME 2 GConf schemas" |
|
|
| 105 | cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do |
|
|
| 106 | # echo "DEBUG::gconf install ${F}" |
|
|
| 107 | ${ROOT}/usr/bin/gconftool-2 --makefile-uninstall-rule ${F} 1>/dev/null |
|
|
| 108 | done |
|
|
| 109 | fi |
|
|
| 110 | |
|
|
| 111 | } |
|
|
| 112 | |
|
|
| 113 | gnome2_icon_cache_update() { |
|
|
| 114 | local updater=`which gtk-update-icon-cache` |
|
|
| 115 | if ! grep -q "obj /usr/share/icons" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS \ |
|
|
| 116 | || [ ! -x "$updater" ]; then |
|
|
| 117 | # Nothing to update |
|
|
| 118 | return |
|
|
| 119 | fi |
|
|
| 120 | |
|
|
| 121 | ebegin "Updating icons cache" |
|
|
| 122 | |
|
|
| 123 | local retval=0 |
|
|
| 124 | for dir in \ |
|
|
| 125 | $(find ${ROOT}/usr/share/icons -maxdepth 1 -mindepth 1 -type d); do |
|
|
| 126 | $updater -qf $dir || retval=$? |
|
|
| 127 | done |
|
|
| 128 | |
|
|
| 129 | eend $retval |
|
|
| 130 | } |
|
|
| 131 | |
|
|
| 132 | gnome2_omf_fix() { |
|
|
| 133 | |
|
|
| 134 | # workaround/patch against omf.make or omf-install/Makefile.in |
|
|
| 135 | # in order to remove redundant scrollkeeper-updates. |
|
|
| 136 | # - <liquidx@gentoo.org> |
|
|
| 137 | |
|
|
| 138 | local omf_makefiles |
|
|
| 139 | |
|
|
| 140 | omf_makefiles="$@" |
|
|
| 141 | |
|
|
| 142 | [ -f ${S}/omf-install/Makefile.in ] \ |
|
|
| 143 | && omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
|
|
| 144 | |
|
|
| 145 | # FIXME: does this really work? because omf.make only gets included |
|
|
| 146 | # when autoconf/automake is run. You should directly patch |
|
|
| 147 | # the Makefile.in's |
|
|
| 148 | |
|
|
| 149 | [ -f ${S}/omf.make ] \ |
|
|
| 150 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
|
|
| 151 | |
|
|
| 152 | for omf in ${omf_makefiles}; do |
|
|
| 153 | omfbase=$(basename ${omf}) |
|
|
| 154 | einfo "Fixing OMF Makefile: ${omf#${S}/}" |
|
|
| 155 | sed -i -e 's:-scrollkeeper-update.*::' ${omf} |
|
|
| 156 | done |
|
|
| 157 | |
|
|
| 158 | } |
|
|
| 159 | |
|
|
| 160 | gnome2_scrollkeeper_update() { |
|
|
| 161 | |
|
|
| 162 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
|
|
| 163 | then |
|
|
| 164 | echo ">>> Updating Scrollkeeper" |
|
|
| 165 | scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
|
|
| 166 | fi |
|
|
| 167 | |
|
|
| 168 | } |
125 | } |
| 169 | |
126 | |
| 170 | gnome2_pkg_postinst() { |
127 | gnome2_pkg_postinst() { |
| 171 | |
|
|
| 172 | gnome2_gconf_install |
128 | gnome2_gconf_install |
| 173 | gnome2_scrollkeeper_update |
|
|
| 174 | fdo-mime_desktop_database_update |
129 | fdo-mime_desktop_database_update |
| 175 | fdo-mime_mime_database_update |
130 | fdo-mime_mime_database_update |
| 176 | gnome2_icon_cache_update |
131 | gnome2_icon_cache_update |
|
|
132 | gnome2_schemas_update |
| 177 | |
133 | |
|
|
134 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
135 | gnome2_scrollkeeper_update |
|
|
136 | fi |
| 178 | } |
137 | } |
| 179 | |
138 | |
| 180 | #gnome2_pkg_prerm() { |
139 | #gnome2_pkg_prerm() { |
| 181 | |
|
|
| 182 | # gnome2_gconf_uninstall |
140 | # gnome2_gconf_uninstall |
| 183 | |
|
|
| 184 | #} |
141 | #} |
| 185 | |
142 | |
| 186 | gnome2_pkg_postrm() { |
143 | gnome2_pkg_postrm() { |
| 187 | |
|
|
| 188 | gnome2_scrollkeeper_update |
|
|
| 189 | fdo-mime_desktop_database_update |
144 | fdo-mime_desktop_database_update |
| 190 | fdo-mime_mime_database_update |
145 | fdo-mime_mime_database_update |
| 191 | gnome2_icon_cache_update |
146 | gnome2_icon_cache_update |
|
|
147 | gnome2_schemas_update --uninstall |
| 192 | |
148 | |
|
|
149 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
150 | gnome2_scrollkeeper_update |
|
|
151 | fi |
| 193 | } |
152 | } |
| 194 | |
153 | |
| 195 | #EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_prerm pkg_postrm |
154 | # pkg_prerm |
| 196 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
|
|