| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
| 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.1 2002/06/01 02:55:47 blocke Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.20 2002/08/05 21:19:52 spider Exp $ |
|
|
4 | |
|
|
5 | inherit libtool |
|
|
6 | |
|
|
7 | if [ -n "$DEBUG" ] |
|
|
8 | then |
|
|
9 | inherit debug |
|
|
10 | fi |
|
|
11 | |
|
|
12 | # Authors: |
|
|
13 | # Bruce A. Locke <blocke@shivan.org> |
|
|
14 | # Spidler <spidler@gentoo.org> |
| 4 | |
15 | |
| 5 | # Gnome 2 ECLASS |
16 | # Gnome 2 ECLASS |
| 6 | ECLASS="gnome2" |
17 | ECLASS="gnome2" |
|
|
18 | INHERITED="$INHERITED $ECLASS" |
|
|
19 | G2CONF="" |
| 7 | |
20 | |
| 8 | # DEBUG for Beta |
21 | if [ -n "$DEBUG" ]; then |
| 9 | # Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ |
22 | G2CONF="${G2CONF} --enable-debug=yes" |
| 10 | DEBUG="yes" |
23 | fi |
| 11 | RESTRICT="nostrip" |
|
|
| 12 | # force debug information |
|
|
| 13 | CFLAGS="${CFLAGS} -g" |
|
|
| 14 | CXXFLAGS="${CXXFLAGS} -g" |
|
|
| 15 | |
24 | |
|
|
25 | ELTCONF="" |
|
|
26 | SCROLLKEEPER_UPDATE="1" |
|
|
27 | |
|
|
28 | gnome2_src_configure() { |
|
|
29 | elibtoolize ${ELTCONF} |
|
|
30 | # doc keyword for gtk-doc |
|
|
31 | use doc && G2CONF="${G2CONF} --enable-gtk-doc" || G2CONF="${G2CONF} --disable-gtk-doc" |
|
|
32 | |
|
|
33 | econf ${1} ${G2CONF} || die "./configure failure" |
|
|
34 | |
|
|
35 | } |
| 16 | |
36 | |
| 17 | gnome2_src_compile() { |
37 | gnome2_src_compile() { |
| 18 | |
38 | |
| 19 | libtoolize --copy --force |
39 | gnome2_src_configure ${1} |
| 20 | |
|
|
| 21 | econf "${1} --enable-debug=yes" || die "./configure failure" |
|
|
| 22 | emake || die "compile failure" |
40 | emake || die "compile failure" |
| 23 | |
41 | |
| 24 | } |
42 | } |
| 25 | |
43 | |
| 26 | gnome2_src_install() { |
44 | gnome2_src_install() { |
| 27 | |
45 | |
| 28 | einstall ${1} |
46 | # we must delay gconf schema installation due to sandbox |
|
|
47 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
|
|
48 | |
|
|
49 | einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ ${1}" |
|
|
50 | |
|
|
51 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 29 | |
52 | |
| 30 | # manual document installation |
53 | # manual document installation |
| 31 | if [ -n "${DOC}" && use doc ] |
54 | if [ -n "${DOCS}" ] |
| 32 | then |
55 | then |
| 33 | for x in $DOC; do dodoc $x; done |
56 | dodoc ${DOCS} |
| 34 | fi |
57 | fi |
| 35 | |
58 | |
|
|
59 | # only update scrollkeeper if this package needs it |
|
|
60 | [ ! -d ${D}/var/lib/scrollkeeper ] && SCROLLKEEPER_UPDATE="0" |
|
|
61 | } |
|
|
62 | |
|
|
63 | |
|
|
64 | gnome2_gconf_install() { |
|
|
65 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
|
|
66 | then |
|
|
67 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
68 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
|
|
69 | einfo "installing gnome2 gconf schemas" |
|
|
70 | cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do |
|
|
71 | echo "DEBUG::gconf install ${F}" |
|
|
72 | ${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F} |
|
|
73 | done |
|
|
74 | fi |
|
|
75 | # schema installation |
| 36 | } |
76 | } |
| 37 | |
77 | |
| 38 | gnome2_pkg_postinst() { |
78 | gnome2_pkg_postinst() { |
| 39 | |
79 | gnome2_gconf_install |
| 40 | # manual schema installation |
80 | |
| 41 | if [ -n "${SCHEMA}" ] |
81 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ SCROLLKEEPER_UPDATE = "1" ] |
| 42 | then |
82 | then |
| 43 | for x in $SCHEMA |
83 | echo ">>> Updating Scrollkeeper" |
| 44 | do |
84 | scrollkeeper-update -p ${ROOT}/var/lib/scrollkeeper |
| 45 | /usr/bin/gconftool-2 --makefile-install-rule \ |
|
|
| 46 | /etc/gconf/schemas/${SCHEMA} |
|
|
| 47 | done |
|
|
| 48 | fi |
85 | fi |
| 49 | } |
86 | } |
| 50 | |
87 | |
|
|
88 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst |
| 51 | |
89 | |
| 52 | |
90 | |
| 53 | |
|
|