| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2006 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/git.eclass,v 1.4 2007/03/14 15:48:12 ferdy Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.5 2007/04/10 11:42:29 vapier Exp $ |
| 4 | |
4 | |
| 5 | ## --------------------------------------------------------------------------- # |
5 | ## --------------------------------------------------------------------------- # |
| 6 | # subversion.eclass author: Akinori Hattori <hattya@gentoo.org> |
6 | # subversion.eclass author: Akinori Hattori <hattya@gentoo.org> |
| 7 | # modified for git by Donnie Berkholz <spyderous@gentoo.org> |
7 | # modified for git by Donnie Berkholz <spyderous@gentoo.org> |
| 8 | # improved by Fernando J. Pereda <ferdy@gentoo.org> |
8 | # improved by Fernando J. Pereda <ferdy@gentoo.org> |
| … | |
… | |
| 228 | einfo " committish: ${EGIT_TREE}" |
228 | einfo " committish: ${EGIT_TREE}" |
| 229 | |
229 | |
| 230 | # export to the ${WORKDIR} |
230 | # export to the ${WORKDIR} |
| 231 | mkdir -p "${S}" |
231 | mkdir -p "${S}" |
| 232 | git tar-tree ${EGIT_TREE} | ( cd "${S}" ; tar xf - ) |
232 | git tar-tree ${EGIT_TREE} | ( cd "${S}" ; tar xf - ) |
| 233 | echo |
233 | |
|
|
234 | echo ">>> Unpacked to ${S}" |
| 234 | |
235 | |
| 235 | } |
236 | } |
| 236 | |
237 | |
| 237 | |
238 | |
| 238 | ## -- git_bootstrap() ------------------------------------------------ # |
239 | ## -- git_bootstrap() ------------------------------------------------ # |