| 1 | # Copyright 1999-2004 Gentoo Foundation |
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.27 2005/07/11 15:08:06 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.29 2005/09/08 09:33:27 flameeyes Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Dan Armak <danarmak@gentoo.org> |
5 | # Author Dan Armak <danarmak@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # The base eclass defines some default functions and variables. Nearly everything |
7 | # The base eclass defines some default functions and variables. Nearly everything |
| 8 | # else inherits from here. |
8 | # else inherits from here. |
|
|
9 | |
|
|
10 | inherit eutils |
| 9 | |
11 | |
| 10 | S=${WORKDIR}/${P} |
12 | S=${WORKDIR}/${P} |
| 11 | DESCRIPTION="Based on the $ECLASS eclass" |
13 | DESCRIPTION="Based on the $ECLASS eclass" |
| 12 | |
14 | |
| 13 | base_src_unpack() { |
15 | base_src_unpack() { |
| … | |
… | |
| 25 | unpack ${A} |
27 | unpack ${A} |
| 26 | ;; |
28 | ;; |
| 27 | patch) |
29 | patch) |
| 28 | debug-print-section patch |
30 | debug-print-section patch |
| 29 | cd ${S} |
31 | cd ${S} |
| 30 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
32 | epatch ${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, PATCHES1=$PATCHES1" |
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 $PATCHES1; do |
| 37 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 38 | patch -p0 < ${x} |
40 | epatch ${x} |
| 39 | done |
|
|
| 40 | for x in $PATCHES1; do |
|
|
| 41 | debug-print "$FUNCNAME: autopatch: patching -p1 from ${x}" |
|
|
| 42 | patch -p1 < ${x} |
|
|
| 43 | done |
41 | done |
| 44 | ;; |
42 | ;; |
| 45 | all) |
43 | all) |
| 46 | debug-print-section all |
44 | debug-print-section all |
| 47 | base_src_unpack unpack autopatch |
45 | base_src_unpack unpack autopatch |