| 1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
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/base.eclass,v 1.26 2005/07/06 20:23:20 agriffis Exp $ |
|
|
4 | # |
| 3 | # Author Dan Armak <danarmak@gentoo.org> |
5 | # Author Dan Armak <danarmak@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.19 2003/01/30 17:25:00 danarmak Exp $ |
6 | # |
| 5 | # The base eclass defines some default functions and variables. Nearly everything |
7 | # The base eclass defines some default functions and variables. Nearly everything |
| 6 | # else inherits from here. |
8 | # else inherits from here. |
| 7 | |
9 | |
| 8 | ECLASS=base |
|
|
| 9 | INHERITED="$INHERITED $ECLASS" |
|
|
| 10 | S=${WORKDIR}/${P} |
10 | S=${WORKDIR}/${P} |
| 11 | DESCRIPTION="Based on the $ECLASS eclass" |
11 | DESCRIPTION="Based on the $ECLASS eclass" |
| 12 | |
12 | |
| 13 | base_src_unpack() { |
13 | base_src_unpack() { |
| 14 | |
14 | |
| … | |
… | |
| 29 | cd ${S} |
29 | cd ${S} |
| 30 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
30 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
| 31 | ;; |
31 | ;; |
| 32 | autopatch) |
32 | autopatch) |
| 33 | debug-print-section autopatch |
33 | debug-print-section autopatch |
| 34 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
34 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
| 35 | cd ${S} |
35 | cd ${S} |
| 36 | for x in $PATCHES; do |
36 | for x in $PATCHES; do |
| 37 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
37 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 38 | patch -p0 < ${x} |
38 | patch -p0 < ${x} |
|
|
39 | done |
|
|
40 | for x in $PATCHES1; do |
|
|
41 | debug-print "$FUNCNAME: autopatch: patching -p1 from ${x}" |
|
|
42 | patch -p1 < ${x} |
| 39 | done |
43 | done |
| 40 | ;; |
44 | ;; |
| 41 | all) |
45 | all) |
| 42 | debug-print-section all |
46 | debug-print-section all |
| 43 | base_src_unpack unpack autopatch |
47 | base_src_unpack unpack autopatch |