| 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.10 2002/06/04 10:10:03 blocke Exp $ |
|
|
4 | |
|
|
5 | # Authors: |
|
|
6 | # Bruce A. Locke <blocke@shivan.org> |
|
|
7 | # Spidler <spidler@gentoo.org> |
| 4 | |
8 | |
| 5 | # Gnome 2 ECLASS |
9 | # Gnome 2 ECLASS |
| 6 | ECLASS="gnome2" |
10 | ECLASS="gnome2" |
| 7 | |
11 | |
| 8 | # DEBUG for Beta |
12 | # DEBUG for Beta |
| 9 | # Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ |
13 | # Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ |
| 10 | DEBUG="yes" |
14 | DEBUG="yes" |
| 11 | RESTRICT="nostrip" |
15 | RESTRICT="nostrip" |
|
|
16 | |
|
|
17 | # Remove omit-frame-pointer as some useless folks define that all over the place. they should be shot with a 16 gauge slingshot at least :) |
| 12 | # force debug information |
18 | # force debug information |
| 13 | CFLAGS="${CFLAGS} -g" |
19 | export CFLAGS="${CFLAGS/-fomit-frame-pointer/} -g" |
| 14 | CXXFLAGS="${CXXFLAGS} -g" |
20 | export CXXFLAGS="${CXXFLAGS/-fomit-frame-pointer/} -g" |
| 15 | |
21 | |
|
|
22 | G2CONF="--enable-debug=yes" |
|
|
23 | SCROLLKEEPER_UPDATE="0" |
|
|
24 | |
|
|
25 | gnome2_src_configure() { |
|
|
26 | |
|
|
27 | # doc keyword for gtk-doc |
|
|
28 | use doc && G2CONF="${G2CONF} --enable-gtk-doc" || G2CONF="${G2CONF} --disable-gtk-doc" |
|
|
29 | |
|
|
30 | # fix those .la files |
|
|
31 | if [ "${LIBTOOL_FIX}" = "1" ] |
|
|
32 | then |
|
|
33 | libtoolize --copy --force |
|
|
34 | fi |
|
|
35 | |
|
|
36 | econf ${1} ${G2CONF} || die "./configure failure" |
|
|
37 | |
|
|
38 | } |
| 16 | |
39 | |
| 17 | gnome2_src_compile() { |
40 | gnome2_src_compile() { |
| 18 | |
41 | |
| 19 | libtoolize --copy --force |
42 | gnome2_src_configure ${1} |
| 20 | |
|
|
| 21 | econf "${1} --enable-debug=yes" || die "./configure failure" |
|
|
| 22 | emake || die "compile failure" |
43 | emake || die "compile failure" |
| 23 | |
44 | |
| 24 | } |
45 | } |
| 25 | |
46 | |
| 26 | gnome2_src_install() { |
47 | gnome2_src_install() { |
| 27 | |
48 | |
| 28 | einstall ${1} |
49 | # we must delay gconf schema installation due to sandbox |
|
|
50 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
|
|
51 | |
|
|
52 | einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ ${1}" |
|
|
53 | |
|
|
54 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 29 | |
55 | |
| 30 | # manual document installation |
56 | # manual document installation |
| 31 | if [ -n "${DOC}" && use doc ] |
57 | if [ -n "${DOCS}" ] |
| 32 | then |
58 | then |
| 33 | for x in $DOC; do dodoc $x; done |
59 | dodoc ${DOCS} |
| 34 | fi |
60 | fi |
|
|
61 | |
|
|
62 | # only update scrollkeeper if this package needs it |
|
|
63 | [ -d ${D}/var/lib/scrollkeeper ] && SCROLLKEEPER_UPDATE="1" |
| 35 | |
64 | |
| 36 | } |
65 | } |
| 37 | |
66 | |
| 38 | gnome2_pkg_postinst() { |
67 | gnome2_pkg_postinst() { |
| 39 | |
68 | |
| 40 | # manual schema installation |
69 | # schema installation |
| 41 | if [ -n "${SCHEMA}" ] |
70 | if [ -n "${SCHEMAS}" ] |
| 42 | then |
71 | then |
|
|
72 | |
|
|
73 | # install/update schemas the hard way |
|
|
74 | export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` |
|
|
75 | |
|
|
76 | echo ">>> Updating GConf2 Schemas for ${P}" |
| 43 | for x in $SCHEMA |
77 | for x in $SCHEMAS |
| 44 | do |
78 | do |
| 45 | /usr/bin/gconftool-2 --makefile-install-rule \ |
79 | /usr/bin/gconftool-2 --makefile-install-rule \ |
| 46 | /etc/gconf/schemas/${SCHEMA} |
80 | /etc/gconf/schemas/${x} |
| 47 | done |
81 | done |
|
|
82 | fi |
|
|
83 | |
|
|
84 | if [ -x /usr/bin/scrollkeeper-update ] && [ SCROLLKEEPER_UPDATE = "1" ] |
|
|
85 | then |
|
|
86 | echo ">>> Updating Scrollkeeper" |
|
|
87 | scrollkeeper-update -p /var/lib/scrollkeeper |
| 48 | fi |
88 | fi |
| 49 | } |
89 | } |
| 50 | |
90 | |
|
|
91 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst |
| 51 | |
92 | |
| 52 | |
93 | |
| 53 | |
|
|