| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 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/eutils.eclass,v 1.298 2008/02/20 12:36:14 hollow Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.299 2008/02/20 17:32:02 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: eutils.eclass |
5 | # @ECLASS: eutils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # base-system@gentoo.org |
7 | # base-system@gentoo.org |
| 8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
| … | |
… | |
| 48 | done |
48 | done |
| 49 | fi |
49 | fi |
| 50 | } |
50 | } |
| 51 | |
51 | |
| 52 | # @FUNCTION: ecvs_clean |
52 | # @FUNCTION: ecvs_clean |
| 53 | # @USAGE: <dir> [more dirs ...] |
53 | # @USAGE: [list of dirs] |
| 54 | # @DESCRIPTION: |
54 | # @DESCRIPTION: |
| 55 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
55 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
| 56 | # internal CVS directories. |
56 | # internal CVS directories. Defaults to $PWD. |
| 57 | ecvs_clean() { |
57 | ecvs_clean() { |
| 58 | [[ $# -gt 0 ]] || set -- . |
58 | [[ -z $* ]] && set -- . |
| 59 | find "$@" -type d -name 'CVS' -prune -print0 | xargs -0 rm -rf |
59 | find "$@" -type d -name 'CVS' -prune -print0 | xargs -0 rm -rf |
| 60 | find "$@" -type f -name '.cvs*' -print0 | xargs -0 rm -rf |
60 | find "$@" -type f -name '.cvs*' -print0 | xargs -0 rm -rf |
| 61 | } |
61 | } |
| 62 | |
62 | |
| 63 | # @FUNCTION: esvn_clean |
63 | # @FUNCTION: esvn_clean |
| 64 | # @USAGE: <dir> [more dirs ...] |
64 | # @USAGE: [list of dirs] |
| 65 | # @DESCRIPTION: |
65 | # @DESCRIPTION: |
| 66 | # Remove .svn directories recursiveley. Useful when a source tarball contains |
66 | # Remove .svn directories recursiveley. Useful when a source tarball contains |
| 67 | # internal Subversion directories. |
67 | # internal Subversion directories. Defaults to $PWD. |
| 68 | esvn_clean() { |
68 | esvn_clean() { |
| 69 | [[ $# -gt 0 ]] || set -- . |
69 | [[ -z $* ]] && set -- . |
| 70 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
70 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
| 71 | } |
71 | } |
| 72 | |
72 | |
| 73 | # Default directory where patches are located |
73 | # Default directory where patches are located |
| 74 | EPATCH_SOURCE="${WORKDIR}/patch" |
74 | EPATCH_SOURCE="${WORKDIR}/patch" |