| 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.64 2006/03/17 14:43:32 allanonjl Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.86 2009/02/17 16:05:33 dang Exp $ |
| 4 | |
4 | |
| 5 | # GNOME 2 ECLASS |
5 | # |
| 6 | inherit libtool gnome.org debug fdo-mime eutils |
6 | # gnome2.eclass |
|
|
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 | # |
|
|
13 | |
|
|
14 | |
|
|
15 | inherit fdo-mime libtool gnome.org gnome2-utils |
|
|
16 | |
|
|
17 | case "${EAPI:-0}" in |
|
|
18 | 0|1) |
|
|
19 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|
20 | ;; |
|
|
21 | *) |
|
|
22 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|
23 | ;; |
|
|
24 | esac |
| 7 | |
25 | |
| 8 | # Extra configure opts passed to econf |
26 | # Extra configure opts passed to econf |
| 9 | G2CONF=${G2CONF:=""} |
27 | G2CONF=${G2CONF:-""} |
| 10 | |
28 | |
| 11 | # Extra options passed to elibtoolize |
29 | # Extra options passed to elibtoolize |
| 12 | ELTCONF=${ELTCONF:=""} |
30 | ELTCONF=${ELTCONF:-""} |
| 13 | |
31 | |
| 14 | # Should we use EINSTALL instead of DESTDIR |
32 | # Should we use EINSTALL instead of DESTDIR |
| 15 | USE_EINSTALL=${USE_EINSTALL:=""} |
33 | USE_EINSTALL=${USE_EINSTALL:-""} |
| 16 | |
34 | |
| 17 | # Run scrollkeeper for this package? |
35 | # Run scrollkeeper for this package? |
| 18 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:="1"} |
36 | SCROLLKEEPER_UPDATE=${SCROLLKEEPER_UPDATE:-"1"} |
| 19 | |
37 | |
| 20 | # Where to put scrollkeeper data lives |
|
|
| 21 | SCROLLKEEPER_DIR=${SCROLLKEEPER_DIR:="/var/lib/scrollkeeper"} |
|
|
| 22 | |
38 | |
| 23 | # Path to scrollkeeper-update |
|
|
| 24 | SCROLLKEEPER_UPDATE_BIN=${SCROLLKEEPER_UPDATE_BIN:="${ROOT}/usr/bin/scrollkeeper-update"} |
|
|
| 25 | |
39 | |
| 26 | # Path to gconftool-2 |
40 | if [[ ${GCONF_DEBUG} != "no" ]]; then |
| 27 | GCONFTOOL_BIN=${GCONFTOOL_BIN:="${ROOT}/usr/bin/gconftool-2"} |
41 | IUSE="debug" |
|
|
42 | fi |
| 28 | |
43 | |
| 29 | IUSE="debug" |
|
|
| 30 | |
44 | |
| 31 | DEPEND=">=sys-apps/sed-4 |
|
|
| 32 | sys-apps/findutils" |
|
|
| 33 | |
45 | |
| 34 | gnome2_src_unpack() { |
46 | gnome2_src_unpack() { |
| 35 | unpack ${A} |
47 | unpack ${A} |
| 36 | cd ${S} |
48 | cd "${S}" |
|
|
49 | has ${EAPI:-0} 0 1 && gnome2_src_prepare |
|
|
50 | } |
| 37 | |
51 | |
|
|
52 | gnome2_src_prepare() { |
| 38 | # Prevent scrollkeeper access violations |
53 | # Prevent scrollkeeper access violations |
| 39 | gnome2_omf_fix |
54 | gnome2_omf_fix |
|
|
55 | |
|
|
56 | # Run libtoolize |
|
|
57 | elibtoolize ${ELTCONF} |
| 40 | } |
58 | } |
| 41 | |
59 | |
| 42 | gnome2_src_configure() { |
60 | gnome2_src_configure() { |
| 43 | # Update the GNOME configuration options |
61 | # Update the GNOME configuration options |
|
|
62 | if [[ ${GCONF_DEBUG} != 'no' ]] ; then |
|
|
63 | if use debug ; then |
| 44 | use debug && G2CONF="${G2CONF} --enable-debug=yes" |
64 | G2CONF="${G2CONF} --enable-debug=yes" |
| 45 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
65 | fi |
|
|
66 | fi |
| 46 | |
67 | |
| 47 | # Run libtoolize |
68 | # Prevent a QA warning |
| 48 | elibtoolize ${ELTCONF} |
69 | if hasq doc ${IUSE} ; then |
|
|
70 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
|
|
71 | fi |
|
|
72 | |
|
|
73 | # Avoid sandbox violations caused by misbehaving packages (bug #128289) |
|
|
74 | addwrite "/root/.gnome2" |
| 49 | |
75 | |
| 50 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
76 | # GST_REGISTRY is to work around gst-inspect trying to read/write /root |
| 51 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} || die "configure failed" |
77 | GST_REGISTRY="${S}/registry.xml" econf "$@" ${G2CONF} || die "configure failed" |
| 52 | } |
78 | } |
| 53 | |
79 | |
| 54 | gnome2_src_compile() { |
80 | gnome2_src_compile() { |
| 55 | gnome2_src_configure "$@" |
81 | has ${EAPI:-0} 0 1 && gnome2_src_configure "$@" |
| 56 | emake || die "compile failure" |
82 | emake || die "compile failure" |
| 57 | } |
83 | } |
| 58 | |
84 | |
| 59 | gnome2_src_install() { |
85 | gnome2_src_install() { |
| 60 | # if this is not present, scrollkeeper-update may segfault and |
86 | # if this is not present, scrollkeeper-update may segfault and |
| 61 | # create bogus directories in /var/lib/ |
87 | # create bogus directories in /var/lib/ |
| 62 | dodir "${SCROLLKEEPER_DIR}" |
88 | local sk_tmp_dir="/var/lib/scrollkeeper" |
|
|
89 | dodir "${sk_tmp_dir}" |
| 63 | |
90 | |
| 64 | # we must delay gconf schema installation due to sandbox |
91 | # we must delay gconf schema installation due to sandbox |
| 65 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
92 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 66 | |
93 | |
| 67 | debug-print "You are testing with DESTDIR by default - AllanonJL" |
|
|
| 68 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
94 | if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then |
| 69 | make DESTDIR=${D} "$@" install || die "install failed" |
95 | debug-print "Installing with 'make install'" |
|
|
96 | emake DESTDIR="${D}" "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" install || die "install failed" |
| 70 | else |
97 | else |
|
|
98 | debug-print "Installing with 'einstall'" |
| 71 | einstall "scrollkeeper_localstate_dir=${D}${SCROLLKEEPER_DIR} " "$@" || die "einstall failed" |
99 | einstall "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" || die "einstall failed" |
| 72 | fi |
100 | fi |
| 73 | |
101 | |
| 74 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
102 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 75 | |
103 | |
| 76 | # Manual document installation |
104 | # Manual document installation |
| 77 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
105 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
| 78 | |
106 | |
| 79 | # Do not keep /var/lib/scrollkeeper because: |
107 | # Do not keep /var/lib/scrollkeeper because: |
| 80 | # 1. scrollkeeper will get regenerated at pkg_postinst() |
108 | # 1. The scrollkeeper database is regenerated at pkg_postinst() |
| 81 | # 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
109 | # 2. ${D}/var/lib/scrollkeeper contains only indexes for the current pkg |
| 82 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
110 | # thus it makes no sense if pkg_postinst ISN'T run for some reason. |
| 83 | |
|
|
| 84 | if [[ -z "$(find ${D} -name '*.omf')" ]]; then |
111 | if [[ -z "$(find "${D}" -name '*.omf')" ]]; then |
| 85 | export SCROLLKEEPER_UPDATE="0" |
112 | export SCROLLKEEPER_UPDATE="0" |
| 86 | fi |
113 | fi |
| 87 | |
114 | rm -rf "${D}${sk_tmp_dir}" |
| 88 | # Regenerate these in pkg_postinst() |
|
|
| 89 | rm -rf "${D}${SCROLLKEEPER_DIR}" |
|
|
| 90 | |
115 | |
| 91 | # Make sure this one doesn't get in the portage db |
116 | # Make sure this one doesn't get in the portage db |
| 92 | rm -fr "${D}/usr/share/applications/mimeinfo.cache" |
117 | rm -fr "${D}/usr/share/applications/mimeinfo.cache" |
| 93 | } |
118 | } |
| 94 | |
119 | |
| 95 | |
120 | gnome2_pkg_preinst() { |
| 96 | gnome2_gconf_install() { |
121 | gnome2_gconf_savelist |
| 97 | if [[ -x ${GCONFTOOL_BIN} ]]; then |
122 | gnome2_icon_savelist |
| 98 | # We are ready to install the GCONF Scheme now |
|
|
| 99 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
| 100 | export GCONF_CONFIG_SOURCE=$(${GCONFTOOL_BIN} --get-default-source) |
|
|
| 101 | |
|
|
| 102 | einfo "Installing GNOME 2 GConf schemas" |
|
|
| 103 | |
|
|
| 104 | local contents="${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS" |
|
|
| 105 | |
|
|
| 106 | for F in $(grep "obj /etc/gconf/schemas" ${contents} | sed 's:obj \([^ ]*\) .*:\1:' ); do |
|
|
| 107 | if [[ -e "${F}" ]]; then |
|
|
| 108 | # echo "DEBUG::gconf install ${F}" |
|
|
| 109 | ${GCONFTOOL_BIN} --makefile-install-rule ${F} 1>/dev/null |
|
|
| 110 | fi |
|
|
| 111 | done |
|
|
| 112 | fi |
|
|
| 113 | } |
|
|
| 114 | |
|
|
| 115 | gnome2_gconf_uninstall() { |
|
|
| 116 | if [[ -x ${GCONFTOOL_BIN} ]]; then |
|
|
| 117 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
| 118 | export GCONF_CONFIG_SOURCE=$(${GCONFTOOL_BIN} --get-default-source) |
|
|
| 119 | |
|
|
| 120 | einfo "Uninstalling GNOME 2 GConf schemas" |
|
|
| 121 | |
|
|
| 122 | local contents="${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS" |
|
|
| 123 | |
|
|
| 124 | for F in $(grep "obj /etc/gconf/schemas" ${contents} | sed 's:obj \([^ ]*\) .*:\1:' ); do |
|
|
| 125 | # echo "DEBUG::gconf install ${F}" |
|
|
| 126 | ${GCONFTOOL_BIN} --makefile-uninstall-rule ${F} 1>/dev/null |
|
|
| 127 | done |
|
|
| 128 | fi |
|
|
| 129 | } |
|
|
| 130 | |
|
|
| 131 | gnome2_icon_cache_update() { |
|
|
| 132 | local updater=$(type -p gtk-update-icon-cache 2> /dev/null) |
|
|
| 133 | |
|
|
| 134 | ebegin "Updating icons cache" |
|
|
| 135 | |
|
|
| 136 | if [[ ! -x ${updater} ]] ; then |
|
|
| 137 | debug-print "${updater} is not executable" |
|
|
| 138 | |
|
|
| 139 | # We failed to run |
|
|
| 140 | eend 1 |
|
|
| 141 | |
|
|
| 142 | return |
|
|
| 143 | fi |
|
|
| 144 | |
|
|
| 145 | if ! grep -q "obj /usr/share/icons" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS |
|
|
| 146 | then |
|
|
| 147 | debug-print "No items to update" |
|
|
| 148 | |
|
|
| 149 | # We are done successfully |
|
|
| 150 | eend 0 |
|
|
| 151 | |
|
|
| 152 | return |
|
|
| 153 | fi |
|
|
| 154 | |
|
|
| 155 | local retval=0 |
|
|
| 156 | local fails=( ) |
|
|
| 157 | |
|
|
| 158 | for dir in $(find ${ROOT}/usr/share/icons -maxdepth 1 -mindepth 1 -type d) |
|
|
| 159 | do |
|
|
| 160 | if [[ -f "${dir}/index.theme" ]] ; then |
|
|
| 161 | local rv=0 |
|
|
| 162 | |
|
|
| 163 | ${updater} -qf ${dir} |
|
|
| 164 | rv=$? |
|
|
| 165 | |
|
|
| 166 | if [[ ! $rv -eq 0 ]] ; then |
|
|
| 167 | debug-print "Updating cache failed on ${dir}" |
|
|
| 168 | |
|
|
| 169 | # Add to the list of failures |
|
|
| 170 | fails[$(( ${#fails[@]} + 1 ))]=$dir |
|
|
| 171 | |
|
|
| 172 | retval=2 |
|
|
| 173 | fi |
|
|
| 174 | fi |
|
|
| 175 | done |
|
|
| 176 | |
|
|
| 177 | eend ${retval} |
|
|
| 178 | |
|
|
| 179 | for (( i = 0 ; i < ${#fails[@]} ; i++ )) ; do |
|
|
| 180 | eerror "Failed to update cache with icon ${fails[i]}" |
|
|
| 181 | done |
|
|
| 182 | } |
|
|
| 183 | |
|
|
| 184 | gnome2_omf_fix() { |
|
|
| 185 | # workaround/patch against omf.make or omf-install/Makefile.in |
|
|
| 186 | # in order to remove redundant scrollkeeper-updates. |
|
|
| 187 | # - <liquidx@gentoo.org> |
|
|
| 188 | |
|
|
| 189 | local omf_makefiles filename |
|
|
| 190 | |
|
|
| 191 | omf_makefiles="$@" |
|
|
| 192 | |
|
|
| 193 | if [[ -f ${S}/omf-install/Makefile.in ]] ; then |
|
|
| 194 | omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
|
|
| 195 | fi |
|
|
| 196 | |
|
|
| 197 | # FIXME: does this really work? because omf.make only gets included |
|
|
| 198 | # when autoconf/automake is run. You should directly patch |
|
|
| 199 | # the Makefile.in's |
|
|
| 200 | |
|
|
| 201 | if [[ -f ${S}/omf.make ]] ; then |
|
|
| 202 | omf_makefiles="${omf_makefiles} ${S}/omf.make" |
|
|
| 203 | fi |
|
|
| 204 | |
|
|
| 205 | # testing fixing of all makefiles found |
|
|
| 206 | for filename in $(find ./ -name "Makefile.in" -o -name "Makefile.am") ; do |
|
|
| 207 | omf_makefiles="${omf_makefiles} ${filename}" |
|
|
| 208 | done |
|
|
| 209 | |
|
|
| 210 | ebegin "Fixing OMF Makefiles" |
|
|
| 211 | |
|
|
| 212 | local retval=0 |
|
|
| 213 | local fails=( ) |
|
|
| 214 | |
|
|
| 215 | for omf in ${omf_makefiles} ; do |
|
|
| 216 | local rv=0 |
|
|
| 217 | |
|
|
| 218 | sed -i -e 's:scrollkeeper-update:true:' ${omf} |
|
|
| 219 | retval=$? |
|
|
| 220 | |
|
|
| 221 | if [[ ! $rv -eq 0 ]] ; then |
|
|
| 222 | debug-print "updating of ${omf} failed" |
|
|
| 223 | |
|
|
| 224 | # Add to the list of failures |
|
|
| 225 | fails[$(( ${#fails[@]} + 1 ))]=$omf |
|
|
| 226 | |
|
|
| 227 | retval=2 |
|
|
| 228 | fi |
|
|
| 229 | done |
|
|
| 230 | |
|
|
| 231 | eend $retval |
|
|
| 232 | |
|
|
| 233 | for (( i = 0 ; i < ${#fails[@]} ; i++ )) ; do |
|
|
| 234 | eerror "Failed to update OMF Makefile ${fails[i]}" |
|
|
| 235 | done |
|
|
| 236 | } |
|
|
| 237 | |
|
|
| 238 | gnome2_scrollkeeper_update() { |
|
|
| 239 | if [[ -x ${SCROLLKEEPER_UPDATE_BIN} && "${SCROLLKEEPER_UPDATE}" = "1" ]] |
|
|
| 240 | then |
|
|
| 241 | einfo "Updating scrollkeeper database ..." |
|
|
| 242 | ${SCROLLKEEPER_UPDATE_BIN} -q -p ${ROOT}${SCROLLKEEPER_DIR} |
|
|
| 243 | fi |
|
|
| 244 | } |
123 | } |
| 245 | |
124 | |
| 246 | gnome2_pkg_postinst() { |
125 | gnome2_pkg_postinst() { |
| 247 | gnome2_gconf_install |
126 | gnome2_gconf_install |
| 248 | gnome2_scrollkeeper_update |
|
|
| 249 | fdo-mime_desktop_database_update |
127 | fdo-mime_desktop_database_update |
| 250 | fdo-mime_mime_database_update |
128 | fdo-mime_mime_database_update |
| 251 | gnome2_icon_cache_update |
129 | gnome2_icon_cache_update |
|
|
130 | |
|
|
131 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
132 | gnome2_scrollkeeper_update |
|
|
133 | fi |
| 252 | } |
134 | } |
| 253 | |
135 | |
| 254 | #gnome2_pkg_prerm() { |
136 | #gnome2_pkg_prerm() { |
| 255 | # gnome2_gconf_uninstall |
137 | # gnome2_gconf_uninstall |
| 256 | #} |
138 | #} |
| 257 | |
139 | |
| 258 | gnome2_pkg_postrm() { |
140 | gnome2_pkg_postrm() { |
| 259 | gnome2_scrollkeeper_update |
|
|
| 260 | fdo-mime_desktop_database_update |
141 | fdo-mime_desktop_database_update |
| 261 | fdo-mime_mime_database_update |
142 | fdo-mime_mime_database_update |
| 262 | gnome2_icon_cache_update |
143 | gnome2_icon_cache_update |
|
|
144 | |
|
|
145 | if [[ "${SCROLLKEEPER_UPDATE}" = "1" ]]; then |
|
|
146 | gnome2_scrollkeeper_update |
|
|
147 | fi |
| 263 | } |
148 | } |
| 264 | |
149 | |
| 265 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
150 | # pkg_prerm |