| 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.1.1.1 2005/11/30 09:59:24 chriswhite Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.26 2005/07/06 20:23:20 agriffis 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 |
|
|
| 11 | |
9 | |
| 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() { |
| … | |
… | |
| 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 | epatch ${FILESDIR}/${P}-gentoo.diff |
30 | patch -p0 < ${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 $PATCHES1; do |
36 | for x in $PATCHES; do |
| 39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
37 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 40 | epatch ${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} |
| 41 | done |
43 | done |
| 42 | ;; |
44 | ;; |
| 43 | all) |
45 | all) |
| 44 | debug-print-section all |
46 | debug-print-section all |
| 45 | base_src_unpack unpack autopatch |
47 | base_src_unpack unpack autopatch |
| 46 | ;; |
48 | ;; |
| 47 | esac |
49 | esac |
| 48 | |
50 | |
| 49 | shift |
51 | shift |
| 50 | done |
52 | done |
| 51 | |
53 | |
| 52 | } |
54 | } |
| 53 | |
55 | |
| 54 | base_src_compile() { |
56 | base_src_compile() { |
| 55 | |
57 | |
| 56 | debug-print-function $FUNCNAME $* |
58 | debug-print-function $FUNCNAME $* |
| … | |
… | |
| 72 | all) |
74 | all) |
| 73 | debug-print-section all |
75 | debug-print-section all |
| 74 | base_src_compile configure make |
76 | base_src_compile configure make |
| 75 | ;; |
77 | ;; |
| 76 | esac |
78 | esac |
| 77 | |
79 | |
| 78 | shift |
80 | shift |
| 79 | done |
81 | done |
| 80 | |
82 | |
| 81 | } |
83 | } |
| 82 | |
84 | |
| 83 | base_src_install() { |
85 | base_src_install() { |
| 84 | |
86 | |
| 85 | debug-print-function $FUNCNAME $* |
87 | debug-print-function $FUNCNAME $* |