| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 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.33 2003/05/04 18:58:55 liquidx Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.51 2005/07/06 20:23:20 agriffis Exp $ |
| 4 | # |
4 | # |
| 5 | # Authors: |
5 | # Authors: |
| 6 | # Bruce A. Locke <blocke@shivan.org> |
6 | # Bruce A. Locke <blocke@shivan.org> |
| 7 | # Spidler <spidler@gentoo.org> |
7 | # Spidler <spider@gentoo.org> |
| 8 | |
8 | |
| 9 | inherit libtool gnome.org |
9 | inherit libtool gnome.org debug fdo-mime |
| 10 | |
|
|
| 11 | # accept both $DEBUG and USE="debug" |
|
|
| 12 | [ -n "$DEBUG" -o -n "`use debug`" ] && inherit debug |
|
|
| 13 | |
10 | |
| 14 | # Gnome 2 ECLASS |
11 | # Gnome 2 ECLASS |
| 15 | ECLASS="gnome2" |
|
|
| 16 | INHERITED="$INHERITED $ECLASS" |
|
|
| 17 | |
12 | |
| 18 | G2CONF="" # extra configure opts passed to econf |
13 | G2CONF="" # extra configure opts passed to econf |
| 19 | ELTCONF="" # extra options passed to elibtoolize |
14 | ELTCONF="" # extra options passed to elibtoolize |
| 20 | SCROLLKEEPER_UPDATE="1" # whether to run scrollkeeper for this package |
15 | SCROLLKEEPER_UPDATE="1" # whether to run scrollkeeper for this package |
| 21 | USE_DESTDIR="" # use make DESTDIR=${D} install rather than einstall |
16 | USE_DESTDIR="" # use make DESTDIR=${D} install rather than einstall |
|
|
17 | IUSE="debug" |
|
|
18 | use debug && G2CONF="${G2CONF} --enable-debug=yes" |
| 22 | |
19 | |
| 23 | [ -n "$DEBUG" -o -n "`use debug`" ] && G2CONF="${G2CONF} --enable-debug=yes" |
20 | DEPEND="${DEPEND} >=sys-apps/sed-4" |
| 24 | |
21 | |
| 25 | gnome2_src_configure() { |
22 | gnome2_src_configure() { |
|
|
23 | |
|
|
24 | # [ -n "${ELTCONF}" ] && elibtoolize ${ELTCONF} |
| 26 | elibtoolize ${ELTCONF} |
25 | elibtoolize ${ELTCONF} |
|
|
26 | |
| 27 | # doc keyword for gtk-doc |
27 | # doc keyword for gtk-doc |
| 28 | use doc \ |
|
|
| 29 | && G2CONF="${G2CONF} --enable-gtk-doc" \ |
28 | G2CONF="${G2CONF} $(use_enable doc gtk-doc)" |
| 30 | || G2CONF="${G2CONF} --disable-gtk-doc" |
|
|
| 31 | |
29 | |
| 32 | econf ${@} ${G2CONF} || die "./configure failure" |
30 | econf "$@" ${G2CONF} || die "./configure failure" |
| 33 | |
31 | |
| 34 | } |
32 | } |
| 35 | |
33 | |
| 36 | gnome2_src_compile() { |
34 | gnome2_src_compile() { |
| 37 | |
35 | |
| 38 | gnome2_src_configure ${@} |
36 | gnome2_src_configure "$@" |
| 39 | emake || die "compile failure" |
37 | emake || die "compile failure" |
| 40 | |
38 | |
| 41 | } |
39 | } |
| 42 | |
40 | |
| 43 | gnome2_src_install() { |
41 | gnome2_src_install() { |
| … | |
… | |
| 48 | |
46 | |
| 49 | # we must delay gconf schema installation due to sandbox |
47 | # we must delay gconf schema installation due to sandbox |
| 50 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
48 | export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" |
| 51 | |
49 | |
| 52 | if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
50 | if [ -z "${USE_DESTDIR}" -o "${USE_DESTDIR}" = "0" ]; then |
| 53 | einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ " ${@} |
51 | einstall "scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/" "$@" |
| 54 | else |
52 | else |
| 55 | make DESTDIR=${D} \ |
53 | make DESTDIR=${D} \ |
| 56 | scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper \ |
54 | "$@" install |
| 57 | ${@} install |
|
|
| 58 | fi |
55 | fi |
| 59 | |
56 | |
| 60 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
57 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 61 | |
58 | |
| 62 | # manual document installation |
59 | # manual document installation |
| … | |
… | |
| 71 | export SCROLLKEEPER_UPDATE="0" |
68 | export SCROLLKEEPER_UPDATE="0" |
| 72 | fi |
69 | fi |
| 73 | |
70 | |
| 74 | # regenerate these in pkg_postinst() |
71 | # regenerate these in pkg_postinst() |
| 75 | rm -rf ${D}/var/lib/scrollkeeper |
72 | rm -rf ${D}/var/lib/scrollkeeper |
|
|
73 | # make sure this one doesn't get in the portage db |
|
|
74 | rm -fr ${D}/usr/share/applications/mimeinfo.cache |
|
|
75 | |
| 76 | } |
76 | } |
| 77 | |
77 | |
| 78 | |
78 | |
| 79 | gnome2_gconf_install() { |
79 | gnome2_gconf_install() { |
|
|
80 | |
| 80 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
81 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
| 81 | then |
82 | then |
| 82 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
83 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
| 83 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
84 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
| 84 | einfo "installing gnome2 gconf schemas" |
85 | 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 | grep "obj /etc/gconf/schemas" ${ROOT}/var/db/pkg/*/${PF}/CONTENTS | sed 's:obj \([^ ]*\) .*:\1:' | while read F; do |
|
|
87 | if [ -e "${F}" ]; then |
| 86 | echo "DEBUG::gconf install ${F}" |
88 | # echo "DEBUG::gconf install ${F}" |
| 87 | ${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F} |
89 | ${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F} 1>/dev/null |
|
|
90 | fi |
| 88 | done |
91 | done |
| 89 | fi |
92 | fi |
|
|
93 | |
|
|
94 | } |
|
|
95 | |
|
|
96 | gnome2_gconf_uninstall() { |
|
|
97 | |
|
|
98 | if [ -x ${ROOT}/usr/bin/gconftool-2 ] |
|
|
99 | then |
|
|
100 | unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL |
|
|
101 | export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` |
|
|
102 | einfo "Uninstalling GNOME 2 GConf schemas" |
|
|
103 | cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do |
|
|
104 | # echo "DEBUG::gconf install ${F}" |
|
|
105 | ${ROOT}/usr/bin/gconftool-2 --makefile-uninstall-rule ${F} 1>/dev/null |
|
|
106 | done |
|
|
107 | fi |
|
|
108 | |
| 90 | } |
109 | } |
| 91 | |
110 | |
| 92 | gnome2_omf_fix() { |
111 | gnome2_omf_fix() { |
|
|
112 | |
| 93 | # workaround/patch against omf.make or omf-install/Makefile.in |
113 | # workaround/patch against omf.make or omf-install/Makefile.in |
| 94 | # in order to remove redundant scrollkeeper-updates. |
114 | # in order to remove redundant scrollkeeper-updates. |
| 95 | # - <liquidx@gentoo.org> |
115 | # - <liquidx@gentoo.org> |
| 96 | |
116 | |
| 97 | local omf_makefiles |
117 | local omf_makefiles |
| 98 | |
118 | |
| 99 | omf_makefiles="$@" |
119 | omf_makefiles="$@" |
| 100 | |
120 | |
| 101 | [ -f ${S}/omf-install/Makefile.in ] \ |
121 | [ -f ${S}/omf-install/Makefile.in ] \ |
| 102 | && omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
122 | && omf_makefiles="${omf_makefiles} ${S}/omf-install/Makefile.in" |
|
|
123 | |
|
|
124 | # FIXME: does this really work? because omf.make only gets included |
|
|
125 | # when autoconf/automake is run. You should directly patch |
|
|
126 | # the Makefile.in's |
|
|
127 | |
| 103 | [ -f ${S}/omf.make ] \ |
128 | [ -f ${S}/omf.make ] \ |
| 104 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
129 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
| 105 | |
130 | |
| 106 | for omf in ${omf_makefiles}; do |
131 | for omf in ${omf_makefiles}; do |
| 107 | omfbase=$(basename ${omf}) |
132 | omfbase=$(basename ${omf}) |
| 108 | einfo "Fixing OMF Makefile: ${omfbase}" |
133 | einfo "Fixing OMF Makefile: ${omf#${S}/}" |
| 109 | sed -i -e 's:\(-scrollkeeper-update -p $(localstatedir)/scrollkeeper\)\([ \t\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} |
134 | sed -i -e 's:-scrollkeeper-update.*::' ${omf} |
| 110 | sed -i -e 's:\(-scrollkeeper-update -p $(scrollkeeper_localstate_dir)\)\([ \t\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} |
|
|
| 111 | done |
135 | done |
|
|
136 | |
| 112 | } |
137 | } |
| 113 | |
138 | |
| 114 | gnome2_scrollkeeper_update() { |
139 | gnome2_scrollkeeper_update() { |
|
|
140 | |
| 115 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
141 | if [ -x ${ROOT}/usr/bin/scrollkeeper-update ] && [ "${SCROLLKEEPER_UPDATE}" = "1" ] |
| 116 | then |
142 | then |
| 117 | echo ">>> Updating Scrollkeeper" |
143 | echo ">>> Updating Scrollkeeper" |
| 118 | scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
144 | scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper |
| 119 | fi |
145 | fi |
|
|
146 | |
| 120 | } |
147 | } |
| 121 | |
148 | |
| 122 | gnome2_pkg_postinst() { |
149 | gnome2_pkg_postinst() { |
|
|
150 | |
| 123 | gnome2_gconf_install |
151 | gnome2_gconf_install |
| 124 | gnome2_scrollkeeper_update |
152 | gnome2_scrollkeeper_update |
|
|
153 | fdo-mime_desktop_database_update |
|
|
154 | fdo-mime_mime_database_update |
|
|
155 | |
| 125 | } |
156 | } |
| 126 | |
157 | |
|
|
158 | #gnome2_pkg_prerm() { |
|
|
159 | |
|
|
160 | # gnome2_gconf_uninstall |
|
|
161 | |
|
|
162 | #} |
|
|
163 | |
| 127 | gnome2_pkg_postrm() { |
164 | gnome2_pkg_postrm() { |
|
|
165 | |
| 128 | gnome2_scrollkeeper_update |
166 | gnome2_scrollkeeper_update |
|
|
167 | fdo-mime_desktop_database_update |
|
|
168 | fdo-mime_mime_database_update |
|
|
169 | |
| 129 | } |
170 | } |
| 130 | |
171 | |
| 131 | |
172 | |
|
|
173 | #EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_prerm pkg_postrm |
| 132 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
174 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
| 133 | |
175 | |
| 134 | |
176 | |