| 1 |
# Copyright 1999-2003 Gentoo Technologies, Inc. |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /home/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.36 2003/10/26 10:22:51 liquidx Exp $ |
| 4 |
# |
| 5 |
# Authors: |
| 6 |
# Bruce A. Locke <blocke@shivan.org> |
| 7 |
# Spidler <spider@gentoo.org> |
| 8 |
|
| 9 |
inherit libtool gnome.org |
| 10 |
[ `use debug` ] && inherit debug |
| 11 |
|
| 12 |
# Gnome 2 ECLASS |
| 13 |
ECLASS="gnome2" |
| 14 |
INHERITED="$INHERITED $ECLASS" |
| 15 |
|
| 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 |
|
| 21 |
[ `use debug` ] && G2CONF="${G2CONF} --enable-debug=yes" |
| 22 |
|
| 23 |
newdepend ">=sys-apps/sed-4" |
| 24 |
|
| 25 |
gnome2_src_configure() { |
| 26 |
elibtoolize ${ELTCONF} |
| 27 |
# doc keyword for gtk-doc |
| 28 |
use doc \ |
| 29 |
&& G2CONF="${G2CONF} --enable-gtk-doc" \ |
| 30 |
|| G2CONF="${G2CONF} --disable-gtk-doc" |
| 31 |
|
| 32 |
econf "$@" ${G2CONF} || die "./configure failure" |
| 33 |
|
| 34 |
} |
| 35 |
|
| 36 |
gnome2_src_compile() { |
| 37 |
|
| 38 |
gnome2_src_configure "$@" |
| 39 |
emake || die "compile failure" |
| 40 |
|
| 41 |
} |
| 42 |
|
| 43 |
gnome2_src_install() { |
| 44 |
|
| 45 |
# if this is not present, scrollkeeper-update may segfault and |
| 46 |
# create bogus directories in /var/lib/ |
| 47 |
dodir /var/lib/scrollkeeper |
| 48 |
|
| 49 |
# we must delay gconf schema installation due to sandbox |
| 50 |
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 51 |
|
| 52 |
if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
| 53 |
einstall "scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/" "$@" |
| 54 |
else |
| 55 |
make DESTDIR=${D} \ |
| 56 |
scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper \ |
| 57 |
"$@" install |
| 58 |
fi |
| 59 |
|
| 60 |
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 61 |
|
| 62 |
# manual document installation |
| 63 |
[ -n "${DOCS}" ] && dodoc ${DOCS} |
| 64 |
|
| 65 |
# do not keep /var/lib/scrollkeeper because: |
| 66 |
# 1. scrollkeeper will get regenerated at pkg_postinst() |
| 67 |
# 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. |
| 69 |
|
| 70 |
if [ -z "`find ${D} -name '*.omf'`" ]; then |
| 71 |
export SCROLLKEEPER_UPDATE="0" |
| 72 |
fi |
| 73 |
|
| 74 |
# regenerate these in pkg_postinst() |
| 75 |
rm -rf ${D}/var/lib/scrollkeeper |
| 76 |
} |
| 77 |
|
| 78 |
|
| 79 |
gnome2_gconf_install() { |
| 80 |
if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
| 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} |
| 88 |
done |
| 89 |
echo |
| 90 |
fi |
| 91 |
} |
| 92 |
|
| 93 |
gnome2_omf_fix() { |
| 94 |
# workaround/patch against omf.make or omf-install/Makefile.in |
| 95 |
# in order to remove redundant scrollkeeper-updates. |
| 96 |
# - <liquidx@gentoo.org> |
| 97 |
|
| 98 |
local omf_makefiles |
| 99 |
|
| 100 |
omf_makefiles="$@" |
| 101 |
|
| 102 |
[ -f ${S}/omf-install/Makefile.in ] \ |
| 103 |
&& omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
| 104 |
|
| 105 |
# FIXME: does this really work? because omf.make only gets included |
| 106 |
# when autoconf/automake is run. You should directly patch |
| 107 |
# the Makefile.in's |
| 108 |
|
| 109 |
[ -f ${S}/omf.make ] \ |
| 110 |
&& omf_makefiles="${omf_makefiles} ${S}/omf.make" |
| 111 |
|
| 112 |
for omf in ${omf_makefiles}; do |
| 113 |
omfbase=$(basename ${omf}) |
| 114 |
einfo "Fixing OMF Makefile: ${omf#${S}/}" |
| 115 |
sed -i -e 's:-scrollkeeper-update.*::' ${omf} |
| 116 |
done |
| 117 |
} |
| 118 |
|
| 119 |
gnome2_scrollkeeper_update() { |
| 120 |
if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
| 121 |
then |
| 122 |
echo ">>> Updating Scrollkeeper" |
| 123 |
scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
| 124 |
fi |
| 125 |
} |
| 126 |
|
| 127 |
gnome2_pkg_postinst() { |
| 128 |
gnome2_gconf_install |
| 129 |
gnome2_scrollkeeper_update |
| 130 |
} |
| 131 |
|
| 132 |
gnome2_pkg_postrm() { |
| 133 |
gnome2_scrollkeeper_update |
| 134 |
} |
| 135 |
|
| 136 |
|
| 137 |
EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |