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