| 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.21 2003/02/18 09:00:45 carpaski 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 | ECLASS=base |
10 | inherit eutils |
| 11 | INHERITED="$INHERITED $ECLASS" |
11 | |
| 12 | S=${WORKDIR}/${P} |
12 | S=${WORKDIR}/${P} |
| 13 | [ -z "$DESCRIPTION" ] && DESCRIPTION="Based on the $ECLASS eclass" |
13 | DESCRIPTION="Based on the $ECLASS eclass" |
| 14 | |
14 | |
| 15 | base_src_unpack() { |
15 | base_src_unpack() { |
| 16 | |
16 | |
| 17 | debug-print-function $FUNCNAME $* |
17 | debug-print-function $FUNCNAME $* |
| 18 | [ -z "$1" ] && base_src_unpack all |
18 | [ -z "$1" ] && base_src_unpack all |
| … | |
… | |
| 27 | unpack ${A} |
27 | unpack ${A} |
| 28 | ;; |
28 | ;; |
| 29 | patch) |
29 | patch) |
| 30 | debug-print-section patch |
30 | debug-print-section patch |
| 31 | cd ${S} |
31 | cd ${S} |
| 32 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
32 | epatch ${FILESDIR}/${P}-gentoo.diff |
| 33 | ;; |
33 | ;; |
| 34 | autopatch) |
34 | autopatch) |
| 35 | debug-print-section autopatch |
35 | debug-print-section autopatch |
| 36 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
36 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
| 37 | cd ${S} |
37 | cd ${S} |
| 38 | for x in $PATCHES; do |
38 | for x in $PATCHES $PATCHES1; do |
| 39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 40 | patch -p0 < ${x} |
40 | epatch ${x} |
| 41 | done |
41 | done |
| 42 | ;; |
42 | ;; |
| 43 | all) |
43 | all) |
| 44 | debug-print-section all |
44 | debug-print-section all |
| 45 | base_src_unpack unpack autopatch |
45 | base_src_unpack unpack autopatch |
| 46 | ;; |
46 | ;; |
| 47 | esac |
47 | esac |
| 48 | |
48 | |
| 49 | shift |
49 | shift |
| 50 | done |
50 | done |
| 51 | |
51 | |
| 52 | } |
52 | } |
| 53 | |
53 | |
| 54 | base_src_compile() { |
54 | base_src_compile() { |
| 55 | |
55 | |
| 56 | debug-print-function $FUNCNAME $* |
56 | debug-print-function $FUNCNAME $* |
| … | |
… | |
| 72 | all) |
72 | all) |
| 73 | debug-print-section all |
73 | debug-print-section all |
| 74 | base_src_compile configure make |
74 | base_src_compile configure make |
| 75 | ;; |
75 | ;; |
| 76 | esac |
76 | esac |
| 77 | |
77 | |
| 78 | shift |
78 | shift |
| 79 | done |
79 | done |
| 80 | |
80 | |
| 81 | } |
81 | } |
| 82 | |
82 | |
| 83 | base_src_install() { |
83 | base_src_install() { |
| 84 | |
84 | |
| 85 | debug-print-function $FUNCNAME $* |
85 | debug-print-function $FUNCNAME $* |