| 1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
| 2 | # Distributed under the terms of the GNU General Public License, v2 or later |
2 | # Distributed under the terms of the GNU General Public License, v2 or later |
| 3 | # Author Dan Armak <danarmak@gentoo.org> |
3 | # Author Dan Armak <danarmak@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.10 2002/02/06 20:38:10 danarmak Exp $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.11 2002/02/07 18:52:18 danarmak Exp $ |
| 5 | # The base eclass defines some default functions and variables. Nearly everything |
5 | # The base eclass defines some default functions and variables. Nearly everything |
| 6 | # else inherits from here. |
6 | # else inherits from here. |
| 7 | inherit functions |
7 | inherit functions |
| 8 | ECLASS=base |
8 | ECLASS=base |
| 9 | |
9 | |
| … | |
… | |
| 46 | while [ "$1" ]; do |
46 | while [ "$1" ]; do |
| 47 | |
47 | |
| 48 | case $1 in |
48 | case $1 in |
| 49 | configure) |
49 | configure) |
| 50 | debug-print-section configure |
50 | debug-print-section configure |
| 51 | ./configure || die |
51 | ./configure || die "died running ./configure, $FUNCNAME:configure" |
| 52 | ;; |
52 | ;; |
| 53 | make) |
53 | make) |
| 54 | debug-print-section make |
54 | debug-print-section make |
| 55 | make || die |
55 | make || die "died running make, $FUNCNAME:make" |
| 56 | ;; |
56 | ;; |
| 57 | all) |
57 | all) |
| 58 | debug-print-section all |
58 | debug-print-section all |
| 59 | base_src_compile configure make |
59 | base_src_compile configure make |
| 60 | ;; |
60 | ;; |
| … | |
… | |
| 73 | while [ "$1" ]; do |
73 | while [ "$1" ]; do |
| 74 | |
74 | |
| 75 | case $1 in |
75 | case $1 in |
| 76 | make) |
76 | make) |
| 77 | debug-print-section make |
77 | debug-print-section make |
| 78 | make DESTDIR=${D} install || die |
78 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
| 79 | ;; |
79 | ;; |
| 80 | all) |
80 | all) |
| 81 | debug-prnit-section all |
81 | debug-print-section all |
| 82 | base_src_install make |
82 | base_src_install make |
| 83 | ;; |
83 | ;; |
| 84 | esac |
84 | esac |
| 85 | |
85 | |
| 86 | shift |
86 | shift |