| 1 | # Copyright 1999-2004 Gentoo Foundation |
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.60 2005/08/17 16:49:32 leonardop Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.61 2005/08/23 03:51:03 leonardop Exp $ |
| 4 | # |
4 | # |
| 5 | # Authors: |
5 | # Authors: |
| 6 | # Bruce A. Locke <blocke@shivan.org> |
6 | # Bruce A. Locke <blocke@shivan.org> |
| 7 | # Spidler <spider@gentoo.org> |
7 | # Spidler <spider@gentoo.org> |
| 8 | |
8 | |
| … | |
… | |
| 156 | # the Makefile.in's |
156 | # the Makefile.in's |
| 157 | |
157 | |
| 158 | [ -f ${S}/omf.make ] \ |
158 | [ -f ${S}/omf.make ] \ |
| 159 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
159 | && omf_makefiles="${omf_makefiles} ${S}/omf.make" |
| 160 | |
160 | |
|
|
161 | ebegin "Fixing OMF Makefiles" |
|
|
162 | local retval=0 |
| 161 | for omf in ${omf_makefiles}; do |
163 | for omf in ${omf_makefiles}; do |
| 162 | omfbase=$(basename ${omf}) |
|
|
| 163 | einfo "Fixing OMF Makefile: ${omf#${S}/}" |
|
|
| 164 | sed -i -e 's:scrollkeeper-update:true:' ${omf} |
164 | sed -i -e 's:scrollkeeper-update:true:' ${omf} || retval=$? |
| 165 | done |
165 | done |
|
|
166 | eend $retval |
| 166 | |
167 | |
| 167 | } |
168 | } |
| 168 | |
169 | |
| 169 | gnome2_scrollkeeper_update() { |
170 | gnome2_scrollkeeper_update() { |
| 170 | |
171 | |