| 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.29 2005/09/08 09:33:27 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.30 2005/12/19 14:02:12 george 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. |
| … | |
… | |
| 38 | for x in $PATCHES $PATCHES1; 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 | epatch ${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 | |
| … | |
… | |
| 60 | |
60 | |
| 61 | while [ "$1" ]; do |
61 | while [ "$1" ]; do |
| 62 | |
62 | |
| 63 | case $1 in |
63 | case $1 in |
| 64 | configure) |
64 | configure) |
| 65 | debug-print-section configure |
65 | debug-print-section configure |
| 66 | econf || die "died running econf, $FUNCNAME:configure" |
66 | econf || die "died running econf, $FUNCNAME:configure" |
| 67 | ;; |
67 | ;; |
| 68 | make) |
68 | make) |
| 69 | debug-print-section make |
69 | debug-print-section make |
| 70 | emake || die "died running emake, $FUNCNAME:make" |
70 | emake || die "died running emake, $FUNCNAME:make" |
| 71 | ;; |
71 | ;; |
| 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 | |