| 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.22 2003/02/28 09:15:04 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.31 2007/09/12 20:05:33 betelgeuse Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Dan Armak <danarmak@gentoo.org> |
5 | # Author Dan Armak <danarmak@gentoo.org> (nowadays retired) |
| 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} |
|
|
| 13 | DESCRIPTION="Based on the $ECLASS eclass" |
12 | DESCRIPTION="Based on the $ECLASS eclass" |
| 14 | |
13 | |
| 15 | base_src_unpack() { |
14 | base_src_unpack() { |
| 16 | |
15 | |
| 17 | debug-print-function $FUNCNAME $* |
16 | debug-print-function $FUNCNAME $* |
| … | |
… | |
| 27 | unpack ${A} |
26 | unpack ${A} |
| 28 | ;; |
27 | ;; |
| 29 | patch) |
28 | patch) |
| 30 | debug-print-section patch |
29 | debug-print-section patch |
| 31 | cd ${S} |
30 | cd ${S} |
| 32 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
31 | epatch ${FILESDIR}/${P}-gentoo.diff |
| 33 | ;; |
32 | ;; |
| 34 | autopatch) |
33 | autopatch) |
| 35 | debug-print-section autopatch |
34 | debug-print-section autopatch |
| 36 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
35 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
| 37 | cd ${S} |
36 | cd ${S} |
| 38 | for x in $PATCHES; do |
37 | for x in $PATCHES $PATCHES1; do |
| 39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
38 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 40 | patch -p0 < ${x} |
39 | epatch ${x} |
| 41 | done |
40 | done |
| 42 | ;; |
41 | ;; |
| 43 | all) |
42 | all) |
| 44 | debug-print-section all |
43 | debug-print-section all |
| 45 | base_src_unpack unpack autopatch |
44 | base_src_unpack unpack autopatch |
| 46 | ;; |
45 | ;; |
| 47 | esac |
46 | esac |
| 48 | |
47 | |
| 49 | shift |
48 | shift |
| 50 | done |
49 | done |
| 51 | |
50 | |
| 52 | } |
51 | } |
| 53 | |
52 | |
| 54 | base_src_compile() { |
53 | base_src_compile() { |
| 55 | |
54 | |
| 56 | debug-print-function $FUNCNAME $* |
55 | debug-print-function $FUNCNAME $* |
| … | |
… | |
| 60 | |
59 | |
| 61 | while [ "$1" ]; do |
60 | while [ "$1" ]; do |
| 62 | |
61 | |
| 63 | case $1 in |
62 | case $1 in |
| 64 | configure) |
63 | configure) |
| 65 | debug-print-section configure |
64 | debug-print-section configure |
| 66 | econf || die "died running econf, $FUNCNAME:configure" |
65 | econf || die "died running econf, $FUNCNAME:configure" |
| 67 | ;; |
66 | ;; |
| 68 | make) |
67 | make) |
| 69 | debug-print-section make |
68 | debug-print-section make |
| 70 | emake || die "died running emake, $FUNCNAME:make" |
69 | emake || die "died running emake, $FUNCNAME:make" |
| 71 | ;; |
70 | ;; |
| 72 | all) |
71 | all) |
| 73 | debug-print-section all |
72 | debug-print-section all |
| 74 | base_src_compile configure make |
73 | base_src_compile configure make |
| 75 | ;; |
74 | ;; |
| 76 | esac |
75 | esac |
| 77 | |
76 | |
| 78 | shift |
77 | shift |
| 79 | done |
78 | done |
| 80 | |
79 | |
| 81 | } |
80 | } |
| 82 | |
81 | |
| 83 | base_src_install() { |
82 | base_src_install() { |
| 84 | |
83 | |
| 85 | debug-print-function $FUNCNAME $* |
84 | debug-print-function $FUNCNAME $* |