| 1 | # Copyright 1999-2003 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.23 2003/04/08 17:48:12 danarmak Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.28 2005/09/07 10:40:28 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 | |
9 | |
| 10 | ECLASS=base |
|
|
| 11 | INHERITED="$INHERITED $ECLASS" |
|
|
| 12 | S=${WORKDIR}/${P} |
10 | S=${WORKDIR}/${P} |
| 13 | DESCRIPTION="Based on the $ECLASS eclass" |
11 | DESCRIPTION="Based on the $ECLASS eclass" |
| 14 | |
12 | |
| 15 | base_src_unpack() { |
13 | base_src_unpack() { |
| 16 | |
14 | |
| … | |
… | |
| 27 | unpack ${A} |
25 | unpack ${A} |
| 28 | ;; |
26 | ;; |
| 29 | patch) |
27 | patch) |
| 30 | debug-print-section patch |
28 | debug-print-section patch |
| 31 | cd ${S} |
29 | cd ${S} |
| 32 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
30 | epatch ${FILESDIR}/${P}-gentoo.diff |
| 33 | ;; |
31 | ;; |
| 34 | autopatch) |
32 | autopatch) |
| 35 | debug-print-section autopatch |
33 | debug-print-section autopatch |
| 36 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
34 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
| 37 | cd ${S} |
35 | cd ${S} |
| 38 | for x in $PATCHES; do |
36 | for x in $PATCHES $PATCHES1; do |
| 39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
37 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 40 | patch -p0 < ${x} |
38 | epatch ${x} |
| 41 | done |
|
|
| 42 | for x in $PATCHES1; do |
|
|
| 43 | debug-print "$FUNCNAME: autopatch: patching -p1 from ${x}" |
|
|
| 44 | patch -p1 < ${x} |
|
|
| 45 | done |
39 | done |
| 46 | ;; |
40 | ;; |
| 47 | all) |
41 | all) |
| 48 | debug-print-section all |
42 | debug-print-section all |
| 49 | base_src_unpack unpack autopatch |
43 | base_src_unpack unpack autopatch |
| 50 | ;; |
44 | ;; |
| 51 | esac |
45 | esac |
| 52 | |
46 | |
| 53 | shift |
47 | shift |
| 54 | done |
48 | done |
| 55 | |
49 | |
| 56 | } |
50 | } |
| 57 | |
51 | |
| 58 | base_src_compile() { |
52 | base_src_compile() { |
| 59 | |
53 | |
| 60 | debug-print-function $FUNCNAME $* |
54 | debug-print-function $FUNCNAME $* |
| … | |
… | |
| 76 | all) |
70 | all) |
| 77 | debug-print-section all |
71 | debug-print-section all |
| 78 | base_src_compile configure make |
72 | base_src_compile configure make |
| 79 | ;; |
73 | ;; |
| 80 | esac |
74 | esac |
| 81 | |
75 | |
| 82 | shift |
76 | shift |
| 83 | done |
77 | done |
| 84 | |
78 | |
| 85 | } |
79 | } |
| 86 | |
80 | |
| 87 | base_src_install() { |
81 | base_src_install() { |
| 88 | |
82 | |
| 89 | debug-print-function $FUNCNAME $* |
83 | debug-print-function $FUNCNAME $* |