| 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.6 2002/06/04 06:41:01 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" |
| 16 | |
23 | |
| 17 | gnome2_src_compile() { |
24 | gnome2_src_compile() { |
| 18 | |
25 | |
|
|
26 | use doc && G2CONF="${G2CONF} --enable-gtk-doc" || G2CONF="${G2CONF} --disable-gtk-doc" |
|
|
27 | |
|
|
28 | if [ "${LIBTOOL_FIX}" = "1" ] |
|
|
29 | then |
| 19 | libtoolize --copy --force |
30 | libtoolize --copy --force |
|
|
31 | fi |
| 20 | |
32 | |
| 21 | econf "${1} --enable-debug=yes" || die "./configure failure" |
33 | econf ${1} ${G2CONF} || die "./configure failure" |
| 22 | emake || die "compile failure" |
34 | emake || die "compile failure" |
| 23 | |
35 | |
| 24 | } |
36 | } |
| 25 | |
37 | |
| 26 | gnome2_src_install() { |
38 | gnome2_src_install() { |
| 27 | |
39 | |
| 28 | einstall ${1} |
40 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
|
|
41 | |
|
|
42 | einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ ${1}" |
| 29 | |
43 | |
| 30 | # manual document installation |
44 | # manual document installation |
| 31 | if [ -n "${DOC}" && use doc ] |
45 | if [ -n "${DOC}" ] |
| 32 | then |
46 | then |
| 33 | for x in $DOC; do dodoc $x; done |
47 | dodoc ${DOC} |
| 34 | fi |
48 | fi |
|
|
49 | |
|
|
50 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 35 | |
51 | |
| 36 | } |
52 | } |
| 37 | |
53 | |
| 38 | gnome2_pkg_postinst() { |
54 | gnome2_pkg_postinst() { |
| 39 | |
55 | |
| 40 | # manual schema installation |
56 | # schema installation |
| 41 | if [ -n "${SCHEMA}" ] |
57 | if [ -n "${SCHEMA}" ] |
| 42 | then |
58 | then |
|
|
59 | |
|
|
60 | export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` |
|
|
61 | |
|
|
62 | echo ">>> Updating GConf2 Schemas for ${P}" |
| 43 | for x in $SCHEMA |
63 | for x in $SCHEMA |
| 44 | do |
64 | do |
| 45 | /usr/bin/gconftool-2 --makefile-install-rule \ |
65 | /usr/bin/gconftool-2 --makefile-install-rule \ |
| 46 | /etc/gconf/schemas/${SCHEMA} |
66 | /etc/gconf/schemas/${SCHEMA} |
| 47 | done |
67 | done |
| 48 | fi |
68 | fi |
|
|
69 | |
|
|
70 | if [ -x /usr/bin/scrollkeeper-update ] |
|
|
71 | then |
|
|
72 | echo ">>> Updating Scrollkeeper" |
|
|
73 | scrollkeeper-update -p /var/lib/scrollkeeper |
|
|
74 | fi |
| 49 | } |
75 | } |
| 50 | |
76 | |
|
|
77 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst |
| 51 | |
78 | |
| 52 | |
79 | |
| 53 | |
|
|