blob: 0d7658b1698d3bbaef24c3594f2ba5a3b3dc6545 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.26 2002/10/20 00:12:06 spider Exp $
inherit libtool gnome.org
if [ -n "$DEBUG" ]
then
inherit debug
fi
# Authors:
# Bruce A. Locke <blocke@shivan.org>
# Spidler <spidler@gentoo.org>
# Gnome 2 ECLASS
ECLASS="gnome2"
INHERITED="$INHERITED $ECLASS"
G2CONF=""
if [ -n "$DEBUG" ]; then
G2CONF="${G2CONF} --enable-debug=yes"
fi
ELTCONF=""
SCROLLKEEPER_UPDATE="1"
gnome2_src_configure() {
elibtoolize ${ELTCONF}
# doc keyword for gtk-doc
use doc && G2CONF="${G2CONF} --enable-gtk-doc" || G2CONF="${G2CONF} --disable-gtk-doc"
econf ${1} ${G2CONF} || die "./configure failure"
}
gnome2_src_compile() {
gnome2_src_configure ${1}
emake || die "compile failure"
}
gnome2_src_install() {
# if this is not present, scrollkeeper-update may segfault and
# create bogus directories in /var/lib/
[ -x ${ROOT}/bin/wc ] && dodir /var/lib/scrollkeeper
# we must delay gconf schema installation due to sandbox
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1"
einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ ${1}"
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
# manual document installation
if [ -n "${DOCS}" ]
then
dodoc ${DOCS}
fi
# if empty, remove
[ -x ${ROOT}/bin/wc ] && [ `ls -al ${D}/var/lib/scrollkeeper | wc -l` -eq 3 ] && \
rm -rf ${D}/var/lib/scrollkeeper
# only update scrollkeeper if this package needs it
[ ! -d ${D}/var/lib/scrollkeeper ] && SCROLLKEEPER_UPDATE="0"
}
gnome2_gconf_install() {
if [ -x ${ROOT}/usr/bin/gconftool-2 ]
then
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source`
einfo "installing gnome2 gconf schemas"
cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do
echo "DEBUG::gconf install ${F}"
${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F}
done
fi
# schema installation
}
gnome2_pkg_postinst() {
gnome2_gconf_install
if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ]
then
echo ">>> Updating Scrollkeeper"
scrollkeeper-update -p ${ROOT}/var/lib/scrollkeeper
fi
}
EXPORT_FUNCTIONS src_compile src_install pkg_postinst
|