| 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/subversion.eclass,v 1.14 2004/06/25 00:39:48 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/subversion.eclass,v 1.15 2004/07/03 12:06:20 hattya Exp $ |
| 4 | |
4 | |
| 5 | ## --------------------------------------------------------------------------- # |
5 | ## --------------------------------------------------------------------------- # |
| 6 | # Author: Akinori Hattori <hattya@gentoo.org> |
6 | # Author: Akinori Hattori <hattya@gentoo.org> |
| 7 | # |
7 | # |
| 8 | # The subversion eclass is written to fetch the software sources from |
8 | # The subversion eclass is written to fetch the software sources from |
| … | |
… | |
| 191 | subversion_bootstrap() { |
191 | subversion_bootstrap() { |
| 192 | |
192 | |
| 193 | cd "${S}" |
193 | cd "${S}" |
| 194 | |
194 | |
| 195 | if [ "${ESVN_PATCHES}" ]; then |
195 | if [ "${ESVN_PATCHES}" ]; then |
| 196 | einfo "apply paches -->" |
196 | einfo "apply patches -->" |
| 197 | |
197 | |
| 198 | for PATCH in ${ESVN_PATCHES}; do |
198 | for PATCH in ${ESVN_PATCHES}; do |
| 199 | if [ -f "${PATCH}" ]; then |
199 | if [ -f "${PATCH}" ]; then |
| 200 | epatch ${PATCH} |
200 | epatch ${PATCH} |
| 201 | |
201 | |