| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 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.15 2002/06/17 23:19:20 spider Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.33 2003/05/04 18:58:55 liquidx Exp $ |
| 4 | |
4 | # |
| 5 | inherit libtool |
|
|
| 6 | inherit debug |
|
|
| 7 | # Authors: |
5 | # Authors: |
| 8 | # Bruce A. Locke <blocke@shivan.org> |
6 | # Bruce A. Locke <blocke@shivan.org> |
| 9 | # Spidler <spidler@gentoo.org> |
7 | # Spidler <spidler@gentoo.org> |
| 10 | |
8 | |
|
|
9 | inherit libtool gnome.org |
|
|
10 | |
|
|
11 | # accept both $DEBUG and USE="debug" |
|
|
12 | [ -n "$DEBUG" -o -n "`use debug`" ] && inherit debug |
|
|
13 | |
| 11 | # Gnome 2 ECLASS |
14 | # Gnome 2 ECLASS |
| 12 | ECLASS="gnome2" |
15 | ECLASS="gnome2" |
|
|
16 | INHERITED="$INHERITED $ECLASS" |
| 13 | |
17 | |
| 14 | G2CONF="--enable-debug=yes" |
18 | G2CONF="" # extra configure opts passed to econf |
| 15 | SCROLLKEEPER_UPDATE="0" |
19 | ELTCONF="" # extra options passed to elibtoolize |
|
|
20 | SCROLLKEEPER_UPDATE="1" # whether to run scrollkeeper for this package |
|
|
21 | USE_DESTDIR="" # use make DESTDIR=${D} install rather than einstall |
|
|
22 | |
|
|
23 | [ -n "$DEBUG" -o -n "`use debug`" ] && G2CONF="${G2CONF} --enable-debug=yes" |
| 16 | |
24 | |
| 17 | gnome2_src_configure() { |
25 | gnome2_src_configure() { |
| 18 | elibtoolize |
26 | elibtoolize ${ELTCONF} |
| 19 | cd ${S} |
|
|
| 20 | # doc keyword for gtk-doc |
27 | # doc keyword for gtk-doc |
| 21 | use doc && G2CONF="${G2CONF} --enable-gtk-doc" || G2CONF="${G2CONF} --disable-gtk-doc" |
28 | use doc \ |
|
|
29 | && G2CONF="${G2CONF} --enable-gtk-doc" \ |
|
|
30 | || G2CONF="${G2CONF} --disable-gtk-doc" |
| 22 | |
31 | |
| 23 | econf ${1} ${G2CONF} || die "./configure failure" |
32 | econf ${@} ${G2CONF} || die "./configure failure" |
| 24 | |
33 | |
| 25 | } |
34 | } |
| 26 | |
35 | |
| 27 | gnome2_src_compile() { |
36 | gnome2_src_compile() { |
| 28 | |
37 | |
| 29 | gnome2_src_configure ${1} |
38 | gnome2_src_configure ${@} |
| 30 | emake || die "compile failure" |
39 | emake || die "compile failure" |
| 31 | |
40 | |
| 32 | } |
41 | } |
| 33 | |
42 | |
| 34 | gnome2_src_install() { |
43 | gnome2_src_install() { |
| 35 | |
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 | |
| 36 | # we must delay gconf schema installation due to sandbox |
49 | # we must delay gconf schema installation due to sandbox |
| 37 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
50 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 38 | |
51 | |
|
|
52 | if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
| 39 | einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ ${1}" |
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 |
| 40 | |
59 | |
| 41 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
60 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 42 | |
61 | |
| 43 | # manual document installation |
62 | # manual document installation |
| 44 | if [ -n "${DOCS}" ] |
63 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
| 45 | then |
64 | |
| 46 | dodoc ${DOCS} |
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" |
| 47 | fi |
72 | fi |
| 48 | |
73 | |
| 49 | # only update scrollkeeper if this package needs it |
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 gnome2 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 | fi |
|
|
90 | } |
|
|
91 | |
|
|
92 | gnome2_omf_fix() { |
|
|
93 | # workaround/patch against omf.make or omf-install/Makefile.in |
|
|
94 | # in order to remove redundant scrollkeeper-updates. |
|
|
95 | # - <liquidx@gentoo.org> |
|
|
96 | |
|
|
97 | local omf_makefiles |
|
|
98 | |
|
|
99 | omf_makefiles="$@" |
|
|
100 | |
|
|
101 | [ -f ${S}/omf-install/Makefile.in ] \ |
|
|
102 | && omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
|
|
103 | [ -f ${S}/omf.make ] \ |
|
|
104 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
|
|
105 | |
|
|
106 | for omf in ${omf_makefiles}; do |
|
|
107 | omfbase=$(basename ${omf}) |
|
|
108 | einfo "Fixing OMF Makefile: ${omfbase}" |
|
|
109 | sed -i -e 's:\(-scrollkeeper-update -p $(localstatedir)/scrollkeeper\)\([ \t\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} |
|
|
110 | sed -i -e 's:\(-scrollkeeper-update -p $(scrollkeeper_localstate_dir)\)\([ \t\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} |
|
|
111 | done |
|
|
112 | } |
|
|
113 | |
|
|
114 | gnome2_scrollkeeper_update() { |
| 50 | [ -d ${D}/var/lib/scrollkeeper ] && SCROLLKEEPER_UPDATE="1" |
115 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
|
|
116 | then |
|
|
117 | echo ">>> Updating Scrollkeeper" |
|
|
118 | scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
|
|
119 | fi |
| 51 | } |
120 | } |
| 52 | |
121 | |
| 53 | gnome2_pkg_postinst() { |
122 | gnome2_pkg_postinst() { |
| 54 | # No more SCHEMAS variable :) |
123 | gnome2_gconf_install |
| 55 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
124 | gnome2_scrollkeeper_update |
| 56 | export GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` |
|
|
| 57 | einfo "installing gnome2 gconf schemas" |
|
|
| 58 | cat ${WORKDIR}/../build-info/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do |
|
|
| 59 | echo "DEBUG::gconf install ${F}" |
|
|
| 60 | /usr/bin/gconftool-2 --makefile-install-rule ${F} |
|
|
| 61 | done |
|
|
| 62 | |
|
|
| 63 | # schema installation |
|
|
| 64 | |
|
|
| 65 | if [ -x /usr/bin/scrollkeeper-update ] && [ SCROLLKEEPER_UPDATE = "1" ] |
|
|
| 66 | then |
|
|
| 67 | echo ">>> Updating Scrollkeeper" |
|
|
| 68 | scrollkeeper-update -p /var/lib/scrollkeeper |
|
|
| 69 | fi |
|
|
| 70 | } |
125 | } |
| 71 | |
126 | |
| 72 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst |
127 | gnome2_pkg_postrm() { |
|
|
128 | gnome2_scrollkeeper_update |
|
|
129 | } |
| 73 | |
130 | |
| 74 | |
131 | |
|
|
132 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
|
|
133 | |
|
|
134 | |