| 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.1 2002/06/01 02:55:47 blocke Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.41 2004/05/11 13:02:05 vapier Exp $ |
|
|
4 | # |
|
|
5 | # Authors: |
|
|
6 | # Bruce A. Locke <blocke@shivan.org> |
|
|
7 | # Spidler <spider@gentoo.org> |
|
|
8 | |
|
|
9 | inherit libtool gnome.org |
|
|
10 | use debug && inherit debug |
| 4 | |
11 | |
| 5 | # Gnome 2 ECLASS |
12 | # Gnome 2 ECLASS |
| 6 | ECLASS="gnome2" |
13 | ECLASS="gnome2" |
|
|
14 | INHERITED="$INHERITED $ECLASS" |
| 7 | |
15 | |
| 8 | # DEBUG for Beta |
16 | G2CONF="" # extra configure opts passed to econf |
| 9 | # Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ |
17 | ELTCONF="" # extra options passed to elibtoolize |
| 10 | DEBUG="yes" |
18 | SCROLLKEEPER_UPDATE="1" # whether to run scrollkeeper for this package |
| 11 | RESTRICT="nostrip" |
19 | USE_DESTDIR="" # use make DESTDIR=${D} install rather than einstall |
| 12 | # force debug information |
|
|
| 13 | CFLAGS="${CFLAGS} -g" |
|
|
| 14 | CXXFLAGS="${CXXFLAGS} -g" |
|
|
| 15 | |
20 | |
|
|
21 | use debug && G2CONF="${G2CONF} --enable-debug=yes" |
|
|
22 | |
|
|
23 | DEPEND="${DEPEND} >=sys-apps/sed-4" |
|
|
24 | |
|
|
25 | gnome2_src_configure() { |
|
|
26 | elibtoolize ${ELTCONF} |
|
|
27 | # doc keyword for gtk-doc |
|
|
28 | use doc \ |
|
|
29 | && G2CONF="${G2CONF} --enable-gtk-doc" \ |
|
|
30 | || G2CONF="${G2CONF} --disable-gtk-doc" |
|
|
31 | |
|
|
32 | econf "$@" ${G2CONF} || die "./configure failure" |
|
|
33 | |
|
|
34 | } |
| 16 | |
35 | |
| 17 | gnome2_src_compile() { |
36 | gnome2_src_compile() { |
| 18 | |
37 | |
| 19 | libtoolize --copy --force |
38 | gnome2_src_configure "$@" |
| 20 | |
|
|
| 21 | econf "${1} --enable-debug=yes" || die "./configure failure" |
|
|
| 22 | emake || die "compile failure" |
39 | emake || die "compile failure" |
| 23 | |
40 | |
| 24 | } |
41 | } |
| 25 | |
42 | |
| 26 | gnome2_src_install() { |
43 | gnome2_src_install() { |
| 27 | |
44 | |
| 28 | einstall ${1} |
45 | # if this is not present, scrollkeeper-update may segfault and |
|
|
46 | # create bogus directories in /var/lib/ |
|
|
47 | dodir /var/lib/scrollkeeper |
|
|
48 | |
|
|
49 | # we must delay gconf schema installation due to sandbox |
|
|
50 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
|
|
51 | |
|
|
52 | if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
|
|
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 |
|
|
59 | |
|
|
60 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 29 | |
61 | |
| 30 | # manual document installation |
62 | # manual document installation |
| 31 | if [ -n "${DOC}" && use doc ] |
63 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
|
|
64 | |
|
|
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" |
|
|
72 | fi |
|
|
73 | |
|
|
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 ] |
| 32 | then |
81 | then |
| 33 | for x in $DOC; do dodoc $x; done |
82 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
83 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
|
|
84 | einfo "Installing GNOME 2 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} 1>/dev/null |
|
|
88 | done |
|
|
89 | fi |
|
|
90 | } |
|
|
91 | |
|
|
92 | gnome2_gconf_uninstall() { |
|
|
93 | |
|
|
94 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
|
|
95 | then |
|
|
96 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
97 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
|
|
98 | einfo "Uninstalling GNOME 2 GConf schemas" |
|
|
99 | cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do |
|
|
100 | # echo "DEBUG::gconf install ${F}" |
|
|
101 | ${ROOT}/usr/bin/gconftool-2 --makefile-uninstall-rule ${F} 1>/dev/null |
|
|
102 | done |
| 34 | fi |
103 | fi |
| 35 | |
104 | |
| 36 | } |
105 | } |
| 37 | |
106 | |
| 38 | gnome2_pkg_postinst() { |
107 | gnome2_omf_fix() { |
|
|
108 | # workaround/patch against omf.make or omf-install/Makefile.in |
|
|
109 | # in order to remove redundant scrollkeeper-updates. |
|
|
110 | # - <liquidx@gentoo.org> |
|
|
111 | |
|
|
112 | local omf_makefiles |
| 39 | |
113 | |
| 40 | # manual schema installation |
114 | omf_makefiles="$@" |
| 41 | if [ -n "${SCHEMA}" ] |
115 | |
|
|
116 | [ -f ${S}/omf-install/Makefile.in ] \ |
|
|
117 | && omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
|
|
118 | |
|
|
119 | # FIXME: does this really work? because omf.make only gets included |
|
|
120 | # when autoconf/automake is run. You should directly patch |
|
|
121 | # the Makefile.in's |
|
|
122 | |
|
|
123 | [ -f ${S}/omf.make ] \ |
|
|
124 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
|
|
125 | |
|
|
126 | for omf in ${omf_makefiles}; do |
|
|
127 | omfbase=$(basename ${omf}) |
|
|
128 | einfo "Fixing OMF Makefile: ${omf#${S}/}" |
|
|
129 | sed -i -e 's:-scrollkeeper-update.*::' ${omf} |
|
|
130 | done |
|
|
131 | } |
|
|
132 | |
|
|
133 | gnome2_scrollkeeper_update() { |
|
|
134 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
| 42 | then |
135 | then |
| 43 | for x in $SCHEMA |
136 | echo ">>> Updating Scrollkeeper" |
| 44 | do |
137 | scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
| 45 | /usr/bin/gconftool-2 --makefile-install-rule \ |
|
|
| 46 | /etc/gconf/schemas/${SCHEMA} |
|
|
| 47 | done |
|
|
| 48 | fi |
138 | fi |
| 49 | } |
139 | } |
| 50 | |
140 | |
|
|
141 | gnome2_pkg_postinst() { |
|
|
142 | gnome2_gconf_install |
|
|
143 | gnome2_scrollkeeper_update |
|
|
144 | } |
|
|
145 | |
|
|
146 | #gnome2_pkg_prerm() { |
|
|
147 | |
|
|
148 | # gnome2_gconf_uninstall |
|
|
149 | |
|
|
150 | #} |
|
|
151 | |
|
|
152 | gnome2_pkg_postrm() { |
|
|
153 | gnome2_scrollkeeper_update |
|
|
154 | } |
| 51 | |
155 | |
| 52 | |
156 | |
|
|
157 | #EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_prerm pkg_postrm |
|
|
158 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
| 53 | |
159 | |
|
|
160 | |