| 1 | # Copyright 1999-2012 Gentoo Foundation |
1 | # Copyright 1999-2013 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/cvs.eclass,v 1.77 2012/09/09 07:03:28 ulm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.78 2013/01/22 07:02:06 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: cvs.eclass |
5 | # @ECLASS: cvs.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # vapier@gentoo.org (and anyone who wants to help) |
7 | # vapier@gentoo.org (and anyone who wants to help) |
| 8 | # @BLURB: This eclass provides generic cvs fetching functions |
8 | # @BLURB: This eclass provides generic cvs fetching functions |
| … | |
… | |
| 10 | # This eclass provides the generic cvs fetching functions. To use this from an |
10 | # This eclass provides the generic cvs fetching functions. To use this from an |
| 11 | # ebuild, set the ECLASS VARIABLES as specified below in your ebuild before |
11 | # ebuild, set the ECLASS VARIABLES as specified below in your ebuild before |
| 12 | # inheriting. Then either leave the default src_unpack or extend over |
12 | # inheriting. Then either leave the default src_unpack or extend over |
| 13 | # cvs_src_unpack. If you find that you need to call the cvs_* functions |
13 | # cvs_src_unpack. If you find that you need to call the cvs_* functions |
| 14 | # directly, I'd be interested to hear about it. |
14 | # directly, I'd be interested to hear about it. |
|
|
15 | |
|
|
16 | if [[ ${___ECLASS_ONCE_CVS} != "recur -_+^+_- spank" ]] ; then |
|
|
17 | ___ECLASS_ONCE_CVS="recur -_+^+_- spank" |
| 15 | |
18 | |
| 16 | inherit eutils |
19 | inherit eutils |
| 17 | |
20 | |
| 18 | # TODO: |
21 | # TODO: |
| 19 | |
22 | |
| … | |
… | |
| 576 | |
579 | |
| 577 | einfo "CVS module ${ECVS_MODULE} is now in ${WORKDIR}" |
580 | einfo "CVS module ${ECVS_MODULE} is now in ${WORKDIR}" |
| 578 | } |
581 | } |
| 579 | |
582 | |
| 580 | EXPORT_FUNCTIONS src_unpack |
583 | EXPORT_FUNCTIONS src_unpack |
|
|
584 | |
|
|
585 | fi |