1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
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.23 2003/04/08 17:48:12 danarmak 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 |
10 | ECLASS=base |
9 | INHERITED="$INHERITED $ECLASS" |
11 | INHERITED="$INHERITED $ECLASS" |
… | |
… | |
29 | cd ${S} |
31 | cd ${S} |
30 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
32 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
31 | ;; |
33 | ;; |
32 | autopatch) |
34 | autopatch) |
33 | debug-print-section autopatch |
35 | debug-print-section autopatch |
34 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
36 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
35 | cd ${S} |
37 | cd ${S} |
36 | for x in $PATCHES; do |
38 | for x in $PATCHES; do |
37 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
38 | patch -p0 < ${x} |
40 | patch -p0 < ${x} |
|
|
41 | done |
|
|
42 | for x in $PATCHES1; do |
|
|
43 | debug-print "$FUNCNAME: autopatch: patching -p1 from ${x}" |
|
|
44 | patch -p1 < ${x} |
39 | done |
45 | done |
40 | ;; |
46 | ;; |
41 | all) |
47 | all) |
42 | debug-print-section all |
48 | debug-print-section all |
43 | base_src_unpack unpack autopatch |
49 | base_src_unpack unpack autopatch |